Sha256: 090e65c7bb19fd73162d5c9b746cfdaa85ddb64539750054c18e116dca3995bd

Contents?: true

Size: 1.49 KB

Versions: 1

Compression:

Stored size: 1.49 KB

Contents

# encoding: UTF-8

$:.push File.expand_path("../lib", __FILE__)
require "watchmaker/version"

Gem::Specification.new do |s|
  s.name        = "watchmaker"
  s.version     = Watchmaker::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Christopher Meiklejohn"]
  s.email       = ["christopher.meiklejohn@gmail.com"]
  s.homepage    = "https://github.com/cmeiklejohn/watchmaker"
  s.summary     = %q{Extract test setup and factory instantiation into reusable objects}
  s.description = s.summary

  s.rubyforge_project = "watchmaker"

  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_dependency('rails', '~> 3.0')
  s.add_dependency('factory_girl')
  s.add_dependency('factory_girl_rails')

  s.add_development_dependency('bundler', '~> 1.0.15')
  s.add_development_dependency('rspec') 
  s.add_development_dependency('rspec-rails') 
  s.add_development_dependency('sqlite3')
  s.add_development_dependency('mocha')
  s.add_development_dependency('appraisal', '~> 0.3.5')
  s.add_development_dependency('horo') 
  s.add_development_dependency('simplecov') 
  s.add_development_dependency('diesel') 
  s.add_development_dependency('guard') 
  s.add_development_dependency('guard-rspec')

  if RUBY_PLATFORM =~ /linux/i
    s.add_development_dependency('rb-inotify')
    s.add_development_dependency('libnotify')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
watchmaker-0.2.2 watchmaker.gemspec