This repository was archived by the owner on Jan 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
77 lines (58 loc) · 1.28 KB
/
Gemfile
File metadata and controls
77 lines (58 loc) · 1.28 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
source 'https://rubygems.org'
ruby "2.0.0"
gem "Ascii85", "~> 1.0.2"
gem 'rails', '3.2.12'
gem 'mongoid', '~> 3.0.0'
gem 'mongoid_slug'
gem 'multi_json'
gem 'unicorn'
gem 'foreman'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jquery-turbolinks'
# we'll see if this is cooler than pjax
gem 'cache_digests'
gem 'dalli'
gem 'simple_form'
gem 'rmagick'
gem 'carrierwave'
gem 'nokogiri'
gem 'kaminari'
gem 'prawn', '~> 1.0.0.rc2'
gem 'devise'
group :production do
gem 'newrelic_rpm'
end
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'compass-rails'
gem 'coffee-rails', '~> 3.2.1'
gem 'bootstrap-sass', '~> 2.3.1.0'
gem 'font-awesome-sass-rails'
gem 'uglifier', '>= 1.0.3'
gem 'therubyracer', :platforms => :ruby
end
group :test, :development do
gem 'spork'
gem 'rspec-rails', '~> 2.12.2'
gem 'mongoid-rspec'
gem 'capybara'
gem 'factory_girl_rails'
gem 'guard-rspec'
gem 'guard-spork'
gem 'guard-pow'
gem 'guard-livereload'
gem 'rack-livereload'
# heroku doesn't run with these
gem 'rb-fsevent', require: false if RUBY_PLATFORM =~ /darwin/i
gem 'growl', require: false if RUBY_PLATFORM =~ /darwin/i
end
group :test do
gem 'email_spec'
gem 'database_cleaner'
end
group :development do
gem 'rack-mini-profiler'
gem 'pry-rails'
gem 'capistrano'
end