-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGemfile
83 lines (74 loc) · 1.7 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.5.1'
gem 'rails', '~> 4.2.0'
gem 'pg', '0.18.2'
gem 'unicorn'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'sass-rails'
gem "compass-rails", github: "Compass/compass-rails", branch: "master"
gem 'coffee-rails'
gem 'uglifier', '>= 1.3.0'
gem 'bootstrap-sass-rails', '2.3.1.1'
gem 'routing-filter'
gem 'xmlrpc' # required for gem dependency missing somewhere
gem 'acts-as-taggable-on', '~> 5.0.0'
gem 'decent_exposure', '~> 2.3.2'
gem 'devise', '~> 4.5.0'
gem 'omniauth-facebook'
gem 'rdiscount', '1.6.8'
gem 'will_paginate'
gem 'nokogiri', '1.8.5'
gem 'ransack', '~> 1.7'
gem 'geocoder'
gem 'haml', '4.0.7'
gem 'simple_form'
gem 'carrierwave'
gem 'fog'
gem 'fog-aws'
gem 'rmagick'
gem "font-awesome-rails"
gem 'jbuilder'
gem 'koala', '~> 3.0.0'
gem 'rack-cors'
gem 'httparty'
gem 'google-cloud-firestore'
group :production do
gem 'newrelic_rpm', '~> 3.13.1'
gem 'rails_12factor'
gem 'bugsnag', '~> 2.8.12'
end
gem 'byebug'
group :development, :test do
gem 'factory_bot_rails'
end
group :development do
gem 'rb-readline'
gem 'gibbon'
gem 'hirb'
gem 'spring', '1.7.1'
gem 'spring-commands-rspec'
gem 'spring-commands-cucumber'
end
group :test do
gem 'puma'
gem 'i18n-tasks', '~> 0.8.7'
gem 'ruby_cowsay' # for i18n_spec.rb
gem 'lolcat' # for i18n_spec.rb
gem 'rspec-rails'
gem 'rspec-collection_matchers', '~> 1.1.2'
gem 'cucumber-rails', require: false
gem 'vcr'
gem 'webmock'
gem 'launchy', '~> 2.4.3'
gem 'jasmine-rails'
gem 'shoulda-matchers', '3.0.1'
gem 'pickle', '~> 0.5.1'
gem 'database_cleaner'
gem 'capybara'
gem 'webdrivers'
gem 'faker', '~> 1.5.0'
gem 'email_spec', '~> 1.6.0'
gem 'rb-fsevent', '~> 0.9.6'
gem 'fuubar'
end