configurability 3.0.0.pre20161130162622 → 3.0.0.pre20161130173417

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/configurability.rb +6 -6
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ec7bd9ddc5f5378d2ae449b87206d9c3c2c957ef
4
- data.tar.gz: 1f9f7e27cb176bef33f426d0cb62fe1e99ad216f
3
+ metadata.gz: cdda9756d722c65fc10d9daef86b1a8b24b6f0b3
4
+ data.tar.gz: bbba39ce6a30c45b3bd8bd736486b65702337be3
5
5
  SHA512:
6
- metadata.gz: f0370cd0b0a9bf748f5d4fd5c358008723e130e6f4183c7a03fbafdf7be0e1f33610da76fc874c439f88eb32d21fbfbae347cdf72dfca98c2885c661c7af4884
7
- data.tar.gz: 2d5a72fe466eedbd356742ff970c076b93569b0a2c221bd92b6616f58feead5f4c81df2c4f2541493a6684ef55f6fb383120b4cbb6ea590b0c7578e9b807b020
6
+ metadata.gz: 265346355eecc8119e2f900e2f21aff8decd862987f967d33b4cbf2cedd4e60171728be8fd6017f5d0cf8de78680cfd48e1696a04b71c0b11b694bc99f696d10
7
+ data.tar.gz: cbc94bf49fad752417c23295a1c8df00d01158f510ae38527f32e9b3577aa32eadc741163969d6c77e8d1f24555ca388560231015ac6a19169e698c833945bb3
@@ -18,15 +18,15 @@ module Configurability
18
18
 
19
19
 
20
20
  # Library version constant
21
- VERSION = '2.99.0'
21
+ VERSION = '3.0.0'
22
22
 
23
23
  # Version-control revision constant
24
- REVISION = %q$Revision: 5c1ffea885e8 $
24
+ REVISION = %q$Revision: 09ad0e4eb93c $
25
25
 
26
26
  require 'configurability/deferredconfig'
27
27
 
28
28
  autoload :Config, 'configurability/config'
29
- autoload :DSL, 'configurability/dsl'
29
+ autoload :SettingInstaller, 'configurability/setting_installer'
30
30
 
31
31
 
32
32
  ### The objects that have had Configurability added to them
@@ -303,9 +303,9 @@ module Configurability
303
303
  self.config_key = config_key if config_key
304
304
 
305
305
  if block
306
- Configurability.log.debug "Applying config declaration block using DSL::Generator"
307
- generator = Configurability::DSL::Generator.new( self )
308
- generator.instance_eval( &block )
306
+ Configurability.log.debug "Applying config declaration block using a SettingInstaller"
307
+ installer = Configurability::SettingInstaller.new( self )
308
+ installer.instance_eval( &block )
309
309
  end
310
310
 
311
311
  if (( config = Configurability.loaded_config ))
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: configurability
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.pre20161130162622
4
+ version: 3.0.0.pre20161130173417
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Granger