Tagged Questions
1
vote
0answers
14 views
Error installing rspec (gem install rspec) on Windows
I am using Windows 7 and trying to install rspec, but I get the following error when I type gem install rspec into the terminal.
ERROR: Could not find a valid gem 'rspec' <>=0>, here is ...
0
votes
1answer
35 views
Modified gem files on rubymine to checkin on github
I have some gem files on rubymine in my external libraries which I am modifying as per my project requirements. Eg: I am modifying the HtmlPrinter class located under RSpec::Core::Formatters and when ...
0
votes
1answer
49 views
Using Watir and uninitialized constant Watir::RSpec::Core
I am trying to create a custom rspec formatter using Watir and got this error while executing the class. I have never used Watir before. Do I need some special gems for it?
Error: uninitialized ...
0
votes
0answers
62 views
event machine errors out
I am using the happening gem, a event-machine library to persist files on S3.
when i run rspec tests to "GET" a file from the aws bucket, it errors out.
Error O/P:
RuntimeError: eventmachine not ...
0
votes
2answers
50 views
Ruby gem Sanitize not condensing whitespace on one machine
I have the following failing unit test;
it "should handle white space" do
Sanitize.clean(' ').should == ''
end
Which fails because the result of Sanitize.clean(' ') is ' ' not ''.
The same ...
0
votes
1answer
441 views
can't install most recent version of rspec
So I'm working on a gem... I type bundle, and it installs rspec 2.0.1 which, as I'm sure you'll understand, is simply unacceptable in this day and age of rspec 2.12.2 .
I'd be OK with it, except when ...
2
votes
1answer
65 views
How to use rspec to test screen scraping?
I'm writing a site that is going to rely a lot on screen scraping. Because I know screen scraping is prone to breaking I'd like to get notified somehow that there is a problem.
The solution that I ...
1
vote
2answers
290 views
Ruby rspec test command: could not locate Gemfile
I just installed Ruby 1.9.3 on Windows 7 and I also installed rubygems. I'm trying to work with rspec so I ran:
gem install rspec
It seemed to work well and everything installed. SO I went on to try ...
0
votes
0answers
23 views
Issues with clean uninstall of gem RSPEC. Why?
I'm working on a tutorial that uses an earlier version of RSPEC so I want to uninstall RSPEC and then re-install the older version. I run the following:
rspec -v
The terminal returns "2.11.1"
I run ...
0
votes
2answers
98 views
paper trail plugin and rspec
I have a model, Car.
When I update an instance of Car through a form in my application, the PaperTrail plugin is called and a new version is created.
But if I test this model using rspec, the ...
0
votes
0answers
80 views
Using RSpec without Bundler?
I am running some tests with RSpec; my code requires some gems that are not inside the Gemfile (for good reasons that are a bit lengthy to explain). It seems that RSpec runs Bundler in the background ...
1
vote
2answers
514 views
How to use RSpec to test a Sinatra application within a gem?
I am writing a gem which includes a Sinatra application that a developer can extend. For example:
# gem code:
require 'sinatra'
module Mygem
class Application < Sinatra::Base
get ...
0
votes
1answer
1k views
rspec: undefined method 'double'
I'm trying to create a double but I keep getting this error:
undefined method `double' for #<Class:0x007fa48c234320> (NoMethodError)
I suspect the problem has got to do with my spec helper ...
2
votes
2answers
271 views
testing rails engine generator with rspec
I create a simpe gem wich include a install generator, generator works fine but now I want to test it using rspec, I foud this gem, and try to test my generator, my spec code is:
require 'genspec'
...
0
votes
1answer
129 views
Unable to record Whois requests with VCR?
I'm attempting to use VCR 2.0.0 outside of Rails.
VCR seems to create the vcr_cassettes directory perfectly when I run the specs. However, the tests seem to be still hitting the network and there are ...
-1
votes
1answer
429 views
Ruby on Rails tutorial - Having problems with the gemfile [closed]
I am looking at a tutorial.
I copied and pasted the gemfile as it is given. For the 10.42 listing, it is giving me an error
Could not find gem 'will_paginate (= 3.0.pre2) ruby' in the gems available ...
2
votes
1answer
212 views
Rails Custom Validators: Testing options
I'm trying to write up a rails gem that involves (amongst other things) some custom model validators...and I'm wondering how to test validation options.
To give an example, I'd like to write an rspec ...
2
votes
1answer
104 views
rspec test not passing. use of dynamic data
I have an rspec test that was written for an email being sent. it contains a dynamic field that's filled in with the org name of the user in the application. I changed the text from one name to the ...
1
vote
0answers
267 views
How to use rspec rails helper methods in a gem — outside a rails install
I have a gem I'm working on that is dependent upon rails to run. Specifically, the gem includes a 'helper' method that uses the 'content_tag' call to build output that will be used in constructing a ...
0
votes
1answer
475 views
RubyMine, why I can't debug spec files?
I am trying to debug a spec test using RubyMine, but, I get:
uninitialized constant QuizzesController
here is the full error:
Fast Debugger (ruby-debug-ide 0.4.17.beta8, ruby-debug-base
...
0
votes
1answer
136 views
rspec Always Returns Errors
I run:
$ bundle exec rspec spec/
And receive this message:
C:/RailsInstaller/Ruby1.9.2/lib/ruby/gems/1.9.1/gems/rspec-core-2.0.1/lib/rspec/core.rb:78:in `require': no such file to load -- ...
2
votes
1answer
684 views
How do I run a Ruby gem's specs?
I have forked a ruby gem and made some updates. I need to run the gem tests and add my new tests and ensure all tests are succeeding.
The forked ruby gem is using rspec tests. How can I run these ...
1
vote
1answer
383 views
Running rspec Gem
When I run $ rspec spec/ I receive this error:
You must use ANSICON 1.31 or later (http://adoxa.110mb.com/ansicon/) to use colour on Windows
...
0
votes
2answers
77 views
Declaring multiples in the gemfile (Same feature, different gem). Why?
I've come across a few tutorials where the author declares two versions of the same gem in the gemfile, even in the same group.
"haml" and "haml-rails"
"rspec" and "rspec-rails"
"cucumber" and ...
1
vote
1answer
548 views
Issue with bundler or gems I can't work out when I type 'bundle exec rake spec'
I'm trying to run the command
bundle exec rake spec
but it returns the following:
/Library/Ruby/Gems/1.8/gems/bundler-1.0.21/lib/bundler/shared_helpers.rb:2:in `require': no such file to load -- ...
0
votes
2answers
244 views
rspec / factory girl causing SystemStackError in Rails 3
I'm getting this error when running rspec on a spec file:
MYPATH/gems/rspec-core-2.6.4/lib/rspec/core/configuration.rb:419: stack level too deep (SystemStackError)
Here is the line it is called on:
...
2
votes
2answers
1k views
Ruby Gem Guard on Ubuntu, no 'guard' command
Trying to install Guard on my ubuntu machine, but when I try to run it from command line I get this error:
No command 'guard' found, did you mean:
Command 'guards' from package 'quilt' (main)
guard: ...
2
votes
3answers
230 views
How can I get rid of the following warning: Problem while setting context on example startundefined local variable or method `selenium_driver'
Still making my first steps in Ruby (while dealing with some written code). I am getting the following warning each time I run spec (listed as is):
Problem while setting context on example ...
3
votes
2answers
2k views
Difficulty installing RSpec on Windows
I'm trying to get started with RSpec. I already had Ruby 1.8.7 installed on my Windows 7 machine.
So I typed gem install rspec and that seemed to work. But if I type spec in the command line, the ...
1
vote
1answer
219 views
RSpec/Gem development: Stubbing rails templates
I'm currently working on a couple of different gems both of which mainly consist of rails view helpers.
My problem is that some of these helpers require rendered rails templates to test the output - ...
1
vote
1answer
838 views
Error loading rubygems
During an operation (rspec related) that required loading rubygems (from config/boot.rb file) I got the following error message:
~/config/boot.rb:1:in `require': no such file to load -- rubygems ...
70
votes
3answers
12k views
Setup RSpec to test a gem (not Rails)
It is pretty easy with the added generator of rspec-rails to setup RSpec for testing a Rails application. But how about adding RSpec for testing a gem in development?
I am not using jeweler or such ...
4
votes
4answers
2k views
Trying to use rspec, but getting an error that rspec-core 2.2.1 has been activated, but my Gemfile requires rspec-core 2.1.0
I've update my gems. I've created a sample Rails app and have the following in my Gemfile:
source 'http://rubygems.org'
gem 'rails', '3.0.3'
gem 'sqlite3-ruby', :require => 'sqlite3'
group ...
1
vote
1answer
3k views
gem_original_require: no such file to load — spec/rails
I have a rails 2.3.8 app with rspec tests (not written by me, just trying to get them running). When I run "rake spec" I get this error:
gem_original_require': no such file to load -- spec/rails ...
3
votes
2answers
423 views
How do I test a Formtastic custom input with rspec?
I have a rubygem that defines a custom SemanticFormBuilder class which adds a new Formtastic input type. The code works as expected, but I cannot figure out how to add tests for it. I was thinking I ...
4
votes
2answers
2k views
SimpleCov rspec and cucumber separately
Could you tell me how to setup simplecov to test models with rspec and controller with cucumber only?
I don't like it that rspec and cucumber coverage are mixed together...
4
votes
2answers
7k views
Remove Gem from RVM Gemset?
New to RVM and playing with Rails 3 & Ruby 1.9.2 betas...
I've got two copies of rspec in a gemset. Was using beta.19 but need to downgrade to beta.18. changed my gemfile and then bundle install. ...
3
votes
3answers
4k views
“uninitialized constant” when running RSpec tests with Rails 2.3.8 and Bundler
I just changed my Rails 2.3.8 project to load gems using Bundler, rather than the default Rails 2.3 loading mechanism. I followed the official instructions and the site runs fine in development. I use ...
0
votes
2answers
153 views
rspec needs to be installed in base app
I am having trouble building a gem. When I run rake it gives the the following error message:
You need to install rspec in your base
app
I'm not completely certain what I should be doing to ...
1
vote
4answers
1k views
RSpec can't find Cucumber gem
When running rspec I get the following error:
no such file to load -- cucumber-rails
/usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
...
2
votes
1answer
190 views
Config.gem in test and cucumber environments
With RSpec and Cucumber, why is it preferred to specify :lib => false in the environment files - and then explicitly require the gems in spec_helper.rb and env.rb?
3
votes
1answer
2k views
Why can't my Rails app find the gems that are packaged with it?
I've got a Rails app making use of Cucumber and RSpec. We are storing the gems under vendor/gems and trying to get the app building (running tests) in a CI server.
When I try to run our tests I'm ...
1
vote
3answers
4k views
RSpec Gem does not seem to install dependencies
$> jruby -v
jruby 1.1.4 (ruby 1.8.6 patchlevel 114) (2008-08-28 rev 7570) [x86-java]
$> gem install rspec
JRuby limited openss loaded. gem install jruby-openssl for full support.
...
0
votes
1answer
705 views
Problems with RSpec and Chronic
I'm trying to use Chronic inside my non-rails project. When I try to get the
specs with 'spec' I get the following error:
$ spec spec/parsers/parser_english_spec.rb
...
2
votes
1answer
1k views
Rspec - problems with switching from plugins to gems
When dropping the use of rspec and rspec-rails plugins and switching to the gem versions instead, is there anything extra I have to change in spec_helper.rb or something to make the specs in my app ...

