-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
62 lines (58 loc) · 1.3 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
source 'https://bundler.rubygems.org'
gem 'rails', '~> 5.2'
gem 'airbrake'
gem 'axlsx', '3.0.0.pre'
gem 'axlsx_rails'
gem 'bootsnap', require: false
gem 'bootstrap_form'
gem 'bootstrap-modal-rails'
gem 'bootstrap-sass'
gem 'capistrano-ext', require: false
gem 'capistrano-unicorn', require: false
gem 'coffee-rails'
gem 'devise'
gem 'flag_icon_css_rails'
gem 'handlers-js'
gem 'httparty' # only needed for googling travel times
gem 'icalendar'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'kaminari'
gem 'letter_opener_web'
gem 'lograge'
gem 'newrelic_rpm'
gem 'pg'
gem 'prawn'
gem 'record_tag_helper'
gem 'redis'
gem 'sassc-rails'
gem 'syslogger'
gem 'uglifier'
gem 'underscore-rails'
gem 'unicorn'
gem 'unicorn-worker-killer'
group :development do
#gem 'better_errors'
#gem 'binding_of_caller' # better_errors wants this
gem 'listen'
gem 'guard-cucumber'
gem 'guard-rspec'
gem 'guard-spring'
gem 'pry-nav'
gem 'spring'
gem 'spring-commands-cucumber'
gem 'spring-commands-rspec'
end
group :test do
gem 'capybara'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'email_spec'
gem 'factory_bot_rails'
gem 'poltergeist'
gem 'puma' # only for cucumber/capybara
gem 'rails-controller-testing'
gem 'rspec-rails'
gem 'rspec-collection_matchers'
gem 'shoulda-matchers'
end