-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
44 lines (37 loc) · 887 Bytes
/
Gemfile
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
33
34
35
36
37
38
39
40
41
42
43
44
source 'https://rubygems.org'
gem 'rails', '4.0.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# heroku id is shielded-coast-8367.git
group :development, :test do
gem 'sqlite3'
#gem 'jdbc-sqlite3'
#gem 'activerecord-jdbcsqlite3-adapter', '1.3.0.beta2'
end
group :production do
gem 'pg'
#gem 'jdbc-postgres'
#gem 'activerecord-jdbcpostgresql-adapter', '1.3.0.beta2'
end
gem "resque"
gem 'jquery-rails'
gem 'twilio-ruby'
gem 'figaro'
gem 'google-webfonts'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'redis'
gem 'foreman'
#static assets on heroku
gem 'rails_12factor'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'