config 1.0.0.beta2 → 1.0.0.beta3

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: c223832bc140b44528c8e747237b344d41a6b02f
4
- data.tar.gz: 595d884ddfcf46ef81196296699b2d03ccae00dc
3
+ metadata.gz: 62815028cad0d1e752dafcf621fbc10598cfc188
4
+ data.tar.gz: a8a78b7d497a4a19d407b2f6815b74c8ef537d6d
5
5
  SHA512:
6
- metadata.gz: 4a48b689b7cbe303c5e91ec49e9fd1b3ededb6df3f2c3e84a2919f309a09b1addf180e3448ac3fea11fce0943111451e5867f14d051bc50ae2cb31f4bdff0f5c
7
- data.tar.gz: 44b290eb644dc35d622d25f7d2bc21e071f720ed68f3a79871dc84c95062ef5472b27672ee9e251a02ca90d258b204de3107b039e2aee60d56d46f479f0f01c8
6
+ metadata.gz: 5ddf6d59023d28452ebcea5c0fdef7b881cffd8449938ffa6919626eb4330aa99eec3f333edc57da8c0803015bd26dde6f758f161bea2651433d83dedd0ec3dd
7
+ data.tar.gz: fd4373b1493bbbea9d4e6d9b1d8f04268fb0da233367ad6dfad0bf6a227a58df9d1162d37a8dc1db3f554c99d7fa61814319f89ce6100af35570ff257dba6ad6
@@ -1,5 +1,6 @@
1
1
  require 'active_support/core_ext/module/attribute_accessors'
2
2
 
3
+ require 'config/compatibility'
3
4
  require 'config/options'
4
5
  require 'config/version'
5
6
  require 'config/engine' if defined?(::Rails)
@@ -0,0 +1,3 @@
1
+ if defined?(RbConfig) && defined?(Config)
2
+ Object.send(:remove_const, :Config)
3
+ end
@@ -1,3 +1,3 @@
1
1
  module Config
2
- VERSION = '1.0.0.beta2'
2
+ VERSION = '1.0.0.beta3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: config
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta2
4
+ version: 1.0.0.beta3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacques Crocker
@@ -223,6 +223,7 @@ files:
223
223
  - gemfiles/rails_4.2.gemfile
224
224
  - gemfiles/rails_4.gemfile
225
225
  - lib/config.rb
226
+ - lib/config/compatibility.rb
226
227
  - lib/config/engine.rb
227
228
  - lib/config/integration/rails.rb
228
229
  - lib/config/integration/sinatra.rb