Sha256: b8a282d120d2d07f5305d5b4491b28d8edb3160c8abeac1895700b46b9165d17

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "no_peeping_toms"
  s.version     = NoPeepingToms::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Pat Maddox"]
  s.email       = ["pat.maddox@gmail.com"]
  s.homepage    = "https://github.com/patmaddox/no_peeping_toms"
  s.summary     = %q{Disables observers during testing, allowing you to write model tests that are completely decoupled from the observer.}
  s.description = %q{Disables observers during testing, allowing you to write model tests that are completely decoupled from the observer.}
  s.rubyforge_project = "no_peeping_toms"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_runtime_dependency 'activerecord', '>=3.0.0'
  s.add_runtime_dependency 'activesupport', '>=3.0.0'

  s.add_development_dependency 'rspec', '~>2.5'
  s.add_development_dependency 'sqlite3'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
no_peeping_toms-2.1.0 no_peeping_toms.gemspec