easy_settings 0.0.5 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +1 -1
  3. data/README.md +85 -42
  4. data/Rakefile +17 -1
  5. data/lib/easy_settings.rb +15 -11
  6. data/lib/easy_settings/rails.rb +8 -0
  7. data/lib/easy_settings_version.rb +1 -1
  8. data/spec/easy_settings_test/.env +1 -0
  9. data/spec/easy_settings_test/.gitignore +1 -0
  10. data/spec/easy_settings_test/.rspec +2 -0
  11. data/spec/easy_settings_test/Gemfile +8 -0
  12. data/spec/easy_settings_test/Gemfile.lock +139 -0
  13. data/spec/easy_settings_test/README.rdoc +28 -0
  14. data/spec/easy_settings_test/Rakefile +6 -0
  15. data/spec/easy_settings_test/app/assets/images/.keep +0 -0
  16. data/spec/easy_settings_test/app/assets/stylesheets/application.css +15 -0
  17. data/spec/easy_settings_test/app/controllers/application_controller.rb +5 -0
  18. data/spec/easy_settings_test/app/controllers/concerns/.keep +0 -0
  19. data/spec/easy_settings_test/app/helpers/application_helper.rb +2 -0
  20. data/spec/easy_settings_test/app/mailers/.keep +0 -0
  21. data/spec/easy_settings_test/app/models/.keep +0 -0
  22. data/spec/easy_settings_test/app/models/concerns/.keep +0 -0
  23. data/spec/easy_settings_test/app/views/layouts/application.html.erb +13 -0
  24. data/spec/easy_settings_test/bin/bundle +3 -0
  25. data/spec/easy_settings_test/bin/rails +4 -0
  26. data/spec/easy_settings_test/bin/rake +4 -0
  27. data/spec/easy_settings_test/bin/setup +29 -0
  28. data/spec/easy_settings_test/config.ru +4 -0
  29. data/spec/easy_settings_test/config/application.rb +32 -0
  30. data/spec/easy_settings_test/config/boot.rb +3 -0
  31. data/spec/easy_settings_test/config/environment.rb +5 -0
  32. data/spec/easy_settings_test/config/environments/development.rb +25 -0
  33. data/spec/easy_settings_test/config/environments/production.rb +64 -0
  34. data/spec/easy_settings_test/config/environments/test.rb +42 -0
  35. data/spec/easy_settings_test/config/initializers/backtrace_silencers.rb +7 -0
  36. data/spec/easy_settings_test/config/initializers/cookies_serializer.rb +3 -0
  37. data/spec/easy_settings_test/config/initializers/filter_parameter_logging.rb +4 -0
  38. data/spec/easy_settings_test/config/initializers/inflections.rb +16 -0
  39. data/spec/easy_settings_test/config/initializers/mime_types.rb +4 -0
  40. data/spec/easy_settings_test/config/initializers/session_store.rb +3 -0
  41. data/spec/easy_settings_test/config/initializers/wrap_parameters.rb +9 -0
  42. data/spec/easy_settings_test/config/locales/en.yml +23 -0
  43. data/spec/easy_settings_test/config/routes.rb +56 -0
  44. data/spec/easy_settings_test/config/secrets.yml +22 -0
  45. data/spec/easy_settings_test/config/settings.yml +15 -0
  46. data/spec/easy_settings_test/db/seeds.rb +7 -0
  47. data/spec/easy_settings_test/lib/assets/.keep +0 -0
  48. data/spec/easy_settings_test/lib/tasks/.keep +0 -0
  49. data/spec/easy_settings_test/log/.keep +0 -0
  50. data/spec/easy_settings_test/public/404.html +67 -0
  51. data/spec/easy_settings_test/public/422.html +67 -0
  52. data/spec/easy_settings_test/public/500.html +66 -0
  53. data/spec/easy_settings_test/public/favicon.ico +0 -0
  54. data/spec/easy_settings_test/public/robots.txt +5 -0
  55. data/spec/easy_settings_test/spec/easy_settings_spec.rb +10 -0
  56. data/spec/easy_settings_test/spec/rails_helper.rb +40 -0
  57. data/spec/easy_settings_test/spec/spec_helper.rb +92 -0
  58. data/spec/easy_settings_test/vendor/assets/stylesheets/.keep +0 -0
  59. metadata +105 -2
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 87ee2c164efed66552951dc4c09d3da0ae4b797e370febf19209956e5b934a6cadeca7c648e14113936dd84bcf5553ebdd228f3830a6f4ad1f84f6c48e35d653
15
+
16
+ test:
17
+ secret_key_base: 50c65e3755ea1761bcb2f676ec3ebae73e35d2e20d602397c0d0eea75455b61e390473d08633cda55be08cc50e8b3898be58d9b8075d0a8de6496971a0ccf6b8
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,15 @@
1
+ default: &default
2
+ app_name: Test App for EasySettings
3
+ apikey: <%= ENV["APIKEY"] %>
4
+
5
+ development:
6
+ <<: *default
7
+ endpoint: https://endpoint-for-development
8
+
9
+ test:
10
+ <<: *default
11
+ endpoint: https://endpoint-for-test
12
+
13
+ production:
14
+ <<: *default
15
+ endpoint: https://endpoint-for-prouduction
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
+ # Mayor.create(name: 'Emanuel', city: cities.first)
File without changes
File without changes
File without changes
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
@@ -0,0 +1,10 @@
1
+ require File.expand_path("../rails_helper", __FILE__)
2
+
3
+ describe EasySettings do
4
+ subject { described_class }
5
+ its(:namespace) { is_expected.to eq Rails.env }
6
+ its(:source_file) { is_expected.to eq Rails.root.join("config/settings.yml").to_s }
7
+ its(:app_name) { is_expected.to eq "Test App for EasySettings" }
8
+ its(:endpoint) { is_expected.to eq "https://endpoint-for-test" }
9
+ its(:apikey) { is_expected.to eq "EASYSETTINGS" }
10
+ end
@@ -0,0 +1,40 @@
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ ENV['RAILS_ENV'] ||= 'test'
3
+ require File.expand_path('../../config/environment', __FILE__)
4
+ # Prevent database truncation if the environment is production
5
+ abort("The Rails environment is running in production mode!") if Rails.env.production?
6
+ require 'spec_helper'
7
+ require 'rspec/rails'
8
+ # Add additional requires below this line. Rails is not loaded until this point!
9
+
10
+ # Requires supporting ruby files with custom matchers and macros, etc, in
11
+ # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
12
+ # run as spec files by default. This means that files in spec/support that end
13
+ # in _spec.rb will both be required and run as specs, causing the specs to be
14
+ # run twice. It is recommended that you do not name files matching this glob to
15
+ # end with _spec.rb. You can configure this pattern with the --pattern
16
+ # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
17
+ #
18
+ # The following line is provided for convenience purposes. It has the downside
19
+ # of increasing the boot-up time by auto-requiring all files in the support
20
+ # directory. Alternatively, in the individual `*_spec.rb` files, manually
21
+ # require only the support files necessary.
22
+ #
23
+ # Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
24
+
25
+ RSpec.configure do |config|
26
+ # RSpec Rails can automatically mix in different behaviours to your tests
27
+ # based on their file location, for example enabling you to call `get` and
28
+ # `post` in specs under `spec/controllers`.
29
+ #
30
+ # You can disable this behaviour by removing the line below, and instead
31
+ # explicitly tag your specs with their type, e.g.:
32
+ #
33
+ # RSpec.describe UsersController, :type => :controller do
34
+ # # ...
35
+ # end
36
+ #
37
+ # The different available types are documented in the features, such as in
38
+ # https://relishapp.com/rspec/rspec-rails/docs
39
+ config.infer_spec_type_from_file_location!
40
+ end
@@ -0,0 +1,92 @@
1
+ # This file was generated by the `rails generate rspec:install` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
4
+ # this file to always be loaded, without a need to explicitly require it in any
5
+ # files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need
13
+ # it.
14
+ #
15
+ # The `.rspec` file also contains a few flags that are not defaults but that
16
+ # users commonly want.
17
+ #
18
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
19
+ RSpec.configure do |config|
20
+ # rspec-expectations config goes here. You can use an alternate
21
+ # assertion/expectation library such as wrong or the stdlib/minitest
22
+ # assertions if you prefer.
23
+ config.expect_with :rspec do |expectations|
24
+ # This option will default to `true` in RSpec 4. It makes the `description`
25
+ # and `failure_message` of custom matchers include text for helper methods
26
+ # defined using `chain`, e.g.:
27
+ # be_bigger_than(2).and_smaller_than(4).description
28
+ # # => "be bigger than 2 and smaller than 4"
29
+ # ...rather than:
30
+ # # => "be bigger than 2"
31
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
32
+ end
33
+
34
+ # rspec-mocks config goes here. You can use an alternate test double
35
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
36
+ config.mock_with :rspec do |mocks|
37
+ # Prevents you from mocking or stubbing a method that does not exist on
38
+ # a real object. This is generally recommended, and will default to
39
+ # `true` in RSpec 4.
40
+ mocks.verify_partial_doubles = true
41
+ end
42
+
43
+ # The settings below are suggested to provide a good initial experience
44
+ # with RSpec, but feel free to customize to your heart's content.
45
+ =begin
46
+ # These two settings work together to allow you to limit a spec run
47
+ # to individual examples or groups you care about by tagging them with
48
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
49
+ # get run.
50
+ config.filter_run :focus
51
+ config.run_all_when_everything_filtered = true
52
+
53
+ # Allows RSpec to persist some state between runs in order to support
54
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
55
+ # you configure your source control system to ignore this file.
56
+ config.example_status_persistence_file_path = "spec/examples.txt"
57
+
58
+ # Limits the available syntax to the non-monkey patched syntax that is
59
+ # recommended. For more details, see:
60
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
61
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
62
+ # - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
63
+ config.disable_monkey_patching!
64
+
65
+ # Many RSpec users commonly either run the entire suite or an individual
66
+ # file, and it's useful to allow more verbose output when running an
67
+ # individual spec file.
68
+ if config.files_to_run.one?
69
+ # Use the documentation formatter for detailed output,
70
+ # unless a formatter has already been configured
71
+ # (e.g. via a command-line flag).
72
+ config.default_formatter = 'doc'
73
+ end
74
+
75
+ # Print the 10 slowest examples and example groups at the
76
+ # end of the spec run, to help surface which specs are running
77
+ # particularly slow.
78
+ config.profile_examples = 10
79
+
80
+ # Run specs in random order to surface order dependencies. If you find an
81
+ # order dependency and want to debug it, you can fix the order by providing
82
+ # the seed, which is printed after each run.
83
+ # --seed 1234
84
+ config.order = :random
85
+
86
+ # Seed global randomization in this process using the `--seed` CLI option.
87
+ # Setting this allows you to use `--seed` to deterministically reproduce
88
+ # test failures related to randomization by passing the same `--seed` value
89
+ # as the one that triggered the failure.
90
+ Kernel.srand config.seed
91
+ =end
92
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_settings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - nownabe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-27 00:00:00.000000000 Z
11
+ date: 2015-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hashie
@@ -124,8 +124,60 @@ files:
124
124
  - Rakefile
125
125
  - easy_settings.gemspec
126
126
  - lib/easy_settings.rb
127
+ - lib/easy_settings/rails.rb
127
128
  - lib/easy_settings_version.rb
128
129
  - spec/easy_settings_spec.rb
130
+ - spec/easy_settings_test/.env
131
+ - spec/easy_settings_test/.gitignore
132
+ - spec/easy_settings_test/.rspec
133
+ - spec/easy_settings_test/Gemfile
134
+ - spec/easy_settings_test/Gemfile.lock
135
+ - spec/easy_settings_test/README.rdoc
136
+ - spec/easy_settings_test/Rakefile
137
+ - spec/easy_settings_test/app/assets/images/.keep
138
+ - spec/easy_settings_test/app/assets/stylesheets/application.css
139
+ - spec/easy_settings_test/app/controllers/application_controller.rb
140
+ - spec/easy_settings_test/app/controllers/concerns/.keep
141
+ - spec/easy_settings_test/app/helpers/application_helper.rb
142
+ - spec/easy_settings_test/app/mailers/.keep
143
+ - spec/easy_settings_test/app/models/.keep
144
+ - spec/easy_settings_test/app/models/concerns/.keep
145
+ - spec/easy_settings_test/app/views/layouts/application.html.erb
146
+ - spec/easy_settings_test/bin/bundle
147
+ - spec/easy_settings_test/bin/rails
148
+ - spec/easy_settings_test/bin/rake
149
+ - spec/easy_settings_test/bin/setup
150
+ - spec/easy_settings_test/config.ru
151
+ - spec/easy_settings_test/config/application.rb
152
+ - spec/easy_settings_test/config/boot.rb
153
+ - spec/easy_settings_test/config/environment.rb
154
+ - spec/easy_settings_test/config/environments/development.rb
155
+ - spec/easy_settings_test/config/environments/production.rb
156
+ - spec/easy_settings_test/config/environments/test.rb
157
+ - spec/easy_settings_test/config/initializers/backtrace_silencers.rb
158
+ - spec/easy_settings_test/config/initializers/cookies_serializer.rb
159
+ - spec/easy_settings_test/config/initializers/filter_parameter_logging.rb
160
+ - spec/easy_settings_test/config/initializers/inflections.rb
161
+ - spec/easy_settings_test/config/initializers/mime_types.rb
162
+ - spec/easy_settings_test/config/initializers/session_store.rb
163
+ - spec/easy_settings_test/config/initializers/wrap_parameters.rb
164
+ - spec/easy_settings_test/config/locales/en.yml
165
+ - spec/easy_settings_test/config/routes.rb
166
+ - spec/easy_settings_test/config/secrets.yml
167
+ - spec/easy_settings_test/config/settings.yml
168
+ - spec/easy_settings_test/db/seeds.rb
169
+ - spec/easy_settings_test/lib/assets/.keep
170
+ - spec/easy_settings_test/lib/tasks/.keep
171
+ - spec/easy_settings_test/log/.keep
172
+ - spec/easy_settings_test/public/404.html
173
+ - spec/easy_settings_test/public/422.html
174
+ - spec/easy_settings_test/public/500.html
175
+ - spec/easy_settings_test/public/favicon.ico
176
+ - spec/easy_settings_test/public/robots.txt
177
+ - spec/easy_settings_test/spec/easy_settings_spec.rb
178
+ - spec/easy_settings_test/spec/rails_helper.rb
179
+ - spec/easy_settings_test/spec/spec_helper.rb
180
+ - spec/easy_settings_test/vendor/assets/stylesheets/.keep
129
181
  - spec/empty_settings.yml
130
182
  - spec/settings.yml
131
183
  - spec/settings_with_namespace.yml
@@ -156,6 +208,57 @@ specification_version: 4
156
208
  summary: EasySettings is a simple settings with YAML file.
157
209
  test_files:
158
210
  - spec/easy_settings_spec.rb
211
+ - spec/easy_settings_test/.env
212
+ - spec/easy_settings_test/.gitignore
213
+ - spec/easy_settings_test/.rspec
214
+ - spec/easy_settings_test/Gemfile
215
+ - spec/easy_settings_test/Gemfile.lock
216
+ - spec/easy_settings_test/README.rdoc
217
+ - spec/easy_settings_test/Rakefile
218
+ - spec/easy_settings_test/app/assets/images/.keep
219
+ - spec/easy_settings_test/app/assets/stylesheets/application.css
220
+ - spec/easy_settings_test/app/controllers/application_controller.rb
221
+ - spec/easy_settings_test/app/controllers/concerns/.keep
222
+ - spec/easy_settings_test/app/helpers/application_helper.rb
223
+ - spec/easy_settings_test/app/mailers/.keep
224
+ - spec/easy_settings_test/app/models/.keep
225
+ - spec/easy_settings_test/app/models/concerns/.keep
226
+ - spec/easy_settings_test/app/views/layouts/application.html.erb
227
+ - spec/easy_settings_test/bin/bundle
228
+ - spec/easy_settings_test/bin/rails
229
+ - spec/easy_settings_test/bin/rake
230
+ - spec/easy_settings_test/bin/setup
231
+ - spec/easy_settings_test/config.ru
232
+ - spec/easy_settings_test/config/application.rb
233
+ - spec/easy_settings_test/config/boot.rb
234
+ - spec/easy_settings_test/config/environment.rb
235
+ - spec/easy_settings_test/config/environments/development.rb
236
+ - spec/easy_settings_test/config/environments/production.rb
237
+ - spec/easy_settings_test/config/environments/test.rb
238
+ - spec/easy_settings_test/config/initializers/backtrace_silencers.rb
239
+ - spec/easy_settings_test/config/initializers/cookies_serializer.rb
240
+ - spec/easy_settings_test/config/initializers/filter_parameter_logging.rb
241
+ - spec/easy_settings_test/config/initializers/inflections.rb
242
+ - spec/easy_settings_test/config/initializers/mime_types.rb
243
+ - spec/easy_settings_test/config/initializers/session_store.rb
244
+ - spec/easy_settings_test/config/initializers/wrap_parameters.rb
245
+ - spec/easy_settings_test/config/locales/en.yml
246
+ - spec/easy_settings_test/config/routes.rb
247
+ - spec/easy_settings_test/config/secrets.yml
248
+ - spec/easy_settings_test/config/settings.yml
249
+ - spec/easy_settings_test/db/seeds.rb
250
+ - spec/easy_settings_test/lib/assets/.keep
251
+ - spec/easy_settings_test/lib/tasks/.keep
252
+ - spec/easy_settings_test/log/.keep
253
+ - spec/easy_settings_test/public/404.html
254
+ - spec/easy_settings_test/public/422.html
255
+ - spec/easy_settings_test/public/500.html
256
+ - spec/easy_settings_test/public/favicon.ico
257
+ - spec/easy_settings_test/public/robots.txt
258
+ - spec/easy_settings_test/spec/easy_settings_spec.rb
259
+ - spec/easy_settings_test/spec/rails_helper.rb
260
+ - spec/easy_settings_test/spec/spec_helper.rb
261
+ - spec/easy_settings_test/vendor/assets/stylesheets/.keep
159
262
  - spec/empty_settings.yml
160
263
  - spec/settings.yml
161
264
  - spec/settings_with_namespace.yml