Skip to content
This repository has been archived by the owner on Nov 27, 2020. It is now read-only.

Commit

Permalink
Test Capybara 2 and 3
Browse files Browse the repository at this point in the history
  • Loading branch information
twalpole committed Apr 6, 2018
1 parent 17db174 commit f822d3a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ source 'https://rubygems.org'

gemspec

gem 'puma'

platforms :rbx do
gem 'rubysl'
gem 'racc'
Expand Down
3 changes: 2 additions & 1 deletion gemfiles/Gemfile.1_9_3
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 3 additions & 1 deletion gemfiles/Gemfile.2_0_0
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
source 'https://rubygems.org'

gemspec :path => '..'
gemspec path: '..'

gem 'capybara', '~>2.1'

platforms :rbx do
gem 'rubysl'
Expand Down
11 changes: 11 additions & 0 deletions gemfiles/Gemfile.capy2
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
source 'https://rubygems.org'

gemspec path: '..'

gem 'capybara', '~>2.1'

platforms :rbx do
gem 'rubysl'
gem 'racc'
gem 'json'
end

5 comments on commit f822d3a

@aried3r
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey! Is there anything I can do to help get a new version with capybara 3 support out? :)

@twalpole
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@aried3r A new version will probably go out by end of week, if you need it sooner just use the master branch

@aried3r
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! I'm in no hurry, just wanted to check if I could help out in some way (admittedly, to have it sooner, heh).

@afn
Copy link
Contributor

@afn afn commented on f822d3a Apr 25, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any update on a release date for this? Thanks!

@twalpole
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1.18.0 released with this.

Please sign in to comment.