-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
67 lines (55 loc) · 1.12 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
source 'http://rubygems.org'
gem "rails", "3.1.1"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', " ~> 3.1.4"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
end
gem 'jquery-rails'
gem 'decent_exposure'
gem 'simple_form'
gem 'css3buttons'
gem 'cancan'
gem 'omniauth'
gem 'fog'
gem 'carrierwave'
gem 'ancestry'
gem 'paper_trail'
gem 'acts_as_list'
gem 'redcarpet'
#gem 'rdiscount'
gem 'kaminari'
# Backend stuff
gem 'inherited_resources'
gem 'has_scope'
gem 'prawn'
gem 'prawnto'
gem 'nokogiri', '~> 1.4.2'
gem 'exception_notification', :require => 'exception_notifier'
gem 'newrelic_rpm'
#gem 'unicorn'
group :production do
gem 'pg'
gem 'thin'
end
group :development do
gem 'capistrano'
gem 'rvm-capistrano'
gem 'thin'
gem 'mysql2'
end
group :test do
gem 'sqlite3'
gem 'oink'
gem 'database_cleaner'
gem 'turn', :require => false
gem "rspec-rails", ">= 2.6.1"
gem "factory_girl_rails", ">= 1.1.0"
gem "cucumber-rails", ">= 1.0.2"
gem "capybara", ">= 1.0.1"
gem "spork", "> 0.9.0.rc"
gem "guard-spork"
gem "guard-cucumber"
end