forked from Xelgen/awesomebits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
66 lines (60 loc) · 1.36 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
source 'http://rubygems.org'
gem 'rails', '3.2.16'
# 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 'country_select'
gem 'pg', '~> 0.13.2'
gem 'texticle', '~> 2.0', :require => 'texticle/rails'
gem 'jquery-rails'
gem 'clearance', '~> 0.16.2'
gem 'thin'
gem 'sass'
gem 'high_voltage'
gem 'paperclip', '~> 3.0.3'
gem 'fog'
gem 'formtastic'
gem 'flutie'
gem 'bourbon', '~> 1.4.0'
gem 'copycopter_client'
gem "simple_form", :git => "https://github.com/plataformatec/simple_form.git"
gem 'nokogiri'
gem "pry"
gem "pry-nav"
gem "pry-stack_explorer"
gem "will_paginate", "~> 3.0.3"
gem "friendly_id", "~> 4.0.9"
gem 'airbrake'
gem 'redcarpet'
gem 'honeypot-captcha'
group :development, :test do
gem "rspec-rails"
gem "ruby-debug19"
gem "sham_rack"
gem "tddium"
gem "evergreen", :require => "evergreen/rails"
end
group :test do
gem "turnip"
gem "capybara"
gem "database_cleaner"
gem 'capybara-webkit', :git => "https://github.com/thoughtbot/capybara-webkit.git"
#gem "capybara-webkit", "0.7.1"
gem "factory_girl_rails"
gem "bourne"
gem "timecop"
gem "shoulda-matchers"
gem "launchy"
gem "email_spec"
gem "database_cleaner"
gem "sham_rack"
end
group :staging, :production do
gem 'newrelic_rpm'
gem 'sprockets-redirect'
gem 'unicorn'
end