Sha256: 0067a5ab98ccf9bc6bb8fd4929bc55f7d05b15ffefcdc7b9c016519f1e64cc37
Contents?: true
Size: 906 Bytes
Versions: 1
Compression:
Stored size: 906 Bytes
Contents
require 'rake' require 'rake/testtask' require 'rake/rdoctask' begin require 'jeweler' Jeweler::Tasks.new do |s| s.name = "svenaas-woulda" s.summary = "woulda is a home for shoulda macros that don't belong in the main shoulda library" s.email = ["sean@seanhussey.com", "josh@technicalpickles.com"] s.homepage = "http://github.com/seanhussey/woulda" s.description = "No description yet." s.authors = ["Sean Hussey", "Josh Nichols"] s.add_dependency "thoughtbot-shoulda", ">= 2.10.2" s.rubyforge_project = "woulda" s.files = FileList["[A-Z]*", "{shoulda_macros}/**/*", "lib/**/*"] end rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end desc "Run all tests" Rake::TestTask.new(:test) do |t| t.pattern = 'test/**/*_test.rb' t.verbose = true end task :default => :test
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
svenaas-woulda-0.3.1 | Rakefile |