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