-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
47 lines (39 loc) · 809 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
45
46
47
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.2.12'
gem 'mail'
gem 'newrelic_rpm'
gem 'google-analytics-rails'
gem 'bcrypt-ruby'
gem "cancan"
gem "letter_opener", group: :development
gem 'activeadmin'
group :development, :test do
gem 'sqlite3'
gem 'rspec-rails'
gem 'guard-rspec'
gem 'shoulda-matchers'
gem 'capybara'
gem 'guard-spork'
gem 'spork'
gem 'debugger'
end
group :test do
gem 'factory_girl_rails'
gem 'rb-fsevent', :require => false
gem 'growl'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'uglifier', '>= 1.0.3'
gem 'foundation-rails'
gem 'jquery-ui-rails'
end
gem 'haml-rails'
gem 'coffee-rails', '~> 3.2.1'
gem 'jquery-rails'
group :production do
gem 'pg'
end