-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (38 loc) · 901 Bytes
/
Gemfile
File metadata and controls
45 lines (38 loc) · 901 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
33
34
35
36
37
38
39
40
41
42
43
44
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.2.11'
gem 'active_attr'
gem 'devise'
gem 'encrypted-cookie-store'
gem 'high_voltage'
gem 'jquery-rails'
gem 'omniauth', '~> 1.1.0'
gem 'omniauth-twitter'
gem 'prawn'
gem 'prawn-fillform'
gem 'rails_admin', '~> 0.0.5'
gem 'simple_form'
gem 'stateface-rails', :git => "git://github.com/jkriss/stateface-rails.git"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'less-rails', '~> 2.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'therubyracer'
gem 'twitter-bootstrap-rails'
end
group :test, :development do
gem 'rspec-rails', '~> 2.0'
gem 'sqlite3'
gem 'faker'
gem 'factory_girl_rails', '~> 4.0'
end
group :test do
gem 'simplecov', :require => false
gem "shoulda-matchers"
end
group :production do
gem 'pg', '0.14.0'
gem 'puma'
end