-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
88 lines (66 loc) · 1.71 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
ruby '2.5.9'
source 'https://rubygems.org'
gem 'rails', '~> 4.1'
# https://stackoverflow.com/questions/35893584/nomethoderror-undefined-method-last-comment-after-upgrading-to-rake-11
gem 'rake', '< 11.0'
gem 'rack-proxy'
gem 'mysql2'
gem 'acts_as_list'
gem 'default_value_for'
gem 'haml', '~> 4.0'
gem 'jbuilder'
gem 'simple_form'
gem 'redcarpet'
gem 'gravtastic'
gem 'rest-client'
gem 'devise'
gem 'jquery-rails', '~> 2.1.4'
gem 'jquery-ui-rails', '~> 4.2'
gem 'i18n-js'
gem 'rails-i18n'
gem 'http_accept_language'
gem 'pusher'
gem 'responders'
gem 'sentry-raven'
gem 'hashie'
gem 'json'
# Treetop for the grammars
gem 'treetop'
gem 'mini_racer'
gem 'sass-rails', '~> 4.0'
gem 'coffee-rails', '>= 3.2.1'
gem 'compass-rails', '>= 1.0.0'
gem 'eco', '~> 1.0'
gem 'uglifier', '>= 1.0.3'
gem 'animation'
group :production, :staging do
gem 'puma'
gem 'newrelic_rpm'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'rb-fsevent'
end
group :test, :development do
# gem 'ruby-debug19', :require => 'ruby-debug'
# An effective alternative to ruby-debug; call "binding.pry" instead
# of "debugger"
gem 'pry', '>= 0.9.7'
# rspec-rails needs to be added to the development environment, otherwise
# the spec:* tasks won't be available when using rake.
gem 'rspec-rails', '~> 3.4.2'
gem 'factory_bot_rails'
gem 'launchy'
end
group :test do
gem 'database_cleaner'
gem 'rspec-collection_matchers'
gem 'rspec-its'
gem 'shoulda-matchers'
# Integration / acceptance testing. The webdrivers gem includes drivers for
# Chrome, Firefox and Edge, but we currently use only the Chrome ones.
gem 'capybara'
gem 'capybara-selenium'
gem 'webdrivers', '~> 3.0'
end