trrying heroku out
Showing
... | @@ -4,7 +4,10 @@ source 'https://rubygems.org' | ... | @@ -4,7 +4,10 @@ source 'https://rubygems.org' |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
gem 'rails', '~> 5.0.0' | gem 'rails', '~> 5.0.0' | ||
# Use sqlite3 as the database for Active Record | # Use sqlite3 as the database for Active Record | ||
gem 'sqlite3' | group :development do | ||
gem 'sqlite3' | |||
end | |||
# Use Puma as the app server | # Use Puma as the app server | ||
gem 'puma', '~> 3.0' | gem 'puma', '~> 3.0' | ||
# Use SCSS for stylesheets | # Use SCSS for stylesheets | ||
... | @@ -30,6 +33,13 @@ gem 'jbuilder', '~> 2.5' | ... | @@ -30,6 +33,13 @@ gem 'jbuilder', '~> 2.5' |
# Use Capistrano for deployment | # Use Capistrano for deployment | ||
# gem 'capistrano-rails', group: :development | # gem 'capistrano-rails', group: :development | ||
gem 'simple_form' | |||
gem 'devise' | |||
group :production do | |||
gem 'pg' | |||
end | |||
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', platform: :mri | gem 'byebug', platform: :mri | ||
... | @@ -46,6 +56,3 @@ end | ... | @@ -46,6 +56,3 @@ end |
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | ||
gem 'simple_form' | |||
gem 'devise' |
Please register or sign in to comment