forked from codeforamerica/Intersection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
60 lines (50 loc) · 1.04 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
source 'http://rubygems.org'
gem 'rails', '3.2.3'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'bootstrap-sass'
gem 'devise'
gem 'haml-rails'
gem 'gravatar_image_tag'
gem 'jquery-rails'
gem 'rails_admin', :git => 'git://github.com/sferik/rails_admin.git'
gem 'inherited_resources'
gem 'nested_form', :git => 'git://github.com/ryanb/nested_form.git'
gem 'meta_search'
gem 'acts-as-taggable-on'
gem 'ice_cube'
gem 'delayed_job'
gem 'delayed_job_active_record'
gem 'ox'
gem 'faraday'
gem 'faraday_middleware'
gem 'paperclip'
group :development do
gem 'ZenTest'
end
group :development, :test do
gem 'faker'
gem 'nifty-generators'
gem 'rspec-rails'
gem 'simplecov'
gem 'sqlite3'
gem 'spork'
gem 'timecop'
gem 'factory_girl_rails'
end
group :test do
gem 'mocha'
gem 'webmock'
gem 'webrat'
end
group :production do
gem 'pg'
gem 'thin'
gem 'aws-s3'
gem 'aws-sdk'
end