Sha256: 6e0c4019492e8622928069b7c1594365ddfe034dd57670511947596a866c60a4

Contents?: true

Size: 899 Bytes

Versions: 1

Compression:

Stored size: 899 Bytes

Contents

$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
require 'shoulda/version'

Gem::Specification.new do |s|
  s.name = 'shoulda'
  s.version = Shoulda::VERSION
  s.platform = Gem::Platform::RUBY
  s.authors = [
    'Tammer Saleh',
    'Joe Ferris',
    'Ryan McGeary',
    'Dan Croak',
    'Matt Jankowski'
  ]
  s.email = 'support@thoughtbot.com'
  s.homepage = 'https://github.com/thoughtbot/shoulda'
  s.summary = 'Making tests easy on the fingers and eyes'
  s.description = 'Making tests easy on the fingers and eyes'
  s.license = 'MIT'

  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 do |file|
    File.basename(file)
  end
  s.require_paths = ['lib']

  s.add_dependency('shoulda-context', ['~> 1.0', '>= 1.0.1'])
  s.add_dependency('shoulda-matchers', '~> 3.0')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shoulda-3.6.0 shoulda.gemspec