jt-rails-toolbox 1.0.1 → 1.0.2
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 +7 -6
- data/jt-rails-toolbox.gemspec +3 -2
- data/lib/jt-rails-toolbox.rb +1 -0
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf853a5dae0b56931568cf3b30f20f1542b39824
|
4
|
+
data.tar.gz: 1b3e35ecbf62c859a328467cfdafb95dccee458f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0793205d4cb7b7654acbe22e6bf9fad178584473f66c39d05215ec5c65c5d54637a5920bb3567d8cc26ba466d292ae283ffa87c073a0341621b8abd797659768
|
7
|
+
data.tar.gz: c666298f9c8db39a97c6e6e1e3c2c18387a426615cc9ae9323bc454753be61a0e0da968d76de58d2d37c3516bd21c7ff04404f0aadc74d787e8b65bf8c04471e
|
data/README.md
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
#
|
1
|
+
# JTRailsToolbox
|
2
2
|
|
3
|
-
|
3
|
+
JTRailsToolbox contains a list of common libs used for Ruby On Rails development.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
|
-
|
7
|
+
JTRailsToolbox is distributed as a gem, which is how it should be used in your app.
|
8
8
|
|
9
9
|
Include the gem in your Gemfile:
|
10
10
|
|
11
|
-
gem 'jt-rails-
|
11
|
+
gem 'jt-rails-toolbox', '~> 1.0'
|
12
12
|
|
13
13
|
Create a `jt-toolbox.yml` file:
|
14
14
|
|
@@ -21,7 +21,8 @@ Create a `jt-toolbox.yml` file:
|
|
21
21
|
- [quiet_assets](https://github.com/evrone/quiet_assets), silence assets in log
|
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
|
+
- simplified configuration of hostnames and `ActionMailer` with a YAML file
|
25
26
|
|
26
27
|
### Exception Notification
|
27
28
|
|
@@ -67,4 +68,4 @@ ActionMailer can be configured easily just with `jt-toolbox.yml` file.
|
|
67
68
|
|
68
69
|
## License
|
69
70
|
|
70
|
-
|
71
|
+
JTRailsToolbox is released under the MIT license. See the LICENSE file for more info.
|
data/jt-rails-toolbox.gemspec
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'jt-rails-toolbox'
|
3
3
|
s.summary = "Common libs used for Ruby On Rails development."
|
4
|
-
s.description = "
|
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.2'
|
7
7
|
s.files = `git ls-files`.split("\n")
|
8
8
|
s.require_paths = ['lib']
|
9
9
|
s.authors = ['Jonathan TRIBOUHARET']
|
@@ -16,4 +16,5 @@ Gem::Specification.new do |s|
|
|
16
16
|
s.add_dependency('quiet_assets', '~> 1.1')
|
17
17
|
s.add_dependency('sidekiq', '~> 3.3')
|
18
18
|
s.add_dependency('validates_email_format_of', '~> 1.6')
|
19
|
+
s.add_dependency('rails-i18n', '~> 4.0')
|
19
20
|
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.2
|
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-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: exception_notification
|
@@ -80,7 +80,21 @@ dependencies:
|
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '1.6'
|
83
|
-
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rails-i18n
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '4.0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '4.0'
|
97
|
+
description: JTRailsToolbox contains a list of common libs used for Ruby On Rails
|
84
98
|
development.
|
85
99
|
email: jonathan@siu-soon.com
|
86
100
|
executables: []
|