Sha256: c64e2ca24ee2017f7ecce474241bca5f00ae1647ea4225235f40372352b031fa

Contents?: true

Size: 789 Bytes

Versions: 25

Compression:

Stored size: 789 Bytes

Contents

require 'rubygems'
require 'bundler'
Bundler.setup

begin
  require 'bueller'
  Bueller::Tasks.new
rescue LoadError
  puts "Bueller (or a dependency) not available. Install it with: gem install bueller"
end

begin
  require 'rspec/core/rake_task'
  RSpec::Core::RakeTask.new(:examples)

  RSpec::Core::RakeTask.new(:rcov) do |spec|
    spec.rcov = true
  end
rescue LoadError
  puts 'RSpec tasks unavailable'
end

task :test => :examples
task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.main = 'README.rdoc'
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "tronprint #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('LICENSE')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
tronprint-1.2.3 Rakefile
tronprint-1.2.2 Rakefile
tronprint-1.2.1 Rakefile
tronprint-1.2.0 Rakefile
tronprint-1.1.5 Rakefile
tronprint-1.1.4 Rakefile
tronprint-1.1.3 Rakefile
tronprint-1.1.2 Rakefile
tronprint-1.1.1 Rakefile
tronprint-1.1.0 Rakefile
tronprint-1.0.5 Rakefile
tronprint-1.0.4 Rakefile
tronprint-1.0.2 Rakefile
tronprint-1.0.1 Rakefile
tronprint-1.0.0 Rakefile
tronprint-0.0.16 Rakefile
tronprint-0.0.15 Rakefile
tronprint-0.0.14 Rakefile
tronprint-0.0.13 Rakefile
tronprint-0.0.11 Rakefile