updates to make this deployable
Showing
... | @@ -11,8 +11,14 @@ gem 'sinatra-activerecord' | ... | @@ -11,8 +11,14 @@ gem 'sinatra-activerecord' |
gem 'puma' | gem 'puma' | ||
gem 'tux' | gem 'tux' | ||
# These gems are only installed when RACK_ENV is either `development` or `test` | |||
group :development, :test do | group :development, :test do | ||
gem 'pry' | gem 'pry' | ||
gem 'shotgun' | gem 'shotgun' | ||
gem 'sqlite3' | gem 'sqlite3' | ||
end | end | ||
# These gems are only installed when RACK_ENV is `production` | |||
group :production do | |||
gem 'pg' | |||
end |
Please register or sign in to comment