jt-rails-toolbox 1.0.2 → 1.0.3

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: bf853a5dae0b56931568cf3b30f20f1542b39824
4
- data.tar.gz: 1b3e35ecbf62c859a328467cfdafb95dccee458f
3
+ metadata.gz: f7a38a4b48aa7a0ebeae62e39ea779e4dd3185f6
4
+ data.tar.gz: 07e71be0bc4275e67343c5ac37e4adb31ce5a26e
5
5
  SHA512:
6
- metadata.gz: 0793205d4cb7b7654acbe22e6bf9fad178584473f66c39d05215ec5c65c5d54637a5920bb3567d8cc26ba466d292ae283ffa87c073a0341621b8abd797659768
7
- data.tar.gz: c666298f9c8db39a97c6e6e1e3c2c18387a426615cc9ae9323bc454753be61a0e0da968d76de58d2d37c3516bd21c7ff04404f0aadc74d787e8b65bf8c04471e
6
+ metadata.gz: be1fa5274efd9d1f364dd0a985850a861fac60eba9453ac0f53f43ac58cd36db2e0d3cfb661aa019193cf330c1baae2bf1c11eb18acb552c797279484f8a7d38
7
+ data.tar.gz: c7247c272ba29899e8ec6ac627f97b8858b53131d181ed810c03b26b02a8c20c5a31c2e0ad2a16a9703c090910f16a897764e05b85a4d914bb42694b8c6864df
@@ -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.2'
6
+ s.version = '1.0.3'
7
7
  s.files = `git ls-files`.split("\n")
8
8
  s.require_paths = ['lib']
9
9
  s.authors = ['Jonathan TRIBOUHARET']
@@ -4,6 +4,10 @@ require 'sidekiq'
4
4
  require 'validates_email_format_of'
5
5
  require 'rails_i18n'
6
6
 
7
+ if Rails.env.development?
8
+ require 'quiet_assets'
9
+ end
10
+
7
11
  require 'exception_notification/rails'
8
12
  require 'exception_notification/sidekiq'
9
13
 
@@ -17,10 +21,6 @@ module JTRailsToolbox
17
21
  if ::File.exists?('config/jt-toolbox.yml')
18
22
  load_params(app)
19
23
 
20
- if Rails.env.development?
21
- require 'quiet_assets'
22
- end
23
-
24
24
  configure_exception_notification(app)
25
25
  configure_mail(app)
26
26
  configure_paperclip(app)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jt-rails-toolbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan TRIBOUHARET