Sha256: 5f9f6c7662ec9775a6f044271b6ab4162a46aa8cf229313aa6c908da8ad35c8b
Contents?: true
Size: 548 Bytes
Versions: 3
Compression:
Stored size: 548 Bytes
Contents
#!/usr/bin/env rake begin require "bundler/setup" rescue LoadError puts "You must `gem install bundler` and `bundle install` to run rake tasks" end begin require "yard" YARD::Rake::YardocTask.new do |t| t.files = ["lib/**/*.rb"] t.options = [ "--no-private", ] end rescue LoadError STDERR.puts "Could not require() YARD! Install with 'gem install yard' to get the 'yardoc' task" end APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__) load "rails/tasks/engine.rake" Bundler::GemHelper.install_tasks
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
nitro_sg-3.0.2 | Rakefile |
nitro_sg-3.0.1 | Rakefile |
nitro_sg-3.0.0 | Rakefile |