jt-rails-toolbox 1.0.7 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1aad00f1a59c6723ecddccb0d7e92e1d4c470cae
4
- data.tar.gz: 17fb5b34aad99c046d82de1fb24ae44ca522ae45
3
+ metadata.gz: 96b7468d694fc6e7ececa55ab84ee577ad853b7d
4
+ data.tar.gz: 54affc6b0c41fb8a1a78bc19133f84bba0957dee
5
5
  SHA512:
6
- metadata.gz: 0b6e000258bd1febaf959772d7d1ae323013e32c72da75446bb26f5aeddc219847a869e42109850558e2d1ed9cd5c8fe36bdd8f1d0e7fd9ad5984a0f621026a8
7
- data.tar.gz: 2418ca993b43875b97cf73eaee64da1ebefc23c42c623aba56e0889143e5412010a353acd9759d348ab1e446b93a987192938341a10643e946586c74175dcf6d
6
+ metadata.gz: 0e882bce065d999f003d278aea61d22e29136cbf4fe888bb6f7bfd82adf821f3d11fac07c52cf53a83dc55f2b6b5519d245424bbe5e1868eab58f7f27a10e1ef
7
+ data.tar.gz: d70c0e399f83f2fc8b576dafef27741a9bbc17333dc62f60b2a0714cfae04c621e91dbb32ed9216e2eb17943026a55e400b5b8f0695d6cac3948d9c2f207fc44
data/README.md CHANGED
@@ -26,6 +26,7 @@ Create a `jt-toolbox.yml` file:
26
26
  - [rails-i18n](https://github.com/svenfuchs/rails-i18n) Default locale data
27
27
  - [jt-rails-meta](https://github.com/jonathantribouharet/jt-rails-meta) Manage HTML meta tags
28
28
  - [jt-rails-generator-user](https://github.com/jonathantribouharet/jt-rails-generator-user) Generate a scaffold for user authentication
29
+ - [jt-rails-tokenizable](https://github.com/jonathantribouharet/jt-rails-tokenizable) Generate tokens for ActiveRecord models
29
30
  - simplified configuration of hostnames and `ActionMailer` with a YAML file
30
31
 
31
32
  ### Exception Notification
@@ -3,7 +3,7 @@ Gem::Specification.new do |s|
3
3
  s.summary = "Common libs used for Ruby On Rails development."
4
4
  s.description = "JTRailsToolbox contains a list of common libs used for Ruby On Rails development."
5
5
  s.homepage = 'https://github.com/jonathantribouharet/jt-rails-toolbox'
6
- s.version = '1.0.7'
6
+ s.version = '1.0.8'
7
7
  s.files = `git ls-files`.split("\n")
8
8
  s.require_paths = ['lib']
9
9
  s.authors = ['Jonathan TRIBOUHARET']
@@ -19,4 +19,5 @@ Gem::Specification.new do |s|
19
19
  s.add_dependency('rails-i18n', '~> 4.0')
20
20
  s.add_dependency('jt-rails-meta', '~> 1.0')
21
21
  s.add_dependency('jt-rails-generator-user', '~> 1.0')
22
+ s.add_dependency('jt-rails-tokenizable', '~> 1.0')
22
23
  end
@@ -4,6 +4,8 @@ require 'sidekiq'
4
4
  require 'validates_email_format_of'
5
5
  require 'rails_i18n'
6
6
  require 'jt-rails-meta'
7
+ require 'jt-rails-generator-user'
8
+ require 'jt-rails-tokenizable'
7
9
 
8
10
  if Rails.env.development?
9
11
  require 'quiet_assets'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jt-rails-toolbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan TRIBOUHARET
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-02 00:00:00.000000000 Z
11
+ date: 2015-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: exception_notification
@@ -122,6 +122,20 @@ dependencies:
122
122
  - - ~>
123
123
  - !ruby/object:Gem::Version
124
124
  version: '1.0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: jt-rails-tokenizable
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ~>
130
+ - !ruby/object:Gem::Version
131
+ version: '1.0'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ~>
137
+ - !ruby/object:Gem::Version
138
+ version: '1.0'
125
139
  description: JTRailsToolbox contains a list of common libs used for Ruby On Rails
126
140
  development.
127
141
  email: jonathan.tribouharet@gmail.com