elasticonf 1.0.0.beta
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 +7 -0
- data/.gitignore +5 -0
- data/.rspec +2 -0
- data/.yardopts +2 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +30 -0
- data/LICENSE +20 -0
- data/README.md +39 -0
- data/Rakefile +4 -0
- data/bin/autospec +16 -0
- data/bin/rake +16 -0
- data/bin/rspec +16 -0
- data/bin/yard +16 -0
- data/bin/yardoc +16 -0
- data/bin/yri +16 -0
- data/elasticonf.gemspec +25 -0
- data/lib/elasticonf/config.rb +62 -0
- data/lib/elasticonf/loader.rb +4 -0
- data/lib/elasticonf/version.rb +3 -0
- data/lib/elasticonf.rb +40 -0
- data/spec/fixtures/application/production.yml +3 -0
- data/spec/fixtures/application/test.yml +3 -0
- data/spec/fixtures/application.yml +3 -0
- data/spec/fixtures/config.yml +3 -0
- data/spec/lib/elasticonf/config_spec.rb +7 -0
- data/spec/lib/elasticonf/loader_spec.rb +7 -0
- data/spec/lib/elasticonf_spec.rb +221 -0
- data/spec/spec_helper.rb +15 -0
- metadata +129 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7d4cb7fab94c126c86f3bed8843b45aa68fe7caf
|
4
|
+
data.tar.gz: 5d7f9d9fde89b9d4f1c9bc15b188e4a00194f224
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 11ee18dd6df50ebb4791652272468d1b53d9a5ca5e2f967f7b467c23a98e86b85566ce0e7fec7dccf4d88eed2c8c0fb5c386a54a71bb1aad02d083e1eca84cd3
|
7
|
+
data.tar.gz: d2a9bcb6c914c3df134528579ef47e45c76e408c57d8d457081330b6495920e989b312085dafc9c8074f1360bcda18c93c160eaa25abccf3892d0f947f71c0d7
|
data/.rspec
ADDED
data/.yardopts
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
elasticonf (1.0.0.beta)
|
5
|
+
hashie
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
diff-lcs (1.2.5)
|
11
|
+
hashie (2.1.1)
|
12
|
+
rake (10.3.1)
|
13
|
+
rspec (2.14.1)
|
14
|
+
rspec-core (~> 2.14.0)
|
15
|
+
rspec-expectations (~> 2.14.0)
|
16
|
+
rspec-mocks (~> 2.14.0)
|
17
|
+
rspec-core (2.14.8)
|
18
|
+
rspec-expectations (2.14.5)
|
19
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
20
|
+
rspec-mocks (2.14.6)
|
21
|
+
yard (0.8.7.4)
|
22
|
+
|
23
|
+
PLATFORMS
|
24
|
+
ruby
|
25
|
+
|
26
|
+
DEPENDENCIES
|
27
|
+
elasticonf!
|
28
|
+
rake
|
29
|
+
rspec
|
30
|
+
yard
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2014 Sergey Rezvanov
|
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.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
ElastiConf
|
2
|
+
==========
|
3
|
+
|
4
|
+
Powerfull and flexible application config solution worked in any ruby program. No clases definition, no dependencies. It just works!
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
First add the following lines to your application `Gemfile`:
|
9
|
+
|
10
|
+
``` ruby
|
11
|
+
gem 'elasticonf', '~> 1.0.0.beta'
|
12
|
+
```
|
13
|
+
|
14
|
+
Then run `bundle install` to update your's gems bundle.
|
15
|
+
|
16
|
+
## Configuration
|
17
|
+
|
18
|
+
Will be available soon.
|
19
|
+
|
20
|
+
## Documentation
|
21
|
+
|
22
|
+
Will be available soon.
|
23
|
+
|
24
|
+
## Testing
|
25
|
+
|
26
|
+
Run this commands in terminal:
|
27
|
+
|
28
|
+
0. `cd some/path`
|
29
|
+
0. `git clone git@github.com:rezwyi/elasticonf.git`
|
30
|
+
0. `cd elasticonf/`
|
31
|
+
0. `bin/rspec`
|
32
|
+
|
33
|
+
## Versioning
|
34
|
+
|
35
|
+
ElastiConf uses RubyGems Rational Versioning Policy.
|
36
|
+
|
37
|
+
## Copyright
|
38
|
+
|
39
|
+
See LICENSE file.
|
data/Rakefile
ADDED
data/bin/autospec
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'autospec' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require 'pathname'
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
+
Pathname.new(__FILE__).realpath)
|
12
|
+
|
13
|
+
require 'rubygems'
|
14
|
+
require 'bundler/setup'
|
15
|
+
|
16
|
+
load Gem.bin_path('rspec-core', 'autospec')
|
data/bin/rake
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'rake' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require 'pathname'
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
+
Pathname.new(__FILE__).realpath)
|
12
|
+
|
13
|
+
require 'rubygems'
|
14
|
+
require 'bundler/setup'
|
15
|
+
|
16
|
+
load Gem.bin_path('rake', 'rake')
|
data/bin/rspec
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'rspec' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require 'pathname'
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
+
Pathname.new(__FILE__).realpath)
|
12
|
+
|
13
|
+
require 'rubygems'
|
14
|
+
require 'bundler/setup'
|
15
|
+
|
16
|
+
load Gem.bin_path('rspec-core', 'rspec')
|
data/bin/yard
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'yard' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require 'pathname'
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
+
Pathname.new(__FILE__).realpath)
|
12
|
+
|
13
|
+
require 'rubygems'
|
14
|
+
require 'bundler/setup'
|
15
|
+
|
16
|
+
load Gem.bin_path('yard', 'yard')
|
data/bin/yardoc
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'yardoc' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require 'pathname'
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
+
Pathname.new(__FILE__).realpath)
|
12
|
+
|
13
|
+
require 'rubygems'
|
14
|
+
require 'bundler/setup'
|
15
|
+
|
16
|
+
load Gem.bin_path('yard', 'yardoc')
|
data/bin/yri
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'yri' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require 'pathname'
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
+
Pathname.new(__FILE__).realpath)
|
12
|
+
|
13
|
+
require 'rubygems'
|
14
|
+
require 'bundler/setup'
|
15
|
+
|
16
|
+
load Gem.bin_path('yard', 'yri')
|
data/elasticonf.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
require File.expand_path('../lib/elasticonf/version', __FILE__)
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = 'elasticonf'
|
5
|
+
s.summary = 'Powerfull and flexible application config solution worked in any ruby program'
|
6
|
+
s.description = s.summary
|
7
|
+
|
8
|
+
s.version = ElastiConf::VERSION
|
9
|
+
s.platform = Gem::Platform::RUBY
|
10
|
+
|
11
|
+
s.authors = ['Sergey Rezvanov']
|
12
|
+
s.email = ['sergey@rezvanov.info']
|
13
|
+
s.homepage = 'https://github.com/rezwyi/elasticonf'
|
14
|
+
|
15
|
+
s.licenses = ['MIT']
|
16
|
+
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
s.require_paths = ['lib']
|
19
|
+
|
20
|
+
s.add_dependency 'hashie'
|
21
|
+
|
22
|
+
s.add_development_dependency 'rake'
|
23
|
+
s.add_development_dependency 'rspec'
|
24
|
+
s.add_development_dependency 'yard'
|
25
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
module ElastiConf
|
2
|
+
module Config
|
3
|
+
def configure
|
4
|
+
yield self
|
5
|
+
end
|
6
|
+
|
7
|
+
def reset_config!
|
8
|
+
%w(
|
9
|
+
config_root
|
10
|
+
config_file
|
11
|
+
const_name
|
12
|
+
raise_if_already_initialized_constant
|
13
|
+
).each do |v|
|
14
|
+
instance_variable_set "@#{v}", nil
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def config_root
|
19
|
+
@config_root ||= raise(ArgumentError, 'You must first specify config root')
|
20
|
+
end
|
21
|
+
|
22
|
+
def config_root=(value)
|
23
|
+
unless [String, Symbol, Pathname].include?(value.class)
|
24
|
+
raise ArgumentError, "String or Pathname expected #{value.class} given"
|
25
|
+
end
|
26
|
+
@config_root = value.is_a?(String) ? Pathname.new(value.to_s) : value
|
27
|
+
end
|
28
|
+
|
29
|
+
def config_file
|
30
|
+
@config_file ||= 'config'
|
31
|
+
end
|
32
|
+
|
33
|
+
def config_file=(value)
|
34
|
+
unless [String, Symbol].include?(value.class)
|
35
|
+
raise ArgumentError, "String or Symbol expected #{value.class} given"
|
36
|
+
end
|
37
|
+
@config_file = value
|
38
|
+
end
|
39
|
+
|
40
|
+
def const_name
|
41
|
+
@const_name ||= 'Settings'
|
42
|
+
end
|
43
|
+
|
44
|
+
def const_name=(value)
|
45
|
+
unless [String, Symbol].include?(value.class)
|
46
|
+
raise ArgumentError, "String or Symbol expected #{value.class} given"
|
47
|
+
end
|
48
|
+
@const_name = value.to_s
|
49
|
+
end
|
50
|
+
|
51
|
+
def raise_if_already_initialized_constant
|
52
|
+
@raise_if_already_initialized_constant.nil? ? true : @raise_if_already_initialized_constant
|
53
|
+
end
|
54
|
+
|
55
|
+
def raise_if_already_initialized_constant=(value)
|
56
|
+
unless [TrueClass, FalseClass].include?(value.class)
|
57
|
+
raise ArgumentError, "TrueClass or FalseClass expected #{value.class} given"
|
58
|
+
end
|
59
|
+
@raise_if_already_initialized_constant = value
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
data/lib/elasticonf.rb
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
require 'hashie'
|
2
|
+
require 'yaml'
|
3
|
+
|
4
|
+
require 'elasticonf/version'
|
5
|
+
require 'elasticonf/config'
|
6
|
+
require 'elasticonf/loader'
|
7
|
+
|
8
|
+
module ElastiConf
|
9
|
+
extend Config
|
10
|
+
|
11
|
+
module_function
|
12
|
+
|
13
|
+
def root
|
14
|
+
@root ||= Pathname.new(File.expand_path(File.join(File.dirname(__FILE__), '..')))
|
15
|
+
end
|
16
|
+
|
17
|
+
def load!(env = nil)
|
18
|
+
const_name = ElastiConf.const_name
|
19
|
+
config_file = ElastiConf.config_root.join(ElastiConf.config_file + '.yml')
|
20
|
+
|
21
|
+
env_config_file = env ?
|
22
|
+
ElastiConf.config_root.join(ElastiConf.config_file, "#{env}.yml") :
|
23
|
+
nil
|
24
|
+
|
25
|
+
raise("Config file #{config_file} not found. Cannot continue") unless File.exists?(config_file)
|
26
|
+
|
27
|
+
config = Loader[YAML.load_file(config_file)]
|
28
|
+
if env_config_file && File.exists?(env_config_file)
|
29
|
+
config = config.deep_merge(Loader[YAML.load_file(env_config_file)])
|
30
|
+
end
|
31
|
+
|
32
|
+
if Kernel.const_defined?(const_name)
|
33
|
+
raise_if_already_initialized_constant ?
|
34
|
+
raise("Cannot set constant #{const_name} because it is already initialized") :
|
35
|
+
Kernel.send(:remove_const, const_name)
|
36
|
+
end
|
37
|
+
|
38
|
+
Kernel.const_set const_name, config
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,221 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe ElastiConf do
|
4
|
+
it { should be_a(Module) }
|
5
|
+
|
6
|
+
describe '#configure' do
|
7
|
+
before do
|
8
|
+
subject.configure do |config|
|
9
|
+
config.config_root = '/config'
|
10
|
+
config.config_file = 'application'
|
11
|
+
config.const_name = 'AppSettings'
|
12
|
+
config.raise_if_already_initialized_constant = false
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
its(:config_root) { should eql(Pathname('/config')) }
|
17
|
+
its(:config_file) { should eql('application') }
|
18
|
+
its(:const_name) { should eql('AppSettings') }
|
19
|
+
its(:raise_if_already_initialized_constant) { should be_false }
|
20
|
+
end
|
21
|
+
|
22
|
+
describe '#reset_config!' do
|
23
|
+
before { subject.reset_config! }
|
24
|
+
|
25
|
+
its(:config_file) { should eql('config') }
|
26
|
+
its(:const_name) { should eql('Settings') }
|
27
|
+
its(:raise_if_already_initialized_constant) { should be_true }
|
28
|
+
|
29
|
+
it 'should raise an error' do
|
30
|
+
expect { subject.config_root }.to raise_error
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe '#config_root' do
|
35
|
+
it 'should raise an error' do
|
36
|
+
expect { subject.config_root }.to raise_error
|
37
|
+
end
|
38
|
+
|
39
|
+
it 'should return some value' do
|
40
|
+
subject.config_root = '/config'
|
41
|
+
subject.config_root.should eql(Pathname.new('/config'))
|
42
|
+
end
|
43
|
+
|
44
|
+
context 'when wrong argument given' do
|
45
|
+
it 'should raise an error' do
|
46
|
+
expect { subject.config_root = -> {} }.to raise_error
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'should raise an error' do
|
50
|
+
expect { subject.config_root = {} }.to raise_error
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'should raise an error' do
|
54
|
+
expect { subject.config_root = [] }.to raise_error
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe '#config_file' do
|
60
|
+
its(:config_file) { should eql('config') }
|
61
|
+
|
62
|
+
it 'should return some value' do
|
63
|
+
expect {
|
64
|
+
subject.config_file = 'application'
|
65
|
+
}.to change(subject, :config_file).to('application')
|
66
|
+
end
|
67
|
+
|
68
|
+
context 'when wrong argument given' do
|
69
|
+
it 'should raise an error' do
|
70
|
+
expect { subject.config_file = -> {} }.to raise_error
|
71
|
+
end
|
72
|
+
|
73
|
+
it 'should raise an error' do
|
74
|
+
expect { subject.config_file = {} }.to raise_error
|
75
|
+
end
|
76
|
+
|
77
|
+
it 'should raise an error' do
|
78
|
+
expect { subject.config_file = [] }.to raise_error
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe '#const_name' do
|
84
|
+
its(:const_name) { should eql('Settings') }
|
85
|
+
|
86
|
+
it 'should return some value' do
|
87
|
+
expect {
|
88
|
+
subject.const_name = 'AppSettings'
|
89
|
+
}.to change(subject, :const_name).to('AppSettings')
|
90
|
+
end
|
91
|
+
|
92
|
+
it 'should return some value' do
|
93
|
+
expect {
|
94
|
+
subject.const_name = :'AppSettings'
|
95
|
+
}.to change(subject, :const_name).to('AppSettings')
|
96
|
+
end
|
97
|
+
|
98
|
+
context 'when wrong argument given' do
|
99
|
+
it 'should raise an error' do
|
100
|
+
expect { subject.const_name = -> {} }.to raise_error
|
101
|
+
end
|
102
|
+
|
103
|
+
it 'should raise an error' do
|
104
|
+
expect { subject.const_name = {} }.to raise_error
|
105
|
+
end
|
106
|
+
|
107
|
+
it 'should raise an error' do
|
108
|
+
expect { subject.const_name = [] }.to raise_error
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
describe '#raise_if_already_initialized_constant' do
|
114
|
+
its(:raise_if_already_initialized_constant) { should be_true }
|
115
|
+
|
116
|
+
it 'should change to false' do
|
117
|
+
expect {
|
118
|
+
subject.raise_if_already_initialized_constant = false
|
119
|
+
}.to change(subject, :raise_if_already_initialized_constant).to(false)
|
120
|
+
end
|
121
|
+
|
122
|
+
context 'when wrong argument given' do
|
123
|
+
it 'should raise an error' do
|
124
|
+
expect {
|
125
|
+
subject.raise_if_already_initialized_constant = 'some_string'
|
126
|
+
}.to raise_error
|
127
|
+
end
|
128
|
+
|
129
|
+
it 'should raise an error' do
|
130
|
+
expect {
|
131
|
+
subject.raise_if_already_initialized_constant = :some_symbol
|
132
|
+
}.to raise_error
|
133
|
+
end
|
134
|
+
|
135
|
+
it 'should raise an error' do
|
136
|
+
expect {
|
137
|
+
subject.raise_if_already_initialized_constant = -> {}
|
138
|
+
}.to raise_error
|
139
|
+
end
|
140
|
+
|
141
|
+
it 'should raise an error' do
|
142
|
+
expect {
|
143
|
+
subject.raise_if_already_initialized_constant = {}
|
144
|
+
}.to raise_error
|
145
|
+
end
|
146
|
+
|
147
|
+
it 'should raise an error' do
|
148
|
+
expect {
|
149
|
+
subject.raise_if_already_initialized_constant = []
|
150
|
+
}.to raise_error
|
151
|
+
end
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
describe '#root' do
|
156
|
+
its(:root) do
|
157
|
+
should eql(Pathname.new(File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))))
|
158
|
+
end
|
159
|
+
end
|
160
|
+
|
161
|
+
describe '#load!' do
|
162
|
+
before do
|
163
|
+
subject.configure do |config|
|
164
|
+
config.config_root = ElastiConf.root.join('spec', 'fixtures')
|
165
|
+
config.config_file = 'application'
|
166
|
+
config.const_name = const_name
|
167
|
+
end
|
168
|
+
end
|
169
|
+
|
170
|
+
after do
|
171
|
+
Kernel.send :remove_const, const_name
|
172
|
+
end
|
173
|
+
|
174
|
+
let(:const_name) { 'AppSettings' }
|
175
|
+
|
176
|
+
it 'should not raise an error' do
|
177
|
+
expect { subject.load! }.not_to raise_error
|
178
|
+
end
|
179
|
+
|
180
|
+
it 'should load some configuration' do
|
181
|
+
subject.load!
|
182
|
+
expect(AppSettings.some_config.int_key).to eql(1)
|
183
|
+
end
|
184
|
+
|
185
|
+
it 'should load some configuration' do
|
186
|
+
subject.load!
|
187
|
+
expect(AppSettings.some_config.str_key).to eql('1')
|
188
|
+
end
|
189
|
+
|
190
|
+
context 'when some env given' do
|
191
|
+
let(:env) { :test }
|
192
|
+
|
193
|
+
it 'should not raise an error' do
|
194
|
+
expect { subject.load!(env) }.not_to raise_error
|
195
|
+
end
|
196
|
+
|
197
|
+
it 'should load some configuration' do
|
198
|
+
subject.load! env
|
199
|
+
expect(AppSettings.some_config.int_key).to eql(2)
|
200
|
+
end
|
201
|
+
|
202
|
+
it 'should load some configuration' do
|
203
|
+
subject.load! env
|
204
|
+
expect(AppSettings.some_config.str_key).to eql('2')
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
context 'when already initialized constant' do
|
209
|
+
before { Kernel.const_set(const_name, {}) }
|
210
|
+
|
211
|
+
it 'should raise an error' do
|
212
|
+
expect { subject.load! }.to raise_error
|
213
|
+
end
|
214
|
+
|
215
|
+
it 'should not raise an error' do
|
216
|
+
subject.raise_if_already_initialized_constant = false
|
217
|
+
expect { subject.load! }.not_to raise_error
|
218
|
+
end
|
219
|
+
end
|
220
|
+
end
|
221
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
2
|
+
|
3
|
+
require 'bundler'
|
4
|
+
Bundler.require :default
|
5
|
+
|
6
|
+
require 'elasticonf'
|
7
|
+
|
8
|
+
RSpec.configure do |config|
|
9
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
10
|
+
config.run_all_when_everything_filtered = true
|
11
|
+
config.filter_run :focus
|
12
|
+
|
13
|
+
# After each test spec rollback configuration to its default state
|
14
|
+
config.after(:each) { ElastiConf.reset_config! }
|
15
|
+
end
|
metadata
ADDED
@@ -0,0 +1,129 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: elasticonf
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0.beta
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Sergey Rezvanov
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-04-21 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: hashie
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
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: rake
|
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
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: yard
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Powerfull and flexible application config solution worked in any ruby
|
70
|
+
program
|
71
|
+
email:
|
72
|
+
- sergey@rezvanov.info
|
73
|
+
executables: []
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- .gitignore
|
78
|
+
- .rspec
|
79
|
+
- .yardopts
|
80
|
+
- Gemfile
|
81
|
+
- Gemfile.lock
|
82
|
+
- LICENSE
|
83
|
+
- README.md
|
84
|
+
- Rakefile
|
85
|
+
- bin/autospec
|
86
|
+
- bin/rake
|
87
|
+
- bin/rspec
|
88
|
+
- bin/yard
|
89
|
+
- bin/yardoc
|
90
|
+
- bin/yri
|
91
|
+
- elasticonf.gemspec
|
92
|
+
- lib/elasticonf.rb
|
93
|
+
- lib/elasticonf/config.rb
|
94
|
+
- lib/elasticonf/loader.rb
|
95
|
+
- lib/elasticonf/version.rb
|
96
|
+
- spec/fixtures/application.yml
|
97
|
+
- spec/fixtures/application/production.yml
|
98
|
+
- spec/fixtures/application/test.yml
|
99
|
+
- spec/fixtures/config.yml
|
100
|
+
- spec/lib/elasticonf/config_spec.rb
|
101
|
+
- spec/lib/elasticonf/loader_spec.rb
|
102
|
+
- spec/lib/elasticonf_spec.rb
|
103
|
+
- spec/spec_helper.rb
|
104
|
+
homepage: https://github.com/rezwyi/elasticonf
|
105
|
+
licenses:
|
106
|
+
- MIT
|
107
|
+
metadata: {}
|
108
|
+
post_install_message:
|
109
|
+
rdoc_options: []
|
110
|
+
require_paths:
|
111
|
+
- lib
|
112
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - '>='
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - '>'
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: 1.3.1
|
122
|
+
requirements: []
|
123
|
+
rubyforge_project:
|
124
|
+
rubygems_version: 2.2.2
|
125
|
+
signing_key:
|
126
|
+
specification_version: 4
|
127
|
+
summary: Powerfull and flexible application config solution worked in any ruby program
|
128
|
+
test_files: []
|
129
|
+
has_rdoc:
|