Sha256: 0a557e5919c18b207ad481b2bd5b9b23af73f3ca22217a4eb5d3a79ff6399260

Contents?: true

Size: 932 Bytes

Versions: 9

Compression:

Stored size: 932 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_development_dependency "rspec"
  s.add_development_dependency "rake"
  s.add_development_dependency "guard"
  s.add_development_dependency "guard-rspec"
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
fakes-1.1.4 fakes.gemspec
fakes-1.1.3 fakes.gemspec
fakes-1.1.2 fakes.gemspec
fakes-1.1.1 fakes.gemspec
fakes-1.1.0 fakes.gemspec
fakes-1.0.9 fakes.gemspec
fakes-1.0.8 fakes.gemspec
fakes-1.0.7 fakes.gemspec
fakes-1.0.6 fakes.gemspec