-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
121 lines (100 loc) · 2.25 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
source 'http://rubygems.org'
gem 'dotenv-rails', :groups => [:development, :test]
ruby '1.9.3'
gem 'rails', '~> 3.2.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
gem 'squeel'
gem 'haml-rails'
gem 'ruby_parser'
gem 'hpricot'
gem 'escape_utils'
gem 'formtastic'
gem 'cocoon'
gem 'nested_form'
gem 'memoist'
gem 'make_resourceful'
gem 'jbuilder'
gem 'strong_parameters'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-google'
gem 'omniauth-steam'
gem 'omniauth-openid'
gem 'omniauth-yahoo'
gem 'cancan'
gem 'paper_trail'
gem 'crack'
gem 'httparty'
gem 'nokogiri'
gem 'resque', :require => 'resque/server'
gem 'god'
gem 'json'
gem 'RedCloth'
gem 'jquery-rails'
gem 'will_paginate'
gem 'acts_as_tree'
gem 'dynamic_form'
gem 'virtus'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'therubyracer'
#group :production do
# gem 'therubyracer-heroku', '0.8.1.pre3'
#end
# Use unicorn as the web server
# gem 'unicorn'
gem 'thin'
gem 'passenger', :group => :production
group :development do
gem 'bullet'
gem 'pry-rails'
gem 'capistrano', '~> 3.0', :require => false
gem 'capistrano-rails', '~> 1.1', :require => false
gem 'capistrano-bundler', '~> 1.1', :require => false
gem 'capistrano-chruby', :github => 'capistrano/chruby', :require => false
end
#START:dev_and_test_gems
group :test, :development do
# Pretty printed test output
gem "turn", "~> 0.9.6", :require => false
gem "simplecov"
#START_HIGHLIGHT
gem "database_cleaner"
gem "selenium-client"
gem "selenium-webdriver"
#END_HIGHLIGHT
gem "factory_girl_rails"
gem "rspec-rails"
gem "capybara"
gem "cucumber-rails", :require => false
gem "webrat"
gem "spork"
gem 'timecop'
gem "shoulda-matchers"
# Guard Configuration
gem "launchy"
#gem "rb-fsevent", :require => false if RUBY_PLATFORM =~ /darwin/i
gem "rb-fsevent"
gem "guard-bundler"
gem "guard-test"
gem "guard-cucumber"
gem "guard-rspec"
gem "guard-haml"
gem "guard-livereload"
gem "guard-spork"
gem "growl"
# Deploy with Heroku
#gem "heroku"
#gem "taps"
# To use debugger
#gem 'ruby-debug'
gem 'debugger'
gem "ruby-prof"
end