Sha256: 3aad414f6c78923a6012adc16d8ef2da33d05021cd6cad8b08f6f1706611eed5
Contents?: true
Size: 1.58 KB
Versions: 2
Compression:
Stored size: 1.58 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{Build complex objects easily for use in integration tests.} s.description = %q{Build complex objects easily for use in integration tests.} 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('ZenTest') 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
watchmaker-0.1.1 | watchmaker.gemspec |
watchmaker-0.1.0 | watchmaker.gemspec |