mguymon_settingslogic 2.0.9.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8b8fe942e032ab80678d28168b22b979615161ee
4
+ data.tar.gz: 7bd27358c7f944a54e26bedcbd5fe61d145c8943
5
+ SHA512:
6
+ metadata.gz: a89e3afd0af6d2980f34fa881f38bba0ef04df0bb6c2b5ccb42e011950d111375d0e719788a2b003a5f951bfc92c3d5ce18547a8b2c14ddb4b1b0e4491877984
7
+ data.tar.gz: a88c485795a8aef64eb4bb23b5d45b05ceed83bede1056ec472318b4888a439c5f37dba4a4abb9736cc6a6f2339bc03409636a2d08e9db1f8a5397f2efb11141
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ .DS_Store
2
+ *.log
3
+ *.sqlite3
4
+ pkg/*
5
+ coverage/*
6
+ doc/*
7
+ benchmarks/*
8
+ .bundle
9
+ vendor/bundle
10
+ .rvmrc
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source :rubygems
2
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,26 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ settingslogic (2.0.9)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.1.3)
10
+ rake (10.0.3)
11
+ rspec (2.12.0)
12
+ rspec-core (~> 2.12.0)
13
+ rspec-expectations (~> 2.12.0)
14
+ rspec-mocks (~> 2.12.0)
15
+ rspec-core (2.12.2)
16
+ rspec-expectations (2.12.1)
17
+ diff-lcs (~> 1.1.3)
18
+ rspec-mocks (2.12.1)
19
+
20
+ PLATFORMS
21
+ ruby
22
+
23
+ DEPENDENCIES
24
+ rake
25
+ rspec
26
+ settingslogic!
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008 Ben Johnson of Binary Logic (binarylogic.com)
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,157 @@
1
+ = Settingslogic
2
+
3
+ Settingslogic is a simple configuration / settings solution that uses an ERB enabled YAML file. It has been great for
4
+ our apps, maybe you will enjoy it too. Settingslogic works with Rails, Sinatra, or any Ruby project.
5
+
6
+ == Helpful links
7
+
8
+ * <b>Documentation:</b> http://rdoc.info/projects/binarylogic/settingslogic
9
+ * <b>Repository:</b> http://github.com/binarylogic/settingslogic/tree/master
10
+ * <b>Issues:</b> http://github.com/binarylogic/settingslogic/issues
11
+
12
+ == Installation
13
+
14
+ gem install settingslogic
15
+
16
+ == Usage
17
+
18
+ === 1. Define your class
19
+
20
+ Instead of defining a Settings constant for you, that task is left to you. Simply create a class in your application
21
+ that looks like:
22
+
23
+ class Settings < Settingslogic
24
+ source "#{Rails.root}/config/application.yml"
25
+ namespace Rails.env
26
+ end
27
+
28
+ Name it Settings, name it Config, name it whatever you want. Add as many or as few as you like. A good place to put
29
+ this file in a rails app is app/models/settings.rb
30
+
31
+ I felt adding a settings file in your app was more straightforward, less tricky, and more flexible.
32
+
33
+ === 2. Create your settings
34
+
35
+ Notice above we specified an absolute path to our settings file called "application.yml". This is just a typical YAML file.
36
+ Also notice above that we specified a namespace for our environment. A namespace is just an optional string that corresponds
37
+ to a key in the YAML file.
38
+
39
+ Using a namespace allows us to change our configuration depending on our environment:
40
+
41
+ # config/application.yml
42
+ defaults: &defaults
43
+ cool:
44
+ saweet: nested settings
45
+ neat_setting: 24
46
+ awesome_setting: <%= "Did you know 5 + 5 = #{5 + 5}?" %>
47
+
48
+ development:
49
+ <<: *defaults
50
+ neat_setting: 800
51
+
52
+ test:
53
+ <<: *defaults
54
+
55
+ production:
56
+ <<: *defaults
57
+
58
+ _Note_: Certain Ruby/Bundler versions include a version of the Psych YAML parser which incorrectly handles merges (the `<<` in the example above.)
59
+ If your default settings seem to be overwriting your environment-specific settings, including the following lines in your config/boot.rb file may solve the problem:
60
+
61
+ require 'yaml'
62
+ YAML::ENGINE.yamler= 'syck'
63
+
64
+ === 3. Access your settings
65
+
66
+ >> Rails.env
67
+ => "development"
68
+
69
+ >> Settings.cool
70
+ => "#<Settingslogic::Settings ... >"
71
+
72
+ >> Settings.cool.saweet
73
+ => "nested settings"
74
+
75
+ >> Settings.neat_setting
76
+ => 800
77
+
78
+ >> Settings.awesome_setting
79
+ => "Did you know 5 + 5 = 10?"
80
+
81
+ You can use these settings anywhere, for example in a model:
82
+
83
+ class Post < ActiveRecord::Base
84
+ self.per_page = Settings.pagination.posts_per_page
85
+ end
86
+
87
+ === 4. Optional / dynamic settings
88
+
89
+ Often, you will want to handle defaults in your application logic itself, to reduce the number of settings
90
+ you need to put in your YAML file. You can access an optional setting by using Hash notation:
91
+
92
+ >> Settings.messaging.queue_name
93
+ => Exception: Missing setting 'queue_name' in 'message' section in 'application.yml'
94
+
95
+ >> Settings.messaging['queue_name']
96
+ => nil
97
+
98
+ >> Settings.messaging['queue_name'] ||= 'user_mail'
99
+ => "user_mail"
100
+
101
+ >> Settings.messaging.queue_name
102
+ => "user_mail"
103
+
104
+ Modifying our model example:
105
+
106
+ class Post < ActiveRecord::Base
107
+ self.per_page = Settings.posts['per_page'] || Settings.pagination.per_page
108
+ end
109
+
110
+ This would allow you to specify a custom value for per_page just for posts, or
111
+ to fall back to your default value if not specified.
112
+
113
+ === 5. Suppressing Exceptions Conditionally
114
+
115
+ Raising exceptions for missing settings helps highlight configuration problems. However, in a
116
+ Rails app it may make sense to suppress this in production and return nil for missing settings.
117
+ While it's useful to stop and highlight an error in development or test environments, this is
118
+ often not the right answer for production.
119
+
120
+ class Settings < Settingslogic
121
+ source "#{Rails.root}/config/application.yml"
122
+ namespace Rails.env
123
+ suppress_errors Rails.env.production?
124
+ end
125
+
126
+ >> Settings.non_existent_key
127
+ => nil
128
+
129
+ == Note on Sinatra / Capistrano / Vlad
130
+
131
+ Each of these frameworks uses a +set+ convention for settings, which actually defines methods
132
+ in the global Object namespace:
133
+
134
+ set :application, "myapp" # does "def application" globally
135
+
136
+ This can cause collisions with Settingslogic, since those methods are global. Luckily, the
137
+ solution is to just add a call to load! in your class:
138
+
139
+ class Settings < Settingslogic
140
+ source "#{Rails.root}/config/application.yml"
141
+ namespace Rails.env
142
+ load!
143
+ end
144
+
145
+ It's probably always safest to add load! to your class, since this guarantees settings will be
146
+ loaded at that time, rather than lazily later via method_missing.
147
+
148
+ Finally, you can reload all your settings later as well:
149
+
150
+ Settings.reload!
151
+
152
+ This is useful if you want to support changing your settings YAML without restarting your app.
153
+
154
+ == Author
155
+
156
+ Copyright (c) 2008-2010 {Ben Johnson}[http://github.com/binarylogic] of {Binary Logic}[http://www.binarylogic.com],
157
+ released under the MIT license. Support for optional settings and reloading by {Nate Wiger}[http://nate.wiger.org].
data/Rakefile ADDED
@@ -0,0 +1,7 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
3
+
4
+ require 'rspec/core/rake_task'
5
+ RSpec::Core::RakeTask.new
6
+
7
+ task :default => :spec
@@ -0,0 +1,198 @@
1
+ require "yaml"
2
+ require "erb"
3
+ require 'open-uri'
4
+
5
+ # A simple settings solution using a YAML file. See README for more information.
6
+ class Settingslogic < Hash
7
+ class MissingSetting < StandardError; end
8
+
9
+ class << self
10
+ def name # :nodoc:
11
+ self.superclass != Hash && instance.key?("name") ? instance.name : super
12
+ end
13
+
14
+ # Enables Settings.get('nested.key.name') for dynamic access
15
+ def get(key)
16
+ parts = key.split('.')
17
+ curs = self
18
+ while p = parts.shift
19
+ curs = curs.send(p)
20
+ end
21
+ curs
22
+ end
23
+
24
+ def source(value = nil)
25
+ @source ||= value
26
+ end
27
+
28
+ def namespace(value = nil)
29
+ @namespace ||= value
30
+ end
31
+
32
+ def suppress_errors(value = nil)
33
+ @suppress_errors ||= value
34
+ end
35
+
36
+ def [](key)
37
+ instance.fetch(key.to_s, nil)
38
+ end
39
+
40
+ def []=(key, val)
41
+ # Setting[:key][:key2] = 'value' for dynamic settings
42
+ val = new(val, source) if val.is_a? Hash
43
+ instance.store(key.to_s, val)
44
+ instance.create_accessor_for(key, val)
45
+ end
46
+
47
+ def load!
48
+ instance
49
+ true
50
+ end
51
+
52
+ def reload!
53
+ @instance = nil
54
+ load!
55
+ end
56
+
57
+ def after_load( &blk )
58
+ @after_load = blk
59
+ end
60
+
61
+ private
62
+ def instance
63
+ return @instance if @instance
64
+ @instance = new
65
+ create_accessors!
66
+ if @after_load
67
+ @after_load.call
68
+ end
69
+ @instance
70
+ end
71
+
72
+ def method_missing(name, *args, &block)
73
+ instance.send(name, *args, &block)
74
+ end
75
+
76
+ # It would be great to DRY this up somehow, someday, but it's difficult because
77
+ # of the singleton pattern. Basically this proxies Setting.foo to Setting.instance.foo
78
+ def create_accessors!
79
+ instance.each do |key,val|
80
+ create_accessor_for(key)
81
+ end
82
+ end
83
+
84
+ def create_accessor_for(key)
85
+ return unless key.to_s =~ /^\w+$/ # could have "some-setting:" which blows up eval
86
+ instance_eval "def #{key}; instance.send(:#{key}); end"
87
+ end
88
+
89
+ end
90
+
91
+ # Initializes a new settings object. You can initialize an object in any of the following ways:
92
+ #
93
+ # Settings.new(:application) # will look for config/application.yml
94
+ # Settings.new("application.yaml") # will look for application.yaml
95
+ # Settings.new("/var/configs/application.yml") # will look for /var/configs/application.yml
96
+ # Settings.new(:config1 => 1, :config2 => 2)
97
+ #
98
+ # Basically if you pass a symbol it will look for that file in the configs directory of your rails app,
99
+ # if you are using this in rails. If you pass a string it should be an absolute path to your settings file.
100
+ # Then you can pass a hash, and it just allows you to access the hash via methods.
101
+ def initialize(hash_or_file = self.class.source, section = nil)
102
+ #puts "new! #{hash_or_file}"
103
+ case hash_or_file
104
+ when nil
105
+ raise Errno::ENOENT, "No file specified as Settingslogic source"
106
+ when Hash
107
+ self.replace hash_or_file
108
+ else
109
+ file_contents = open(hash_or_file).read
110
+ hash = file_contents.empty? ? {} : YAML.load(ERB.new(file_contents).result).to_hash
111
+ if self.class.namespace
112
+ hash = hash[self.class.namespace] or return missing_key("Missing setting '#{self.class.namespace}' in #{hash_or_file}")
113
+ end
114
+ self.replace hash
115
+ end
116
+ @section = section || self.class.source # so end of error says "in application.yml"
117
+ create_accessors!
118
+ end
119
+
120
+ # Called for dynamically-defined keys, and also the first key deferenced at the top-level, if load! is not used.
121
+ # Otherwise, create_accessors! (called by new) will have created actual methods for each key.
122
+ def method_missing(name, *args, &block)
123
+ key = name.to_s
124
+ return missing_key("Missing setting '#{key}' in #{@section}") unless has_key? key
125
+ value = fetch(key)
126
+ create_accessor_for(key)
127
+ value.is_a?(Hash) ? self.class.new(value, "'#{key}' section in #{@section}") : value
128
+ end
129
+
130
+ def [](key)
131
+ fetch(key.to_s, nil)
132
+ end
133
+
134
+ def []=(key,val)
135
+ # Setting[:key][:key2] = 'value' for dynamic settings
136
+ val = self.class.new(val, @section) if val.is_a? Hash
137
+ store(key.to_s, val)
138
+ create_accessor_for(key, val)
139
+ end
140
+
141
+ # Returns an instance of a Hash object
142
+ def to_hash
143
+ Hash[self]
144
+ end
145
+
146
+ # This handles naming collisions with Sinatra/Vlad/Capistrano. Since these use a set()
147
+ # helper that defines methods in Object, ANY method_missing ANYWHERE picks up the Vlad/Sinatra
148
+ # settings! So settings.deploy_to title actually calls Object.deploy_to (from set :deploy_to, "host"),
149
+ # rather than the app_yml['deploy_to'] hash. Jeezus.
150
+ def create_accessors!
151
+ self.each do |key,val|
152
+ create_accessor_for(key)
153
+ end
154
+ end
155
+
156
+ # Use instance_eval/class_eval because they're actually more efficient than define_method{}
157
+ # http://stackoverflow.com/questions/185947/ruby-definemethod-vs-def
158
+ # http://bmorearty.wordpress.com/2009/01/09/fun-with-rubys-instance_eval-and-class_eval/
159
+ def create_accessor_for(key, val=nil)
160
+ return unless key.to_s =~ /^\w+$/ # could have "some-setting:" which blows up eval
161
+ instance_variable_set("@#{key}", val)
162
+ self.class.class_eval <<-EndEval
163
+ def #{key}
164
+ return @#{key} if @#{key}
165
+ return missing_key("Missing setting '#{key}' in #{@section}") unless has_key? '#{key}'
166
+ value = fetch('#{key}')
167
+ @#{key} = if value.is_a?(Hash)
168
+ self.class.new(value, "'#{key}' section in #{@section}")
169
+ elsif value.is_a?(Array) && value.all?{|v| v.is_a? Hash}
170
+ value.map{|v| self.class.new(v)}
171
+ else
172
+ value
173
+ end
174
+ end
175
+ EndEval
176
+ end
177
+
178
+ def symbolize_keys
179
+
180
+ inject({}) do |memo, tuple|
181
+
182
+ k = (tuple.first.to_sym rescue tuple.first) || tuple.first
183
+
184
+ v = k.is_a?(Symbol) ? send(k) : tuple.last # make sure the value is accessed the same way Settings.foo.bar works
185
+
186
+ memo[k] = v && v.respond_to?(:symbolize_keys) ? v.symbolize_keys : v #recurse for nested hashes
187
+
188
+ memo
189
+ end
190
+
191
+ end
192
+
193
+ def missing_key(msg)
194
+ return nil if self.class.suppress_errors
195
+
196
+ raise MissingSetting, msg
197
+ end
198
+ end
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = "mguymon_settingslogic"
6
+ s.version = "2.0.9.1"
7
+ s.platform = Gem::Platform::RUBY
8
+ s.authors = ["Ben Johnson"]
9
+ s.email = ["bjohnson@binarylogic.com"]
10
+ s.homepage = "https://github.com/mguymon/settingslogic"
11
+ s.summary = %q{A simple and straightforward settings solution that uses an ERB enabled YAML file and a singleton design pattern.}
12
+ s.description = %q{A simple and straightforward settings solution that uses an ERB enabled YAML file and a singleton design pattern.}
13
+
14
+ s.add_development_dependency 'rake'
15
+ s.add_development_dependency 'rspec'
16
+
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+ end
data/spec/settings.rb ADDED
@@ -0,0 +1,6 @@
1
+ class Settings < Settingslogic
2
+ source "#{File.dirname(__FILE__)}/settings.yml"
3
+ end
4
+
5
+ class SettingsInst < Settingslogic
6
+ end
data/spec/settings.yml ADDED
@@ -0,0 +1,28 @@
1
+ setting1:
2
+ setting1_child: saweet
3
+ deep:
4
+ another: my value
5
+ child:
6
+ value: 2
7
+
8
+ setting2: 5
9
+ setting3: <%= 5 * 5 %>
10
+ name: test
11
+
12
+ language:
13
+ haskell:
14
+ paradigm: functional
15
+ smalltalk:
16
+ paradigm: object oriented
17
+
18
+ collides:
19
+ does: not
20
+ nested:
21
+ collides:
22
+ does: not either
23
+
24
+ array:
25
+ -
26
+ name: first
27
+ -
28
+ name: second
data/spec/settings2.rb ADDED
@@ -0,0 +1,4 @@
1
+ class Settings2 < Settingslogic
2
+ source "#{File.dirname(__FILE__)}/settings.yml"
3
+ namespace "setting1"
4
+ end
data/spec/settings3.rb ADDED
@@ -0,0 +1,4 @@
1
+ class Settings3 < Settingslogic
2
+ source "#{File.dirname(__FILE__)}/settings.yml"
3
+ load! # test of load
4
+ end
data/spec/settings4.rb ADDED
@@ -0,0 +1,4 @@
1
+ class Settings4 < Settingslogic
2
+ source "#{File.dirname(__FILE__)}/settings.yml"
3
+ suppress_errors true
4
+ end
data/spec/settings5.rb ADDED
@@ -0,0 +1,6 @@
1
+ class Settings5 < Settingslogic
2
+ source "#{File.dirname(__FILE__)}/settings.yml"
3
+ after_load {
4
+ setting1['setting1_child'] = 'supa saweet'
5
+ }
6
+ end
@@ -0,0 +1,3 @@
1
+ class SettingsEmpty < Settingslogic
2
+ source "#{File.dirname(__FILE__)}/settings_empty.yml"
3
+ end
File without changes
@@ -0,0 +1,211 @@
1
+ require File.expand_path(File.dirname(__FILE__) + "/spec_helper")
2
+
3
+ describe "Settingslogic" do
4
+ it "should access settings" do
5
+ Settings.setting2.should == 5
6
+ end
7
+
8
+ it "should access nested settings" do
9
+ Settings.setting1.setting1_child.should == "saweet"
10
+ end
11
+
12
+ it "should access settings in nested arrays" do
13
+ Settings.array.first.name.should == "first"
14
+ end
15
+
16
+ it "should access deep nested settings" do
17
+ Settings.setting1.deep.another.should == "my value"
18
+ end
19
+
20
+ it "should access extra deep nested settings" do
21
+ Settings.setting1.deep.child.value.should == 2
22
+ end
23
+
24
+ it "should enable erb" do
25
+ Settings.setting3.should == 25
26
+ end
27
+
28
+ it "should namespace settings" do
29
+ Settings2.setting1_child.should == "saweet"
30
+ Settings2.deep.another.should == "my value"
31
+ end
32
+
33
+ it "should return the namespace" do
34
+ Settings.namespace.should be_nil
35
+ Settings2.namespace.should == 'setting1'
36
+ end
37
+
38
+ it "should distinguish nested keys" do
39
+ Settings.language.haskell.paradigm.should == 'functional'
40
+ Settings.language.smalltalk.paradigm.should == 'object oriented'
41
+ end
42
+
43
+ it "should not collide with global methods" do
44
+ Settings3.nested.collides.does.should == 'not either'
45
+ Settings3[:nested] = 'fooey'
46
+ Settings3[:nested].should == 'fooey'
47
+ Settings3.nested.should == 'fooey'
48
+ Settings3.collides.does.should == 'not'
49
+ end
50
+
51
+ it "should raise a helpful error message" do
52
+ e = nil
53
+ begin
54
+ Settings.missing
55
+ rescue => e
56
+ e.should be_kind_of Settingslogic::MissingSetting
57
+ end
58
+ e.should_not be_nil
59
+ e.message.should =~ /Missing setting 'missing' in/
60
+
61
+ e = nil
62
+ begin
63
+ Settings.language.missing
64
+ rescue => e
65
+ e.should be_kind_of Settingslogic::MissingSetting
66
+ end
67
+ e.should_not be_nil
68
+ e.message.should =~ /Missing setting 'missing' in 'language' section/
69
+ end
70
+
71
+ it "should handle optional / dynamic settings" do
72
+ e = nil
73
+ begin
74
+ Settings.language.erlang
75
+ rescue => e
76
+ e.should be_kind_of Settingslogic::MissingSetting
77
+ end
78
+ e.should_not be_nil
79
+ e.message.should =~ /Missing setting 'erlang' in 'language' section/
80
+
81
+ Settings.language['erlang'].should be_nil
82
+ Settings.language['erlang'] = 5
83
+ Settings.language['erlang'].should == 5
84
+
85
+ Settings.language['erlang'] = {'paradigm' => 'functional'}
86
+ Settings.language.erlang.paradigm.should == 'functional'
87
+ Settings.respond_to?('erlang').should be_false
88
+
89
+ Settings.reload!
90
+ Settings.language['erlang'].should be_nil
91
+
92
+ Settings.language[:erlang] ||= 5
93
+ Settings.language[:erlang].should == 5
94
+
95
+ Settings.language[:erlang] = {}
96
+ Settings.language[:erlang][:paradigm] = 'functional'
97
+ Settings.language.erlang.paradigm.should == 'functional'
98
+
99
+ Settings[:toplevel] = '42'
100
+ Settings.toplevel.should == '42'
101
+ end
102
+
103
+ it "should raise an error on a nil source argument" do
104
+ class NoSource < Settingslogic; end
105
+ e = nil
106
+ begin
107
+ NoSource.foo.bar
108
+ rescue => e
109
+ e.should be_kind_of Errno::ENOENT
110
+ end
111
+ e.should_not be_nil
112
+ end
113
+
114
+ it "should allow suppressing errors" do
115
+ Settings4.non_existent_key.should be_nil
116
+ end
117
+
118
+ # This one edge case currently does not pass, because it requires very
119
+ # esoteric code in order to make it pass. It was judged not worth fixing,
120
+ # as it introduces significant complexity for minor gain.
121
+ # it "should handle reloading top-level settings"
122
+ # Settings[:inspect] = 'yeah baby'
123
+ # Settings.inspect.should == 'yeah baby'
124
+ # Settings.reload!
125
+ # Settings.inspect.should == 'Settings'
126
+ # end
127
+
128
+ it "should handle oddly-named settings" do
129
+ Settings.language['some-dash-setting#'] = 'dashtastic'
130
+ Settings.language['some-dash-setting#'].should == 'dashtastic'
131
+ end
132
+
133
+ it "should handle settings with nil value" do
134
+ Settings["flag"] = true
135
+ Settings["flag"] = nil
136
+ Settings.flag.should == nil
137
+ end
138
+
139
+ it "should handle settings with false value" do
140
+ Settings["flag"] = true
141
+ Settings["flag"] = false
142
+ Settings.flag.should == false
143
+ end
144
+
145
+ it "should support instance usage as well" do
146
+ settings = SettingsInst.new(Settings.source)
147
+ settings.setting1.setting1_child.should == "saweet"
148
+ end
149
+
150
+ it "should be able to get() a key with dot.notation" do
151
+ Settings.get('setting1.setting1_child').should == "saweet"
152
+ Settings.get('setting1.deep.another').should == "my value"
153
+ Settings.get('setting1.deep.child.value').should == 2
154
+ end
155
+
156
+ # If .name is not a property, delegate to superclass
157
+ it "should respond with Module.name" do
158
+ Settings2.name.should == "Settings2"
159
+ end
160
+
161
+ # If .name is called on Settingslogic itself, handle appropriately
162
+ # by delegating to Hash
163
+ it "should have the parent class always respond with Module.name" do
164
+ Settingslogic.name.should == 'Settingslogic'
165
+ end
166
+
167
+ # If .name is a property, respond with that instead of delegating to superclass
168
+ it "should allow a name setting to be overriden" do
169
+ Settings.name.should == 'test'
170
+ end
171
+
172
+ it "should allow symbolize_keys" do
173
+ Settings.reload!
174
+ result = Settings.language.haskell.symbolize_keys
175
+ result.class.should == Hash
176
+ result.should == {:paradigm => "functional"}
177
+ end
178
+
179
+ it "should allow symbolize_keys on nested hashes" do
180
+ Settings.reload!
181
+ result = Settings.language.symbolize_keys
182
+ result.class.should == Hash
183
+ result.should == {
184
+ :haskell => {:paradigm => "functional"},
185
+ :smalltalk => {:paradigm => "object oriented"}
186
+ }
187
+ end
188
+
189
+ it "should handle empty file" do
190
+ SettingsEmpty.keys.should eql([])
191
+ end
192
+
193
+ # Put this test last or else call to .instance will load @instance,
194
+ # masking bugs.
195
+ it "should be a hash" do
196
+ Settings.send(:instance).should be_is_a(Hash)
197
+ end
198
+
199
+ describe "#to_hash" do
200
+ it "should return a new instance of a Hash object" do
201
+ Settings.to_hash.should be_kind_of(Hash)
202
+ Settings.to_hash.class.name.should == "Hash"
203
+ Settings.to_hash.object_id.should_not == Settings.object_id
204
+ end
205
+ end
206
+
207
+ it 'should handle after_load' do
208
+ Settings5.setting1.setting1_child.should eql 'supa saweet'
209
+ end
210
+
211
+ end
@@ -0,0 +1,18 @@
1
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
2
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
3
+ require 'rspec'
4
+ require 'settingslogic'
5
+ require 'settings'
6
+ require 'settings2'
7
+ require 'settings3'
8
+ require 'settings4'
9
+ require 'settings5'
10
+ require 'settings_empty'
11
+
12
+ # Needed to test Settings3
13
+ Object.send :define_method, 'collides' do
14
+ 'collision'
15
+ end
16
+
17
+ RSpec.configure do |config|
18
+ end
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mguymon_settingslogic
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.0.9.1
5
+ platform: ruby
6
+ authors:
7
+ - Ben Johnson
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-05-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: A simple and straightforward settings solution that uses an ERB enabled
42
+ YAML file and a singleton design pattern.
43
+ email:
44
+ - bjohnson@binarylogic.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - Gemfile
51
+ - Gemfile.lock
52
+ - LICENSE
53
+ - README.rdoc
54
+ - Rakefile
55
+ - lib/settingslogic.rb
56
+ - settingslogic.gemspec
57
+ - spec/settings.rb
58
+ - spec/settings.yml
59
+ - spec/settings2.rb
60
+ - spec/settings3.rb
61
+ - spec/settings4.rb
62
+ - spec/settings5.rb
63
+ - spec/settings_empty.rb
64
+ - spec/settings_empty.yml
65
+ - spec/settingslogic_spec.rb
66
+ - spec/spec_helper.rb
67
+ homepage: https://github.com/mguymon/settingslogic
68
+ licenses: []
69
+ metadata: {}
70
+ post_install_message:
71
+ rdoc_options: []
72
+ require_paths:
73
+ - lib
74
+ required_ruby_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ required_rubygems_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ requirements: []
85
+ rubyforge_project:
86
+ rubygems_version: 2.2.2
87
+ signing_key:
88
+ specification_version: 4
89
+ summary: A simple and straightforward settings solution that uses an ERB enabled YAML
90
+ file and a singleton design pattern.
91
+ test_files:
92
+ - spec/settings.rb
93
+ - spec/settings.yml
94
+ - spec/settings2.rb
95
+ - spec/settings3.rb
96
+ - spec/settings4.rb
97
+ - spec/settings5.rb
98
+ - spec/settings_empty.rb
99
+ - spec/settings_empty.yml
100
+ - spec/settingslogic_spec.rb
101
+ - spec/spec_helper.rb
102
+ has_rdoc: