rails_config 0.1.7 → 0.1.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.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_config (0.1.7)
4
+ rails_config (0.1.8)
5
5
  activesupport (~> 3.0)
6
6
 
7
7
  GEM
@@ -9,7 +9,7 @@ if defined?(Rails::Railtie)
9
9
  end
10
10
 
11
11
  # Parse the settings before any of the initializers
12
- ActiveSupport.on_load :before_initialize, :yield => true do
12
+ ActiveSupport.on_load :before_configuration, :yield => true do
13
13
  RailsConfig.load_and_set_settings(
14
14
  Rails.root.join("config", "settings.yml").to_s,
15
15
  Rails.root.join("config", "settings", "#{Rails.env}.yml").to_s,
data/rails_config.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "rails_config"
3
- s.version = "0.1.7"
3
+ s.version = "0.1.8"
4
4
 
5
5
  s.authors = ["Jacques Crocker", "Fred Wu"]
6
6
  s.summary = "Provides a Settings helper for rails3 that reads from config/settings.yml"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_config
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 11
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 7
10
- version: 0.1.7
9
+ - 8
10
+ version: 0.1.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jacques Crocker