forked from Spokenvote/spokenvote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
78 lines (67 loc) · 1.34 KB
/
Gemfile
File metadata and controls
78 lines (67 loc) · 1.34 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
source 'https://rubygems.org'
gem 'rails', '3.2.12'
# Infrastructure
# gem 'heroku'
gem 'devise'
gem 'pg'
gem 'thin'
gem 'dalli'
gem 'rack-cache'
# Javascript
gem 'jquery-rails'
gem 'jquery-tokeninput-rails'
gem 'select2-rails'
gem 'backbone-on-rails'
# UI/Forms
gem 'nested_form'
gem 'haml-rails'
gem 'simple_form'
gem 'compass'
gem 'compass-rails'
gem 'compass_twitter_bootstrap'
gem 'activeadmin'
# Authentication
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
# Other
gem 'ancestry'
gem 'version_fu'
gem 'activerecord-reputation-system', require: 'reputation_system'
gem 'rabl'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.5'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'handlebars_assets'
gem 'angularjs-rails'
gem "angular-rails"
end
group :development do
gem 'taps', :require => false
gem 'hirb'
gem 'annotate'
gem 'debugger'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
end
group :development, :test do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'faker'
gem 'populator'
gem 'rspec'
gem 'spork'
gem 'shoulda-matchers'
end
group :test do
gem 'capybara'
gem 'database_cleaner'
end
group :production, :staging do
gem 'newrelic_rpm', '3.5.5.38'
gem "airbrake"
end