-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
61 lines (52 loc) · 997 Bytes
/
Gemfile
File metadata and controls
61 lines (52 loc) · 997 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails', '~> 4.1'
gem 'airbrake'
gem 'andand'
gem 'dalli'
gem 'domainatrix'
gem 'haml-rails'
gem 'harvested', :git => 'git://github.com/tpalmer/harvested.git'
gem 'jquery-rails'
gem 'newrelic_rpm'
gem 'omniauth-harvest'
gem 'rails_config'
gem 'rake'
gem 'rspec'
gem 'rspec-rails'
gem 'sass-rails'
gem 'unicorn'
gem 'compass-rails'
gem 'bourbon'
gem 'coffee-rails'
gem 'uglifier'
group :production do
gem 'pg'
gem 'rails_12factor'
end
group :development, :test do
gem 'debugger', '~> 1.6'
gem 'foreman'
gem 'sqlite3'
group :guard do
gem 'guard-cucumber'
gem 'guard-rspec'
gem 'guard-annotate'
group :darwin do
gem 'growl'
gem 'rb-fsevent'
end
end
end
group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'fakeweb'
#gem 'fabricator'
gem 'fuubar'
gem 'simplecov'
#gem 'timecop'
gem 'turnip'
gem 'vcr', '~> 2.9.0' # 3 will remove fakeweb support
end