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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1628433b9b578d3a9f432d5b5e5575069fc95905
4
- data.tar.gz: 535cec5b53e13f807f534c5485d4dc1bc3709959
3
+ metadata.gz: bf853a5dae0b56931568cf3b30f20f1542b39824
4
+ data.tar.gz: 1b3e35ecbf62c859a328467cfdafb95dccee458f
5
5
  SHA512:
6
- metadata.gz: ddfa66a2f4922ccf2f49d09531e9166a12ebd42ca733bbcbcf88d11a72d8c8a3fcb7259aa371e8814a9478b6a16bdf396c30c4741979636b4b76ac290743e430
7
- data.tar.gz: 94895a5d6a9b5a3e47d91b93b9caafa8d3da0ade20bb85665b9663f176553e93436a1e3819a530c1b99442d9aa63dd092b3d94cc98408dc47a37558f5a4b60dc
6
+ metadata.gz: 0793205d4cb7b7654acbe22e6bf9fad178584473f66c39d05215ec5c65c5d54637a5920bb3567d8cc26ba466d292ae283ffa87c073a0341621b8abd797659768
7
+ data.tar.gz: c666298f9c8db39a97c6e6e1e3c2c18387a426615cc9ae9323bc454753be61a0e0da968d76de58d2d37c3516bd21c7ff04404f0aadc74d787e8b65bf8c04471e
data/README.md CHANGED
@@ -1,14 +1,14 @@
1
- # JTRailsToolboox
1
+ # JTRailsToolbox
2
2
 
3
- JTRailsToolboox contains a list of common libs used for Ruby On Rails development.
3
+ JTRailsToolbox contains a list of common libs used for Ruby On Rails development.
4
4
 
5
5
  ## Installation
6
6
 
7
- JTRailsToolboox is distributed as a gem, which is how it should be used in your app.
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-toolboox', '~> 1.0'
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
- - simplified configuration of hostnames and `ActionMailer` with YAML
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
- JTRailsToolboox is released under the MIT license. See the LICENSE file for more info.
71
+ JTRailsToolbox is released under the MIT license. See the LICENSE file for more info.
@@ -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 = "JTRailsToolboox contains a list of common libs used for Ruby On Rails development."
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.1'
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
@@ -2,6 +2,7 @@ require 'exception_notification'
2
2
  require 'paperclip'
3
3
  require 'sidekiq'
4
4
  require 'validates_email_format_of'
5
+ require 'rails_i18n'
5
6
 
6
7
  require 'exception_notification/rails'
7
8
  require 'exception_notification/sidekiq'
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.1
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-05-30 00:00:00.000000000 Z
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
- description: JTRailsToolboox contains a list of common libs used for Ruby On Rails
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: []