1. Rails Environments and Configuration - 1.2 Startup and Application Settings

1.2 Startup and Application Settings

Load Path:

$ rails console
$ LOAD_PATH

Whenever you start a process to handle requests with Rails (such as with rails server), one of the firstthings that happens is that config/boot.rb is loaded.
There are three files involved in setting up the entire Rails stack:
boot.rb: sets up Bundler and load paths
application.rb: loads rails gems, gems for the specified Rail.env, and configures the application
environment.rb: runs all initializers
All three are run when you need the whole Rails environment loaded. That’s what’s done by runner, console,server, etc.

1.2.1 application.rb

The file config/application.rb is the home to your Rails application settings, and it’s the only file required at the top of config/environment.rb.
You also have the ability to easily cherry-pick only the components needed by your application.

# To pick the frameworks you want, remove 'require "rails/all"'
# and list the framework frailties that you want:

# require "active_model/railtie"
# require "active_record/railtie"
# require "action_controller/railtie"
# require "action_mailer/railtie"
# require "action_view/railtie"
# require "sprockets/railtie"
# require "rails/test_unit/railtie"

1.2.1.1 Load Path Modifications

By default, Rails looks for code in a number of standard directories such as app/models and app/controllers referred to collectively as the load path.

# Custom directories with classes and modules you want to be autoloadable 
# config.autoload_paths+=%W(#{config.root}/extras)
config.autoload_paths+=%W(#{config.root}/app/presenters)

Note that config.root refers to the root directory of your Rails application. the %W functions as a whitespace-delimited array literal and is used quite often in
the Rails codebase for convenience.

1.2.1.2 Time Zones

The default time zone for Rails 4 applications is UTC.

# Set Time.zone  default to the specified zone and make Active Record auto-converttothiszone.
# Run "rake -D time" for a list of tasks for finding time zone names.
config.time_zone='CentralTime(US&Canada)'

1.2.1.3 Localisation

Rails features localization support via locale files. The default locale is :en.

# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
# config.i18n.default_locale = :de

1.2.1.4 Generator Default Settings

Rails generator scripts make certain assumptions about your tool chain. Setting the correct values here meanshaving to type less parameters on the command line. For instance, to use Spec without fixtures and Hamlas the template engine, our settings would look like:

# Configure generators values. Many other options are available,
# be sure to check the documentation.
config.generators do |g|
  g.template_engine :haml
  g.test_framework :rspec, fixture: false
end

Note that Rubygems such as rspec-rails, haml-rails, and factory_girl_rails handle this for you automatically.

1.2.2 Initializers

Rails 2 introduced the concept of breaking out configuration settings into their own small ruby files under the config/initializers directory, where they are automatically loaded at startup. You can add configuration settings for your own application by adding ruby files to the initializers directory.

1.2.2.1 Backtrace Silencers

Rails has a mechanism forreducing the size of backtraces by eliminating lines that don’t really add anything to your debugging.

1.2.2.2 Filter Parameter Logging

When a request is made to your application, by default Rails logs details such as the request path, HTTPmethod, IP Address, and parameters. If an attacker somehow gained access to your logs, they may be able toview sensitive information, like passwords and credit card numbers.

1.2.2.3 Inflections

Rails has a class named Inflector whose responsibility is to transform strings (words) from singular to plural,class names to table names, modularized class names to ones without, and class names to foreign keys, etc.

The default inflections for pluralization and singularization of uncountable words are kept in an interestingfile inside the ActiveSupport gem, named inflections.rb.

Most of the time the Inflector class does a decent job of figuring out the pluralized table name for a given class, but occasionally it won’t. This is one of the first stumbling blocks for many new Rails users, but it is not necessary to panic. With a little ad hoc testing beforehand, it’s easy to find out how Inflector will react to certain words. We just need to use the Rails console, which by the way is one of the best things about working in Rails.

$ rails console
>> ActiveSupport::Inflector.pluralize "project" 
=> "projects"
>> ActiveSupport::Inflector.pluralize "virus"
=> "viri"
>> "pensum".pluralize # Inflector features are mixed into String by default
=>"pensums"

1.2.2.4 Custom MEME Types

Rails supports a standard set of MIME types (/, text/html, text/plain, text/javascript, text/css, text/calendar,text/csv, application/xml, application/rss+xml, application/atom+xml, application/x-yaml, multipart/form-data, application/x-www-form-urlencoded, application/json)

Short name respond_to symbol Aliases and Explanations
text/html :html, :xhtml application/xhtml+xml
text/plain :text, :txt
text/javascript :js application/javascript, application/x-javascript
text/css :css Cascading style sheets
text/calendar :ics iCalendar format for sharing meeting requests and tasks
text/csv :csv Comma-separated values
application/xml :xml text/xml, application/x-xml
application/rss+xml :rss Really Simple Syndication format for web feeds
application/atom+xml :atom Atom Syndication Format for web feeds
application/x-yaml :yaml text/yaml - The human-readable data serialization format
application/x-www-form- urlencoded :url_encoded_form The default content type of HTML forms
multipart/form-data :multipart_form Used for HTML forms that contain files, non-ASCII data, and binary data
application/json :json text/x-json, application/jsonrequest - JavaScript Object Notation

If your application needs to respond to other MIME types, you can register them in the mime_types.rb initializer.

1.2.2.5 Secret Token

Certain types of hacking involve modifying the contents of cookies without the server knowing about it.By digitally signing all cookies sent to the browser, Rails can detect whether they were tampered with. The secret_token.rb initializer contains the secret key base, randomly generated along with your app, which isused to sign cookies.

In Rails 4 , the file is secrets.yml in config/

1.2.2.6 Session Store

As of Rails 4, session cookies are encrypted by default using the new encrypted cookie store. The session- store.rb initializer configures the session store of the application, by setting its session store type and key.
The session cookies are signed using thesecret_key_base set in the secret_token.rb initializer. If you are really paranoid, you can change the secret key in secret_token.rb or run rake secret to generate a new one automatically.

1.2.2.7 Wrap Parameters

The wrap_parameters.rb initializer configures your application to work with JavaScript MVC frameworks, such as Backbone.js out of the box.

When submitting JSON parameters to a controller, Rails will wrap the parameters into a nested hash, with
the controller’s name being set as the key. To illustrate, consider the following JSON:

{ "title": "The Rails 4 Way"}

If a client submitted the above JSON to a controller named ArticlesController, Rails would nest the params hash under the key “article”. This ensures the setting of model attributes from request parameters is consistent with the convention used when submitting from Rails form helpers.

{"title": "The Rails 4 Way", "article" => {"title" :"The Rails 4 Way"}}

1.2.3 Additional Configuration

There are additional options, which you can add in additional initializer files.

1.2.3.1 Log-Level Override

# Force all environments to use the same logger level
# (by default production uses :info, the others :debug)
config.log_level=:debug

1.2.3.2 Schema Dumper

Every time you run tests, Rails dumps the schema of your development database and copies it to the test database using an auto generated schema.rb script. It looks very similar to an Active Record migration script; in fact, it uses the same API.
You might find it necessary to revert to the older style of dumping the schema using SQL, if you’re doing things that are incompatible with the schema dumper code (see the comment).

Use SQL instead of Active Record's schema dumper when creating the

test database.This is necessary if your schema can't be completely

dumped by the schema dumper,for example,if you have constraints

or db-specific column types

config.active_record.schema_format=:sql

The value of the RAILS_ENV environment variable dictates which additional environ-ment settings are loaded

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容