rails -> Rails [ci skip]

This commit is contained in:
Prathamesh Sonpatki 2013-05-09 17:27:08 +05:30
parent cd3177d315
commit 39b8b8fdbf
5 changed files with 5 additions and 5 deletions

@ -3,7 +3,7 @@
module ActionDispatch
module Journey
# The Formatter class is used for formatting URLs. For example, parameters
# passed to +url_for+ in rails will eventually call Formatter#generate.
# passed to +url_for+ in Rails will eventually call Formatter#generate.
class Formatter # :nodoc:
attr_reader :routes

@ -4,7 +4,7 @@
module ActiveSupport
# KeyGenerator is a simple wrapper around OpenSSL's implementation of PBKDF2
# It can be used to derive a number of keys for various purposes from a given secret.
# This lets rails applications have a single secure secret, but avoid reusing that
# This lets Rails applications have a single secure secret, but avoid reusing that
# key in multiple incompatible contexts.
class KeyGenerator
def initialize(secret, options = {})

@ -1,5 +1,5 @@
module ActiveSupport
# lazy_load_hooks allows rails to lazily load a lot of components and thus
# lazy_load_hooks allows Rails to lazily load a lot of components and thus
# making the app boot faster. Because of this feature now there is no need to
# require <tt>ActiveRecord::Base</tt> at boot time purely to apply
# configuration. Instead a hook is registered that applies configuration once

@ -447,7 +447,7 @@ def load_tasks(app=self)
self
end
# Load rails generators and invoke the registered hooks.
# Load Rails generators and invoke the registered hooks.
# Check <tt>Rails::Railtie.generators</tt> for more info.
def load_generators(app=self)
require "rails/generators"

@ -27,7 +27,7 @@
puts <<-EOT
Usage: rails COMMAND [ARGS]
The common rails commands available for engines are:
The common Rails commands available for engines are:
generate Generate new code (short-cut alias: "g")
destroy Undo code generated with "generate" (short-cut alias: "d")