kucaahbe / rspec-html-matchers

Old school have_tag, with_tag(and more) matchers for rspec 3 (Nokogiri powered)
http://rubygems.org/gems/rspec-html-matchers
MIT License
199 stars 90 forks source link

Upgrade rspec version to 3.3 #37

Closed stania1 closed 9 years ago

stania1 commented 9 years ago

http://rspec.info/blog/2015/06/rspec-3-3-has-been-released/

The tests are passing. Rspec 3.3 has pretty cool features such as --bisect - this will allow rspec-html-matchers users to take advantage of those.

kucaahbe commented 9 years ago

Hello @stania1 , there is no need to hardcode minor version of rspec, it will force users to upgrade, which could be not something they want at the moment. ~> '3' already allows users, who want some fresh rspec install, by updating it's version in Gemfile and issuing command bundle update rspec. But thank you for heads up about new rspec features, wasn't aware of them!

stania1 commented 9 years ago

@kucaahbe Right, sure, thanks!