diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-07-12 03:58:17 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-12 03:58:17 -0300 |
commit | 3df3d80ade705dd096ec481845ff0fc2d70427b0 (patch) | |
tree | fbbc8c3ad540d0ff60ca09d2caca7a3149263759 /railties/lib | |
parent | 2afd5e78b842a84e401a030bc747bf60879863e2 (diff) | |
parent | d8575289a2d278ae8866cb7cddf38d8f2e9dc010 (diff) | |
download | rails-3df3d80ade705dd096ec481845ff0fc2d70427b0.tar.gz rails-3df3d80ade705dd096ec481845ff0fc2d70427b0.tar.bz2 rails-3df3d80ade705dd096ec481845ff0fc2d70427b0.zip |
Merge pull request #25794 from mechanicles/rails-to-Rails
rails -> Rails [ci skip]
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails.rb | 6 | ||||
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/railties/lib/rails.rb b/railties/lib/rails.rb index fe789f3c2a..c024fb6641 100644 --- a/railties/lib/rails.rb +++ b/railties/lib/rails.rb @@ -52,7 +52,7 @@ module Rails end end - # Returns a Pathname object of the current rails project, + # Returns a Pathname object of the current Rails project, # otherwise it returns nil if there is no project: # # Rails.root @@ -77,7 +77,7 @@ module Rails @_env = ActiveSupport::StringInquirer.new(environment) end - # Returns all rails groups for loading based on: + # Returns all Rails groups for loading based on: # # * The Rails environment; # * The environment variable RAILS_GROUPS; @@ -100,7 +100,7 @@ module Rails end # Returns a Pathname object of the public folder of the current - # rails project, otherwise it returns nil if there is no project: + # Rails project, otherwise it returns nil if there is no project: # # Rails.public_path # # => #<Pathname:/Users/someuser/some/path/project/public> diff --git a/railties/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml b/railties/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml index bd5c0b10f6..145cfb7f74 100644 --- a/railties/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml +++ b/railties/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml @@ -17,7 +17,7 @@ default: &default adapter: postgresql encoding: unicode - # For details on connection pooling, see rails configuration guide + # For details on connection pooling, see Rails configuration guide # http://guides.rubyonrails.org/configuring.html#database-pooling pool: <%%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> |