Sha256: 9489b145cd4502725564bf12dd65ced3f3a8df92a4d4a7ebbdc31b6666af33d1

Contents?: true

Size: 1.43 KB

Versions: 2

Compression:

Stored size: 1.43 KB

Contents

$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    = 'https://matchers.shoulda.io/'
  s.summary     = 'Simple one-liner tests for common Rails functionality'
  s.license     = 'MIT'
  s.description = <<~DESC.tr("\n", ' ').squeeze(' ')
    Shoulda Matchers provides RSpec- and Minitest-compatible one-liners to test
    common Rails functionality that, if written by hand, would be much
    longer, more complex, and error-prone.
  DESC

  s.metadata = {
    'bug_tracker_uri' => 'https://github.com/thoughtbot/shoulda-matchers/issues',
    'changelog_uri' => 'https://github.com/thoughtbot/shoulda-matchers/blob/master/CHANGELOG.md',
    'documentation_uri' => 'https://matchers.shoulda.io/docs',
    'homepage_uri' => 'https://matchers.shoulda.io',
    'source_code_uri' => 'https://github.com/thoughtbot/shoulda-matchers',
  }

  s.files = Dir['{docs,lib}/**/*', 'README.md', 'LICENSE',
    'shoulda-matchers.gemspec']
  s.require_paths = ['lib']

  s.required_ruby_version = '>= 2.4.0'
  s.add_dependency('activesupport', '>= 4.2.0')
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
shoulda-matchers-4.5.1 shoulda-matchers.gemspec
shoulda-matchers-4.5.0 shoulda-matchers.gemspec