Sha256: 639a010c4100fc0f21e7e3bd1d6b5804922cf3040d0542936da838890c6509d1

Contents?: true

Size: 573 Bytes

Versions: 8

Compression:

Stored size: 573 Bytes

Contents

require "rubygems"
require "bundler"
Bundler.setup
require 'rake/rdoctask'
require "rspec/core/rake_task"

desc 'Default: run specs'
task :default => :spec

desc 'Test the jelly plugin with Rspec.'
RSpec::Core::RakeTask.new(:spec) do |t|
  t.pattern = 'spec/**/*_spec.rb'
  t.verbose = true
end

desc 'Generate documentation for the jelly plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Jelly.'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
honkster-jelly-0.13.2 Rakefile
honkster-jelly-0.13.1 Rakefile
honkster-jelly-0.13.0 Rakefile
honkster-jelly-0.12.0 Rakefile
honkster-jelly-0.11.0 Rakefile
honkster-jelly-0.10.0 Rakefile
honkster-jelly-0.9.3 Rakefile
honkster-jelly-0.9.2 Rakefile