Sha256: 4ad87fe07c65a09ea79852afbff5e3e34ccd4e10ec02ef10258d6514cd1b092a
Contents?: true
Size: 1.54 KB
Versions: 3
Compression:
Stored size: 1.54 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('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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
watchmaker-0.2.1 | watchmaker.gemspec |
watchmaker-0.2.0 | watchmaker.gemspec |
watchmaker-0.1.2 | watchmaker.gemspec |