$LOAD_PATH << File.join(File.dirname(__FILE__), '/lib') require 'rspec/must/version' Gem::Specification.new do |s| s.name = 'rspec-must' s.version = RSpec::Must::VERSION s.summary = "rspec-must-#{RSpec::Must::VERSION}" s.description = <<-eoh.gsub(/^ +/, '') rspec-must allows you to use #must instead of #should instance method in your specs. Currently it also provides #must_not and #must_receive, respectively aliased on #should_not and #should_receive. eoh s.homepage = 'https://rubygems.org/gems/rspec-must' s.author = 'Thibault Jouan' s.email = 'tj@a13.fr' s.files = `git ls-files`.split "\n" s.test_files = `git ls-files -- {spec,features}/*`.split "\n" s.executables = `git ls-files -- bin/*`.split("\n").map do |f| File.basename(f) end s.add_development_dependency 'aruba' s.add_development_dependency 'rspec' end