Test Capybara 2 and 3

This commit is contained in:
Thomas Walpole 2018-04-05 21:05:47 -07:00
parent 17db1740ea
commit f822d3acbe
5 changed files with 20 additions and 2 deletions

View File

@ -40,6 +40,8 @@ matrix:
gemfile: gemfiles/Gemfile.1_9_3
- rvm: 2.0.0
gemfile: gemfiles/Gemfile.2_0_0
- rvm: 2.5.0
gemfile: gemfiles/Gemfile.capy2
- rvm: 2.2.9
gemfile: Gemfile
env: PHANTOMJS=$PWD/travis-phantomjs2/phantomjs

View File

@ -2,6 +2,8 @@ source 'https://rubygems.org'
gemspec
gem 'puma'
platforms :rbx do
gem 'rubysl'
gem 'racc'

View File

@ -1,7 +1,8 @@
source 'https://rubygems.org'
gemspec :path => '..'
gemspec path: '..'
gem 'capybara', '~>2.1'
gem 'mime-types', '< 3.0'
gem 'addressable', '< 2.5.0' # 2.5 requires public_suffix which requires ruby 2.0

View File

@ -1,6 +1,8 @@
source 'https://rubygems.org'
gemspec :path => '..'
gemspec path: '..'
gem 'capybara', '~>2.1'
platforms :rbx do
gem 'rubysl'

11
gemfiles/Gemfile.capy2 Normal file
View File

@ -0,0 +1,11 @@
source 'https://rubygems.org'
gemspec path: '..'
gem 'capybara', '~>2.1'
platforms :rbx do
gem 'rubysl'
gem 'racc'
gem 'json'
end