Hi, I tried to use ruby-vpi-21.1.0 follows environment:
OS : Debian Linux x86-64 Linux Version : 2.6.37.2 Ruby Version : 1.8.7 ruby-vpi version : 21.1.0 When I run 'rake vsim PROTOTYPE=1' in example/counter/RSpec directory, RSpec module not found. # LoadError: no such file to load -- spec I checked RSpec version by 'gem list'. RSpec's version was 2.6.0. then, I tried to follows ruby -e "require 'rubygems'; require'rspec'" this command works. so, I modified counter_spec.rb . replace 'spec' to 'rspec'. then, I tried 'rake vsim PROTOTYPE=1' one more. but follows error ocurred. NoMethodError: undefined method `setup' for #<Class:0x7f5230a464e0> I check RSpec 2.6.0 document. there are no 'setup' mothod. document uses 'before(:each)' instead of 'setup' I replaced 'setup' to 'before(:each)'. and then 'rake vsim PROTOTYPE=1'. error messages were not appeared. but, there were no test result mesasge. How do I get correct result with 'rake vsim PROTOTYPE=1'. Best regards -- Kazunori Kimura