I am trying to get a cucumber to work with Rails 3.
But whenever I try to run the cucumber functions, I get a loading error.
cucumber-0.7.3/lib/cucumber/ast/feature_element.rb:2:in `require': no such file to load -- gherkin/parser/tag_expression (LoadError)
I added the following gems to the gemfile
gem "rspec", '>= 2.0.0.beta.19' gem 'capybara' gem 'database_cleaner' gem 'cucumber-rails', '~> 0.1.1.rc6' gem 'cucumber', '~> 0.7.0.beta.8' gem 'rspec-rails', '~> 2.0.0.beta.19' gem 'spork' gem 'launchy'
I work on ruby-1.9.2-p0
Any suggestions?
ruby-on-rails-3 cucumber
spllr
source share