rails_simple_config 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4c89164a55cdd5a6bf2f9f713ae2243212cd4638e1fbd2e4810540e500ea1dd2
4
- data.tar.gz: 6b417ae172e9a2d0a1ad71924bc5fbdc736ae33e5d155bc6c4b8837c340d85ea
3
+ metadata.gz: 22fc744a5f6eaf1693c651df056cbb2576af72531b89e7158504f3a2bb738df7
4
+ data.tar.gz: 2662fb642e4638e8f6ce875af3d108efa258e70696e5ab2e5a07a28d4057c48c
5
5
  SHA512:
6
- metadata.gz: 5907458a1a536e9cef7fbca1f379773c0165e5eda32c0f01fc45cf8161b81ba735a344511bf646f0884568bfe55e50f63e6fe8173a1407c859fd67e2ca4f37d4
7
- data.tar.gz: 7b56bd45d8f31088a1280dd7311e10d4048e41daf3de5c14530207e0a5926409bcd5ccf3536be5c0ea8b02b02e3a95f519742fc406ad5b671db2f3bccb5816a7
6
+ metadata.gz: 84203788a331cb49209f23102ff4670cd4e4cc704e42aabb53305dcf784ccf88ed2566de0c03e5291f84e0209344876efd181717d26f6dadb89110f4f879a18b
7
+ data.tar.gz: 4a14cf4b341231acb917d7d122fe5b30b41a54db1d7f786efc200dbca1919999c7652c06ca873562bfe929b89dce7e561a528b740b216f65f009041ccad550df
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_simple_config (0.0.7)
4
+ rails_simple_config (0.0.8)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
data/README.md CHANGED
@@ -15,17 +15,17 @@ Add RailsSimpleConfig to your Gemfile:
15
15
  Run the generator to create the default configuration files:
16
16
 
17
17
  rails generate rails_simple_config:install
18
-
18
+
19
19
  The generator will create 3 files in your Rails `config` directory, namely:
20
20
 
21
21
  * `secrets.yml`
22
22
  * `secrets.example.yml`
23
23
  * `config.yml`
24
24
 
25
- The `secrets.yml` should _not_ be committed to source control. It should be used to keep settings which are
25
+ The `secrets.yml` should _not_ be committed to source control. It should be used to keep settings which are
26
26
  considered a secret; such as your Amazon credentials. It is loaded first.
27
27
 
28
- The `secrets.example.yml` file can be added to source control and should serve as an _example_ of the settings
28
+ The `secrets.example.yml` file can be added to source control and should serve as an _example_ of the settings
29
29
  contained in the `secrets.yml` file.
30
30
 
31
31
  The `config.yml` file should contain all other configuration settings.
@@ -34,42 +34,42 @@ The `config.yml` file should contain all other configuration settings.
34
34
 
35
35
  ### Define configuration settings
36
36
 
37
- Define your settings in the generated `secrets.yml` and `config.yml` files, found in your Rails `config` directory.
37
+ Define your settings in the generated `secrets.yml` and `config.yml` files, found in your Rails `config` directory.
38
38
 
39
39
  Both files contain a shared section and sections with overrides for the respective development, test and production Rails environments.
40
40
  It can also contain ERB code so that more advanced configuration scenarios can be supported.
41
41
 
42
42
  # example configuration
43
-
43
+
44
44
  shared: &shared
45
45
 
46
46
  title: My Website Title
47
47
  description: Meta description of the site
48
48
  keywords: Meta keywords for search engines
49
-
49
+
50
50
  no_reply_email: noreply@example.com
51
51
 
52
52
  dynamic_setting: <%= 30 * 60 %>
53
-
53
+
54
54
  development:
55
55
 
56
56
  # inherit shared settings
57
57
  <<: *shared
58
-
58
+
59
59
  # define additional settings and overrides
60
-
60
+
61
61
  # e.g. mail settings for mailcatcher
62
62
  smtp_server: localhost
63
63
  smtp_port: 1025
64
64
  mail_prefix: DEV -
65
-
65
+
66
66
  production:
67
67
 
68
68
  # inherit shared settings
69
69
  <<: *shared
70
-
70
+
71
71
  # define additional settings and overrides
72
-
72
+
73
73
  # e.g. mail settings for send grid
74
74
  smtp_server: www.sendgrid.com
75
75
  smtp_port: 25
@@ -94,9 +94,9 @@ For example, in your application layout:
94
94
  ...
95
95
 
96
96
  </body>
97
- </html>
97
+ </html>
98
98
 
99
- In addition, unlike other Rails configuration solutions, `SimpleConfig` is available to the Rails development, test and production environment configuration files,
99
+ In addition, unlike other Rails configuration solutions, `SimpleConfig` is available to the Rails development, test and production environment configuration files,
100
100
  initializers and routes during startup. It can be used as a replacement for environment variables; thus making your setup and code much cleaner.
101
101
 
102
102
  For example, the `SimpleConfig.no_reply_email` will be accessible to the [devise](https://github.com/plataformatec/devise) initializer when configuring `mailer_sender`:
@@ -116,7 +116,7 @@ For example, the `SimpleConfig.no_reply_email` will be accessible to the [devise
116
116
 
117
117
  `SimpleConfig` makes use of the [ActiveSupport::OrderedOptions](http://api.rubyonrails.org/classes/ActiveSupport/OrderedOptions.html) class, so accessing undefined settings will always return `nil`.
118
118
 
119
- In development, the configuration is reloaded upon each request, however, any configuration used within the `application.rb` file and initializers
119
+ In development, the configuration is reloaded upon each request, however, any configuration used within the `application.rb` file and initializers
120
120
  will _not_ be automatically reloaded, without having to restart your web server.
121
121
 
122
122
  ## Project Info
@@ -1,3 +1,3 @@
1
1
  module RailsSimpleConfig
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
@@ -13,17 +13,17 @@ module SimpleConfig
13
13
  load_file File.join(Rails.root, 'config', 'secrets.yml')
14
14
  load_file File.join(Rails.root, 'config', 'config.yml')
15
15
  end
16
-
16
+
17
17
  def reload!
18
18
  clear
19
19
  load!
20
20
  end
21
-
21
+
22
22
  private
23
-
23
+
24
24
  def load_file(filename)
25
25
  if File.exist?(filename)
26
- configuration = YAML.load(ERB.new(File.read(filename)).result(binding))[Rails.env]
26
+ configuration = YAML.load(ERB.new(File.read(filename)).result(binding), aliases: true)[Rails.env]
27
27
  configuration.each do |key, value|
28
28
  self.__send__("#{key}=", value)
29
29
  end if configuration
@@ -33,11 +33,11 @@ module SimpleConfig
33
33
  end
34
34
 
35
35
  @@config = Config.new
36
-
36
+
37
37
  def self.load!
38
38
  @@config.load!
39
39
  end
40
-
40
+
41
41
  def self.reload!
42
42
  @@config.reload!
43
43
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_simple_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Stefano
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-17 00:00:00.000000000 Z
11
+ date: 2024-01-12 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A simple YAML based configuration for Ruby on Rails, which supports shared
14
14
  settings, ERB and more.
@@ -50,7 +50,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
50
50
  - !ruby/object:Gem::Version
51
51
  version: '0'
52
52
  requirements: []
53
- rubygems_version: 3.2.3
53
+ rubygems_version: 3.4.10
54
54
  signing_key:
55
55
  specification_version: 4
56
56
  summary: Simple YAML based configuration gem for Rails