1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00
thoughtbot--shoulda-matchers/shoulda-matchers.gemspec
Luciano Sousa d811bec14a Update shoulda-matchers.gemspec
finishing drop support to ruby 1.9.x
2015-03-13 15:31:46 -06:00

23 lines
975 B
Ruby

$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
require 'shoulda/matchers/version'
Gem::Specification.new do |s|
s.name = "shoulda-matchers"
s.version = Shoulda::Matchers::VERSION.dup
s.authors = ["Tammer Saleh", "Joe Ferris", "Ryan McGeary", "Dan Croak",
"Matt Jankowski", "Stafford Brunk", "Elliot Winkler"]
s.date = Time.now.strftime("%Y-%m-%d")
s.email = "support@thoughtbot.com"
s.homepage = "http://thoughtbot.com/community/"
s.summary = "Making tests easy on the fingers and eyes"
s.license = "MIT"
s.description = "Making tests easy on the fingers and eyes"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.required_ruby_version = '>= 2.0.0'
s.add_dependency('activesupport', '>= 4.0.0')
end