Initial
Showing
... | @@ -4,7 +4,7 @@ source 'http://rubygems.org' | ... | @@ -4,7 +4,7 @@ source 'http://rubygems.org' |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
gem 'rails', '4.2.5.1' | gem 'rails', '4.2.5.1' | ||
# Use sqlite3 as the database for Active Record | # Use sqlite3 as the database for Active Record | ||
gem 'sqlite3' | |||
# Use SCSS for stylesheets | # Use SCSS for stylesheets | ||
gem 'sass-rails', '~> 5.0' | gem 'sass-rails', '~> 5.0' | ||
# Use Uglifier as compressor for JavaScript assets | # Use Uglifier as compressor for JavaScript assets | ||
... | @@ -39,18 +39,22 @@ gem 'sdoc', '~> 0.4.0', group: :doc | ... | @@ -39,18 +39,22 @@ gem 'sdoc', '~> 0.4.0', group: :doc |
group :development, :test do | group :development, :test do | ||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | # Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
gem 'byebug' | gem 'byebug' | ||
gem 'sqlite3' | |||
gem 'better_errors' | gem 'better_errors' | ||
end | end | ||
group :development do | group :development do | ||
# Access an IRB console on exception pages or by using <%= console %> in views | # Access an IRB console on exception pages or by using <%= console %> in views | ||
gem 'web-console', '~> 2.0' | gem 'web-console', '~> 2.0' | ||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | ||
gem 'spring' | gem 'spring' | ||
end | end | ||
group :production do | |||
gem 'pg' | |||
gem 'rails_12factor' #use only for Heroku | |||
end | |||
gem 'simple_form' | gem 'simple_form' | ||
gem 'devise' | gem 'devise' | ||
... | ... |
Please register or sign in to comment