Back to Parent

source 'https://rubygems.org'

#Gems used
gem 'sinatra'
gem 'json'
gem 'shotgun'
gem "rake"
gem 'activerecord'
gem 'sinatra-activerecord' # excellent gem that ports ActiveRecord for Sinatra
gem 'activesupport'
gem 'haml'
gem 'slack-ruby-client'
gem 'httparty'

#Gems not used
# gem 'validates_phone_number'
# gem 'contextio'

# to avoid installing postgres use the following command in terminal
# bundle install --without production

group :development, :test do
  gem 'sqlite3'
  gem 'dotenv'
end

group :production do
  gem 'pg'
end
Click to Expand

Content Rating

Is this a good/useful/informative piece of content to include in the project? Have your say!

0