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 +4 -4
- data/README.md +1 -0
- data/jt-rails-toolbox.gemspec +2 -1
- data/lib/jt-rails-toolbox.rb +2 -0
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96b7468d694fc6e7ececa55ab84ee577ad853b7d
|
4
|
+
data.tar.gz: 54affc6b0c41fb8a1a78bc19133f84bba0957dee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/jt-rails-toolbox.gemspec
CHANGED
@@ -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.
|
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
|
data/lib/jt-rails-toolbox.rb
CHANGED
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.
|
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-
|
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
|