Sha256: 1e9b46d7fe9ac8e1366629b9b646983aaad245b898c935f9694b07a39768f97c

Contents?: true

Size: 477 Bytes

Versions: 30

Compression:

Stored size: 477 Bytes

Contents

require 'bundler'
require 'rake/clean'
require 'rdoc/task'
require 'rspec/core/rake_task'

include Rake::DSL

Bundler::GemHelper.install_tasks

desc "Run specs"
RSpec::Core::RakeTask.new do |t|
  # t.rspec_opts = %w(--colour --fail-fast --format nested)
  t.rspec_opts = %w(--colour  --format nested)
  t.ruby_opts  = %w(-w)
end

Rake::RDocTask.new do |rd|
  rd.main = "README.rdoc"
  rd.rdoc_files.include("README.rdoc","lib/**/*.rb","bin/**/*")
end

task :default => [:spec]

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
blazing-0.4.2 Rakefile
blazing-0.4.1 Rakefile
blazing-0.4.0 Rakefile
blazing-0.4.0.beta3 Rakefile
blazing-0.4.0.beta2 Rakefile
blazing-0.4.0.beta1 Rakefile
blazing-0.3.0 Rakefile
blazing-0.2.14 Rakefile
blazing-0.2.13 Rakefile
blazing-0.2.12 Rakefile
blazing-0.2.11 Rakefile
blazing-0.2.10 Rakefile
blazing-0.2.9 Rakefile
blazing-0.2.7 Rakefile
blazing-0.2.6 Rakefile
blazing-0.2.5 Rakefile
blazing-0.2.4 Rakefile
blazing-0.2.3 Rakefile
blazing-0.2.2 Rakefile
blazing-0.2.1 Rakefile