Sha256: ffd0d166f593bb7e36f53b6ba15fd8da6f6b5384fe5038abc1513bc3bdcfa916
Contents?: true
Size: 640 Bytes
Versions: 5
Compression:
Stored size: 640 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 'rdoc/task' rescue LoadError require 'rdoc/rdoc' require 'rake/rdoctask' RDoc::Task = Rake::RDocTask end require 'thor' RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'MailyHerald' rdoc.options << '--line-numbers' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') end APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__) load 'rails/tasks/engine.rake' Bundler::GemHelper.install_tasks
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
maily_herald-0.9.4 | Rakefile |
maily_herald-0.9.3 | Rakefile |
maily_herald-0.9.2 | Rakefile |
maily_herald-0.9.1 | Rakefile |
maily_herald-0.8.0 | Rakefile |