Sha256: fc98b5179b6893d06cc5e28d4d833ed5b7ef3ac7af1f757958978dd4d26c5a39

Contents?: true

Size: 882 Bytes

Versions: 6

Compression:

Stored size: 882 Bytes

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "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 = "TODO"
    s.authors = ["Sean Hussey", "Josh Nichols"]
    s.add_dependency "thoughtbot-shoulda", ">= 2.0.0"
    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

6 entries across 6 versions & 3 rubygems

Version Path
clearlynuts-woulda-0.2.3 Rakefile
clearlynuts-woulda-0.2.4 Rakefile
seanhussey-woulda-0.2.0 Rakefile
seanhussey-woulda-0.2.1 Rakefile
seanhussey-woulda-0.2.2 Rakefile
webmat-woulda-0.1.7 Rakefile