Sha256: bda21b7edae2940b61f0334feae7c94dc2d3cff8d2585d85bd41745fff199a48

Contents?: true

Size: 817 Bytes

Versions: 8

Compression:

Stored size: 817 Bytes

Contents

require 'rake'
require 'rake/testtask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "shoulda_machinist_generator"
    s.summary = "Generators which create tests using shoulda and machinist"
    s.email = "dave.hrycyszyn@headlondon.com"
    s.homepage = "http://github.com/futurechimp/shoulda_machinist_generator"
    s.description = "A superfork of shoulda_generator"
    s.authors = ["Dave Hrycyszyn", "Stuart Chinery"]
    s.files =  FileList["[A-Z]*", "{rails_generators,test}/**/*"]
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

Rake::TestTask.new do |t|
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

desc 'Test by default'
task :default => :test

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
shoulda_machinist_generator-0.3.4 Rakefile
shoulda_machinist_generator-0.3.3 Rakefile
shoulda_machinist_generator-0.3.2 Rakefile
shoulda_machinist_generator-0.2.0 Rakefile
shoulda_machinist_generator-0.1.5 Rakefile
shoulda_machinist_generator-0.1.4 Rakefile
shoulda_machinist_generator-0.1.3 Rakefile
shoulda_machinist_generator-0.1.2 Rakefile