Sha256: 95f1b874d26a54aec8c72935d031905fc9a82de2a342d72eebfc32fd8026c8c8
Contents?: true
Size: 518 Bytes
Versions: 7
Compression:
Stored size: 518 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 = 'Write' rdoc.options << '--line-numbers' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') end Bundler::GemHelper.install_tasks
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
write-0.2.5 | Rakefile |
write-0.2.4 | Rakefile |
write-0.2.3 | Rakefile |
write-0.2.2 | Rakefile |
write-0.2.1 | Rakefile |
write-0.2.0 | Rakefile |
write-0.0.1 | Rakefile |