Sha256: 14c1091cf458673919f76120bece08faf7d6fcbe4f51f714f2c421b4423dcd78
Contents?: true
Size: 620 Bytes
Versions: 6
Compression:
Stored size: 620 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 RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'Curate' 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
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
curate-0.2.0 | Rakefile |
curate-0.1.3 | Rakefile |
curate-0.1.2 | Rakefile |
curate-0.1.1 | Rakefile |
curate-0.1.0 | Rakefile |
curate-0.0.1 | Rakefile |