-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
44 lines (37 loc) · 735 Bytes
/
Gemfile
File metadata and controls
44 lines (37 loc) · 735 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.14'
gem 'haml'
gem 'haml-rails'
gem 'devise', '2.0.4'
gem 'uuid'
gem 'acts-as-taggable-on'
gem 'twitter-text'
gem 'jquery-rails'
gem 'roadie'
gem 'mail_view', :git => 'https://github.com/37signals/mail_view.git'
gem 'kaminari'
gem 'pry-rails'
gem 'dotenv'
gem 'prawn', '0.12.0'
gem 'rollbar'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
group :development, :test do
gem 'sqlite3'
gem 'jazz_hands'
gem 'rspec-rails'
gem 'guard-test'
gem 'timecop'
gem 'factory_girl'
gem 'capybara'
gem 'database_cleaner'
gem 'capybara-email'
end
group :production do
gem 'pg'
end
gem 'unicorn'