Sha256: 79917874685b1407ae106ee5c650713ce05c316422414b2841a2659f1eb6b6a5
Contents?: true
Size: 417 Bytes
Versions: 3
Compression:
Stored size: 417 Bytes
Contents
require 'bundler' Bundler::GemHelper.install_tasks require 'yard' require 'rspec/core/rake_task' task :default => [:spec] task :test => [:spec] desc "run spec tests" RSpec::Core::RakeTask.new('spec') do |t| t.pattern = 'spec/**/*_spec.rb' end desc 'Generate documentation' YARD::Rake::YardocTask.new do |t| t.files = ['lib/**/*.rb', '-', 'LICENSE'] t.options = ['--main', 'README.md', '--no-private'] end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
goliath-0.9.4 | Rakefile |
goliath-0.9.2 | Rakefile |
goliath-0.9.1 | Rakefile |