Sha256: 449dc5116853983f0e3726ba8f3a83527fb9301aa3bec289bbdf2a26560dfa89

Contents?: true

Size: 1.09 KB

Versions: 6

Compression:

Stored size: 1.09 KB

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'rcov/rcovtask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "goaloc"
    s.summary = %q{ this allows for rapid, console-based generation of merb or rails apps}
    s.email = "matthewknox@gmail.com"
    s.homepage = "http://github.com/mattknox/goaloc"
    s.description =  %q{Generate On A Lot of Crack speeds and extends the early sketching phase of RESTFUL MVC app development }
    s.authors = ["matt knox"]
  end
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.libs << 'lib'
  t.pattern = 'test/**/test_*.rb'
  t.verbose = false
end

Rake::RDocTask.new do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Jeweler'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Rcov::RcovTask.new do |t|
  t.libs << "test"
  t.test_files = FileList['test/**/*_test.rb']
  t.verbose = true
end

task :default => :rcov

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mattknox-goaloc-0.2.10 Rakefile
mattknox-goaloc-0.2.11 Rakefile
mattknox-goaloc-0.2.6 Rakefile
mattknox-goaloc-0.2.7 Rakefile
mattknox-goaloc-0.2.8 Rakefile
mattknox-goaloc-0.2.9 Rakefile