-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
41 lines (40 loc) · 1.09 KB
/
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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.0'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
gem 'activerecord-tableless'
gem 'bootstrap-sass'
gem 'figaro'
gem 'gibbon'
gem 'high_voltage'
gem "paperclip", "~> 3.0"
gem 'simple_form', '>= 3.0.0.rc'
gem 'aws-sdk'
gem 'devise'
gem 'unicorn'
gem 'unicorn-rails'
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
gem "nifty-generators", :group => :development
gem 'acts-as-taggable-on'
gem 'rails_log_stdout', github: 'heroku/rails_log_stdout'
gem 'rails3_serve_static_assets', github: 'heroku/rails3_serve_static_assets'
gem 'rails3-jquery-autocomplete', git: 'https://github.com/francisd/rails3-jquery-autocomplete'
gem 'texticle', require: 'texticle/rails'
gem 'will_paginate', '~> 3.0'
group :development do
gem 'better_errors'
gem 'binding_of_caller', :platforms=>[:mri_19, :rbx]
gem 'hub', :require=>nil
gem 'quiet_assets'
gem 'sqlite3'
end
group :production do
gem 'pg'
gem 'rails_on_heroku'
gem 'thin'
end