-
Notifications
You must be signed in to change notification settings - Fork 126
/
Gemfile
40 lines (27 loc) · 1.27 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
source "https://rubygems.org"
gemspec
require File.expand_path('lib/pageflow/rails_version', File.dirname(__FILE__))
gem 'rails', Pageflow::RailsVersion.detect
gem 'ammeter', '~> 1.1', require: false
gem 'pageflow-support', path: 'spec/support'
gem 'spring-commands-rspec', group: :development
# Early failure output
gem 'rspec-instafail', '~> 0.4.0', require: false
gem 'bootsnap', require: false
group :development do
gem 'listen'
end
# Required for XML serialization in Active Admin
gem 'activemodel-serializers-xml'
# Make shakapacker available in specs. Host applications that want to
# use shakapacker need to add it to their Gemfile themselves. Requiring
# shakapacker in an engine file (like we normally do) would force all
# host application to install shakapacker.
gem 'shakapacker', '~> 7.0'
# Make tests fail on JS errors
gem 'capybara-chromedriver-logger', git: 'https://github.com/codevise/capybara-chromedriver-logger', branch: 'fix-selenium-4-deprecation', require: false
# See https://github.com/charkost/prosopite/pull/79
gem 'prosopite', git: 'https://github.com/tf/prosopite', branch: 'location-backtrace-cleaner'
# See https://github.com/rack/rackup/issues/22
# Remove once https://github.com/puma/puma/pull/3532 is merged
gem 'rackup', '1.0.0', require: false