From 1a9cbd5936de73ec4c3d115e3d72591a62cc77b6 Mon Sep 17 00:00:00 2001 From: ignisf Date: Sun, 15 Jun 2014 13:40:57 +0300 Subject: [PATCH] The RSpec spies syntax is now available by default --- .rspec | 1 + libv8.gemspec | 1 - spec/spec_helper.rb | 1 - 3 files changed, 1 insertion(+), 2 deletions(-) create mode 100644 .rspec diff --git a/.rspec b/.rspec new file mode 100644 index 0000000..49d5710 --- /dev/null +++ b/.rspec @@ -0,0 +1 @@ +--format documentation diff --git a/libv8.gemspec b/libv8.gemspec index 74ca21b..f4fbd2c 100644 --- a/libv8.gemspec +++ b/libv8.gemspec @@ -29,6 +29,5 @@ Gem::Specification.new do |s| s.add_development_dependency "rake" s.add_development_dependency "rake-compiler" s.add_development_dependency "rspec" - s.add_development_dependency "rspec-spies" s.add_development_dependency "rubysl", "~> 2.0" if RUBY_ENGINE == "rbx" end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index c1f8718..9dec079 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,6 +1,5 @@ $:.unshift File.expand_path '../../ext/libv8', __FILE__ $:.unshift File.expand_path '../../lib', __FILE__ require 'rspec' -require 'rspec-spies' require 'libv8' require File.expand_path '../support/compiler_helpers', __FILE__