jt-rails-toolbox 1.0.4 → 1.0.5
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/Gemfile +3 -0
- data/README.md +1 -0
- data/jt-rails-toolbox.gemspec +3 -2
- metadata +18 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc21f818f53c8553f3db45b5a3721a4ba71c0a49
|
4
|
+
data.tar.gz: f32bcb9bda2c8818ad77ca3e8cd9d0a4d7faca94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db25352d833c2571de049e03e11744a3bda2b6664f48ac6a9b163a9edc182d2836d2250b31702712a936b29b6dd5716e4cf4b40234dc1a9315fa241df86fba08
|
7
|
+
data.tar.gz: 50237c8607cc2bafce5bab29677571165b5ad18de59c2716317e687361caa83df1ace2919802644e254bcabff8ce5adae119e68d82f5ddb006c38f3f731ad506
|
data/Gemfile
ADDED
data/README.md
CHANGED
@@ -22,6 +22,7 @@ Create a `jt-toolbox.yml` file:
|
|
22
22
|
- [sidekiq](https://github.com/mperham/sidekiq), manage background jobs
|
23
23
|
- [validates_email_format_of](https://github.com/validates-email-format-of/validates_email_format_of), who doesn't need to validate email format?
|
24
24
|
- [rails-i18n](https://github.com/svenfuchs/rails-i18n) Default locale data
|
25
|
+
- [jt-rails-meta](https://github.com/jonathantribouharet/jt-rails-meta) Manage HTML meta tags
|
25
26
|
- simplified configuration of hostnames and `ActionMailer` with a YAML file
|
26
27
|
|
27
28
|
### Exception Notification
|
data/jt-rails-toolbox.gemspec
CHANGED
@@ -3,11 +3,11 @@ 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.5'
|
7
7
|
s.files = `git ls-files`.split("\n")
|
8
8
|
s.require_paths = ['lib']
|
9
9
|
s.authors = ['Jonathan TRIBOUHARET']
|
10
|
-
s.email = 'jonathan@
|
10
|
+
s.email = 'jonathan.tribouharet@gmail.com'
|
11
11
|
s.license = 'MIT'
|
12
12
|
s.platform = Gem::Platform::RUBY
|
13
13
|
|
@@ -17,4 +17,5 @@ Gem::Specification.new do |s|
|
|
17
17
|
s.add_dependency('sidekiq', '~> 3.3')
|
18
18
|
s.add_dependency('validates_email_format_of', '~> 1.6')
|
19
19
|
s.add_dependency('rails-i18n', '~> 4.0')
|
20
|
+
s.add_dependency('jt-rails-meta', '~> 1.0')
|
20
21
|
end
|
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.5
|
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-
|
11
|
+
date: 2015-07-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: exception_notification
|
@@ -94,14 +94,29 @@ dependencies:
|
|
94
94
|
- - ~>
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '4.0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: jt-rails-meta
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ~>
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '1.0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ~>
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '1.0'
|
97
111
|
description: JTRailsToolbox contains a list of common libs used for Ruby On Rails
|
98
112
|
development.
|
99
|
-
email: jonathan@
|
113
|
+
email: jonathan.tribouharet@gmail.com
|
100
114
|
executables: []
|
101
115
|
extensions: []
|
102
116
|
extra_rdoc_files: []
|
103
117
|
files:
|
104
118
|
- .gitignore
|
119
|
+
- Gemfile
|
105
120
|
- LICENSE
|
106
121
|
- README.md
|
107
122
|
- jt-rails-toolbox.gemspec
|