Sha256: 3676fdf0e1aa1dd3581fd37869913fa82d24545b2b066a542be3c11b1f8f570d

Contents?: true

Size: 942 Bytes

Versions: 2

Compression:

Stored size: 942 Bytes

Contents

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

Gem::Specification.new do |s|
  s.name        = "fakes"
  s.version     = Fakes::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Develop With PassionĀ®"]
  s.email       = ["open_source@developwithpassion.com"]
  s.homepage    = "http://www.developwithpassion.com"
  s.summary     = %q{Simple faking library}
  s.description = %q{Faking library that allows inspection of received calls after they have been made. Also supports tracking calls with multiple argument sets.}
  s.rubyforge_project = "fakes"

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

  s.add_runtime_dependency('rspec', "~> 2.14.1")
  s.add_development_dependency "rake"
  s.add_development_dependency "guard"
  s.add_development_dependency "guard-rspec"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fakes-1.1.6 fakes.gemspec
fakes-1.1.5 fakes.gemspec