drugpl / bbq

Object oriented acceptance testing using personas.
MIT License
92 stars 9 forks source link

Updated Capybara version to 1.1.1 in bbq.gemspec #15

Closed jdudek closed 13 years ago

jdudek commented 13 years ago

It'd be nice to allow running bbq with current version of Capybara, which is 1.1.1. (1.1.0 had some problems with rack-test, so it's better to avoid it).

I'm not sure if we can allow both ~> 1.0.0 and ~> 1.1.0 in .gemspec, so I propose updating dependency version to 1.1.

paneq commented 13 years ago

~> "1.0" means: >= "1.?" and < "2.?" so we can allow both versions.

The question is: Did the API change? Or just the implementation. Is far as I know only the implementation (specifically resynchronization etc was reimplemented).

paneq commented 13 years ago

I pushed a commit to allow 1.0 and 1.1 versions.