提交 4973704b 编写于 作者: J Jon Moss

Merge pull request #21995 from tak1n/master

Add Example for using config_for
......@@ -1119,21 +1119,48 @@ NOTE. If you are running in a multi-threaded environment, there could be a chanc
Custom configuration
--------------------
You can configure your own code through the Rails configuration object with custom configuration under the `config.x` property. It works like this:
You can configure your own code through the Rails configuration object with custom configuration. It works like this:
```ruby
config.x.payment_processing.schedule = :daily
config.x.payment_processing.retries = 3
config.x.super_debugger = true
config.payment_processing.schedule = :daily
config.payment_processing.retries = 3
config.super_debugger = true
```
These configuration points are then available through the configuration object:
```ruby
Rails.configuration.x.payment_processing.schedule # => :daily
Rails.configuration.x.payment_processing.retries # => 3
Rails.configuration.x.super_debugger # => true
Rails.configuration.x.super_debugger.not_set # => nil
Rails.configuration.payment_processing.schedule # => :daily
Rails.configuration.payment_processing.retries # => 3
Rails.configuration.super_debugger # => true
Rails.configuration.super_debugger.not_set # => nil
```
You can also use `Rails::Application.config_for` to load whole configuration files:
```ruby
# config/payment.yml:
production:
environment: production
merchant_id: production_merchant_id
public_key: production_public_key
private_key: production_private_key
development:
environment: sandbox
merchant_id: development_merchant_id
public_key: development_public_key
private_key: development_private_key
# config/application.rb
module MyApp
class Application < Rails::Application
config.payment = config_for(:payment)
end
end
```
```ruby
Rails.configuration.payment['merchant_id'] # => production_merchant_id or development_merchant_id
```
Search Engines Indexing
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册