Sha256: 5a3ae96aa3bb418fba5b090d665d55d8153d8c19166f3a02b94213bd51456431
Contents?: true
Size: 516 Bytes
Versions: 4
Compression:
Stored size: 516 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 = 'Glow' rdoc.options << '--line-numbers' #rdoc.rdoc_files.include('README.md') rdoc.rdoc_files.include('lib/**/*.rb') end Bundler::GemHelper.install_tasks
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
glow-0.0.4 | Rakefile |
glow-0.0.3 | Rakefile |
glow-0.0.2 | Rakefile |
glow-0.0.1 | Rakefile |