forked from SandersForPresident/BernieBNB
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Gemfile
83 lines (70 loc) · 1.5 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
source 'https://rubygems.org'
ruby '2.2.3'
gem 'rails', '4.2.7.1'
gem 'pg'
gem 'bower-rails'
gem 'sass-rails'
gem 'font-awesome-sass'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder'
gem 'sdoc', group: :doc
gem 'mailgun-ruby', require: 'mailgun'
gem 'i18n-tasks'
gem 'parser'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'geocoder'
gem 'validates_zipcode'
gem 'figaro'
gem 'validates_timeliness'
gem 'bcrypt'
gem 'draper'
gem 'jquery-ui-rails'
gem 'haml'
gem 'high_voltage'
gem 'orderly'
gem 'acts_as_paranoid', '0.5.0.beta2' # TO GET LATEST RELEASED.
gem 'i18n-spec'
gem 'puma-rails'
group :development do
gem 'web-console'
gem 'better_errors'
gem 'binding_of_caller'
gem 'quiet_assets'
gem 'pry-rails'
gem 'spring'
gem 'spring-commands-rspec'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'faker'
gem 'guard-rspec'
gem 'letter_opener'
gem 'launchy'
gem 'email_spec'
gem 'zonebie'
gem 'timecop'
gem 'database_cleaner'
end
group :test do
gem 'selenium-webdriver'
gem 'capybara'
gem 'simplecov'
gem 'webmock'
end
group :production, :staging do
gem 'airbrake'
gem 'rails_12factor'
end
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
#
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development