diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2014-05-17 14:08:58 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2014-05-17 14:08:58 +0530 |
commit | 8193c49a9318de94c89dc1e97ccb21329cc4402c (patch) | |
tree | ffcd911273e97d91c56cb8b3a2e81ffb1c86eece | |
parent | b470d85f5bfef208dd9e84ee9552ca76af3dde7d (diff) | |
parent | 46fc89fababb1c533921d8ca330839b0f8cef1b2 (diff) | |
download | rails-8193c49a9318de94c89dc1e97ccb21329cc4402c.tar.gz rails-8193c49a9318de94c89dc1e97ccb21329cc4402c.tar.bz2 rails-8193c49a9318de94c89dc1e97ccb21329cc4402c.zip |
Merge pull request #15145 from ShunsukeAida/capitalization
fixed capitalizations [ci skip]
-rw-r--r-- | guides/code/getting_started/Gemfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/code/getting_started/Gemfile b/guides/code/getting_started/Gemfile index c3d7e96c4d..091a87aa4c 100644 --- a/guides/code/getting_started/Gemfile +++ b/guides/code/getting_started/Gemfile @@ -3,7 +3,7 @@ source 'https://rubygems.org' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '4.1.0' -# Use sqlite3 as the database for Active Record +# Use SQLite3 as the database for Active Record gem 'sqlite3' # Use SCSS for stylesheets gem 'sass-rails', '~> 4.0.1' @@ -14,7 +14,7 @@ gem 'coffee-rails', '~> 4.0.0' # See https://github.com/sstephenson/execjs#readme for more supported runtimes # gem 'therubyracer', platforms: :ruby -# Use jquery as the JavaScript library +# Use jQuery as the JavaScript library gem 'jquery-rails' # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks gem 'turbolinks' @@ -29,7 +29,7 @@ gem 'spring', group: :development # Use ActiveModel has_secure_password # gem 'bcrypt', '~> 3.1.7' -# Use unicorn as the app server +# Use Unicorn as the app server # gem 'unicorn' # Use Capistrano for deployment |