Sha256: dfba25d4c8d1701c98c91ae7feda5b638b12fe49735f69b714146c0834b24c86

Contents?: true

Size: 525 Bytes

Versions: 18

Compression:

Stored size: 525 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
require 'rdoc/task'
require "bundler/gem_tasks"

desc "Run specs"
task :spec do
  sh "bundle exec rspec -f progress"
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'GhostInThePost'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Bundler::GemHelper.install_tasks

task :default => :spec

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
ghost_in_the_post-0.1.4 Rakefile
ghost_in_the_post-0.1.3 Rakefile
ghost_in_the_post-0.1.2 Rakefile
ghost_in_the_post-0.1.0 Rakefile
ghost_in_the_post-0.0.14 Rakefile
ghost_in_the_post-0.0.13 Rakefile
ghost_in_the_post-0.0.12 Rakefile
ghost_in_the_post-0.0.11 Rakefile
ghost_in_the_post-0.0.10 Rakefile
ghost_in_the_post-0.0.9 Rakefile
ghost_in_the_post-0.0.8 Rakefile
ghost_in_the_post-0.0.7 Rakefile
ghost_in_the_post-0.0.6 Rakefile
ghost_in_the_post-0.0.5 Rakefile
ghost_in_the_post-0.0.4 Rakefile
ghost_in_the_post-0.0.3 Rakefile
ghost_in_the_post-0.0.2 Rakefile
ghost_in_the_post-0.0.1 Rakefile