forked from qrohlf/hackathon-starter-sinatra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (30 loc) · 867 Bytes
/
Copy pathGemfile
File metadata and controls
32 lines (30 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
ruby "2.1.1"
source 'https://rubygems.org'
gem 'sinatra'
gem 'haml'
gem 'sinatra-contrib', require: 'sinatra/config_file'
gem "activerecord"
gem "sinatra-activerecord", require: 'sinatra/activerecord'
gem 'tux'
gem 'rake'
gem 'dotenv'
gem 'squeel'
gem 'json'
gem 'require_all'
gem 'activesupport', require: ['active_support', 'active_support/core_ext']
gem 'rack-flash3', require: 'rack-flash'
gem "sinatra-flash", require: 'sinatra/flash'
gem 'bcrypt'
gem 'bcrypt-ruby' #legacy
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
gem 'redcarpet', require: 'redcarpet/compat' #markdown rendering
gem 'mail'
gem 'premailer' #for inlining email styles
gem 'nokogiri' #premailer wants this
group :development do
gem "sqlite3"
gem "shotgun"
end
group :production do
gem "pg" # Needed for postgresql on Heroku
end