Sha256: 1ab4134f51864901a441d72bb0a01081ea69732b7783f14d49cfeb7f21954199

Contents?: true

Size: 571 Bytes

Versions: 9

Compression:

Stored size: 571 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Scaffolder'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end






require 'bundler/gem_tasks'

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task default: :test

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
actionscaffold-0.3.5 Rakefile
actionscaffold-0.3.1 Rakefile
actionscaffold-0.2.6.pre Rakefile
actionscaffold-0.2.4.pre Rakefile
actionscaffold-0.2.2.pre Rakefile
actionscaffold-0.2.1.pre Rakefile
actionscaffold-0.2.0.pre Rakefile
actionscaffold-0.1.5.pre Rakefile
actionscaffold-0.1.4.pre Rakefile