Sha256: 81ef2f3430c05647cbc8189c8eb22c79bc587ea6626413d619cebca6622b32ec
Contents?: true
Size: 562 Bytes
Versions: 4
Compression:
Stored size: 562 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' begin require 'rspec/core/rake_task' desc "Run RSpec" RSpec::Core::RakeTask.new do |t| t.verbose = false end rescue LoadError puts "Please run bundle install" end RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'BootstrapPagedown' rdoc.options << '--line-numbers' rdoc.rdoc_files.include('lib/**/*.rb') end task default: :spec Bundler::GemHelper.install_tasks
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
bootstrap_pagedown-1.1.0 | Rakefile |
bootstrap_pagedown-1.0.2 | Rakefile |
bootstrap_pagedown-1.0.1 | Rakefile |
bootstrap_pagedown-1.0.0 | Rakefile |