Sha256: 435d4ab24b6a1a5a58003aec0856c7ef8357d094d5861bf5a3065e7f222f4304

Contents?: true

Size: 786 Bytes

Versions: 2

Compression:

Stored size: 786 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)

require "shared_should/version"

Gem::Specification.new do |s|
  s.name        = "shared_should"
  s.version     = SharedShould::VERSION
  s.authors     = ["Michael Pearce"]
  s.email       = ["michaelgpearce@yahoo.com"]
  s.homepage    = "http://github.com/michaelgpearce/shared_should"
  s.summary     = "Share and reuse shoulds, contexts, and setup in Shoulda."

  s.rubyforge_project = "shared_should"

  s.files = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.require_paths = ["lib"]

  s.add_development_dependency('shoulda', ENV['SHOULDA_VERSION'] || "= 3.1.1") # Use SHOULDA_VERSION when testing different versions
  s.add_dependency 'shoulda'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
shared_should-0.10.0 shared_should.gemspec
shared_should-0.9.0 shared_should.gemspec