Sha256: 52a0a1098d1cbfcff73b1d7a7dc0a3529d76e8c9d775a7b6e248580ff20a808c

Contents?: true

Size: 1.3 KB

Versions: 6

Compression:

Stored size: 1.3 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'spy/version'

Gem::Specification.new do |gem|
  gem.name          = "spy"
  gem.version       = Spy::VERSION
  gem.required_ruby_version = '>= 1.9.3'
  gem.license       = 'MIT'
  gem.authors       = ["Ryan Ong"]
  gem.email         = ["ryanong@gmail.com"]
  gem.description   = %q{A simple modern mocking library that uses the spy pattern and checks method's existence and arity.}
  gem.summary       = %q{Spy is a mocking library that was made for the modern age. It supports only 1.9.3+. Spy by default will raise an error if you attempt to stub a method that doesn't exist or call the stubbed method with the wrong arity.}
  gem.homepage      = "https://github.com/ryanong/spy"

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]
  gem.add_development_dependency('pry')
  gem.add_development_dependency('pry-nav')
  gem.add_development_dependency('minitest', '>= 4.5.0')
  gem.add_development_dependency('rspec-core')
  gem.add_development_dependency('rspec-expectations')
  gem.add_development_dependency('coveralls')
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
spy-0.4.2 spy.gemspec
spy-0.4.1 spy.gemspec
spy-0.4.0 spy.gemspec
spy-0.3.1 spy.gemspec
spy-0.3.0 spy.gemspec
spy-0.2.5 spy.gemspec