aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.textile
Commit message (Collapse)AuthorAgeFilesLines
* Fixed validation issues in the "Configuring Rails Applications" guide [ci skip]Aldo "xoen" Giambelluca2012-09-021-1/+1
| | | | erb tag wasn't closed well
* Update guide/release note about AR::SessionStorePrem Sichanugrist2012-08-241-9/+1
|
* Deprecate config.threadsafe!José Valim2012-08-211-6/+6
|
* Get rid of config.preload_frameworks in favor of config.eager_load_namespacesJosé Valim2012-08-211-5/+1
| | | | | | | The new option allows any Ruby namespace to be registered and set up for eager load. We are effectively exposing the structure existing in Rails since v3.0 for all developers in order to make their applications thread-safe and CoW friendly.
* Remove allow_concurrency as a flagJosé Valim2012-08-211-4/+2
| | | | | | | | | | | | | | | | The flag was mainly used to add a Rack::Lock middleware to the stack, but the only scenario the lock is desired is in development. If you are deploying on a not-threaded server, the Rack::Lock does not provide any benefit since you don't have concurrent accesses. On the other hand, if you are on a threaded server, you don't want the lock, since it defeats the purpose of using a threaded server. If there is someone out there, running on a thread server and does want a lock, it can be added to your environment as easy as: `use Rack::Lock`
* Added X-Content-Type-Options to the header defaults.Jim Jones2012-08-181-1/+1
| | | | With a value of "nosniff", this prevents Internet Explorer from MIME-sniffing a response away from the declared content-type.
* Add doc for config.action_dispatch.default_headersGuillermo Iguaran2012-08-101-0/+6
| | | | | Add documentation for config.action_dispatch.default_headers to Rails Configuring guide.
* fixup guides in light of :dependent changesJon Leighton2012-08-101-2/+0
|
* copy edits [ci skip]Vijay Dev2012-08-041-1/+1
|
* Audit the usage of the word "JavaScript"Prem Sichanugrist2012-08-021-1/+1
|
* tiny mistake in descriptiondm1try2012-07-221-1/+1
|
* Improve docs, changelog and release notes for Action Mailer default_options=Carlos Antonio da Silva2012-07-061-2/+2
| | | | [ci skip]
* Introduce config.action_mailer.default_from=Robert Pankowecki2012-07-031-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Allows to easily set :from, :replay_to, etc. options in config/application.rb using simple syntax: config.action_mailer.default_options = {from:"no-replay@example.org"} This was not possible using #default method because config.action_mailer.default(from: "no-replay@example.org") is interpreated as reader method and just returns nil. It would not call ActionMailer::Base.default method. The only way of calling this method from config/application.rb was to use the direct syntax which looks ugly in my opinion: config.assets.enabled = false config.assets.version = '1.0' config.encoding = "utf-8" config.action_mailer.default_url_options= { host:"example.org", protocol:"https" } ActionMailer::Base.default(from: "no-replay@example.org")
* clarified how file naming affects load order of initializersRory O’Kane2012-05-221-1/+1
|
* code-format italicized 'production' env [ci skip]Mark Rushakoff2012-05-141-1/+1
|
* Update guides/source/configuring.textileEgor Homakov2012-05-111-1/+1
|
* Update guides/source/configuring.textileEgor Homakov2012-05-111-1/+1
|
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-05-081-5/+5
|\
| * are ran -> are runMark Rushakoff2012-05-061-5/+5
| | | | | | | | The former is grammatically incorrect.
* | Merge pull request #6153 from carlosantoniodasilva/queue-consumerJosé Valim2012-05-041-11/+15
|\ \ | |/ |/| Configurable queue consumer
| * Add some docs and changelog entryCarlos Antonio da Silva2012-05-041-11/+15
| |
* | Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-05-041-8/+0
|\ \ | |/ |/|
| * Remove vestiges of the http_only! config from configuring guideCarlos Antonio da Silva2012-05-031-8/+0
| |
* | cache_store has an extra option of :null_store.Teng Siong Ong2012-05-031-1/+1
|/
* Lazy load `default_form_builder` if it's passed as a stringPiotr Sarnacki2012-04-281-1/+1
| | | | closes #3341
* update docs - disabling prepared statements is not connected to managing ↵Vijay Dev2012-04-281-1/+2
| | | | connections externally [ci skip]
* Add to guides info how to disable prepared statementsIvan Evtukhovich2012-04-191-0/+7
|
* Make controller namespace partial prefix optionalGrant Hutchins2012-03-281-2/+9
| | | | | | | config.action_view.prefix_partial_path_with_controller_namespace This allows you to choose to render @post using /posts/_post.erb instead of /admin/posts/_post.erb inside Admin::PostsController.
* config.action_view.embed_authenticity_token_in_remote_forms is true by defaultPiotr Sarnacki2012-03-281-1/+1
| | | | | | | Changed default value for `config.action_view.embed_authenticity_token_in_remote_forms` to `false`. This change breaks remote forms that need to work also without javascript, so if you need such behavior, you can either set it to `true` or explicitly pass `:authenticity_token => true` in form options
* Added config.action_view.embed_authenticity_token_in_remote_formsPiotr Sarnacki2012-03-281-0/+2
| | | | | | | | | | | | There is a regression introduced in 16ee611fa, which breaks remote forms that should also work without javascript. This commit introduces config option that allows to configure this behavior defaulting to the old behavior (ie. include authenticity token in remote forms by default) Conflicts: actionpack/CHANGELOG.md
* Update the guides and CHANGELOGRafael Mendonça França2012-03-171-2/+2
|
* moves the guides up to the root directoryXavier Noria2012-03-171-0/+762