Sha256: ce8af1772b5e3dfe8da7bebf63cdead81eb57ebe392a81c78b4334ec279071b4
Contents?: true
Size: 851 Bytes
Versions: 7
Compression:
Stored size: 851 Bytes
Contents
require 'rubygems' gem 'hoe', '>= 2.1.0' require 'hoe' require 'fileutils' #require './lib/bdoc' Hoe.plugin :newgem # Hoe.plugin :website # Hoe.plugin :cucumberfeatures # Generate all the Rake tasks # Run 'rake -T' to see list of generated tasks (from gem root directory) $hoe = Hoe.spec 'bdoc' do self.developer 'Rich Manalang', 'rich.manalang@gmail.com' self.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required self.rubyforge_name = self.name # TODO this is default value self.extra_deps = [ ['launchy','>= 0.3.3'], ['multi_json','>= 0.0.5'], ] end require 'newgem/tasks' Dir['tasks/**/*.rake'].each { |t| load t } # TODO - want other tests/tasks run by default? Add them to the list # remove_task :default # task :default => [:spec, :features]
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
bdoc-0.3.6 | Rakefile |
bdoc-0.3.5 | Rakefile |
bdoc-0.3.4 | Rakefile |
bdoc-0.3.3 | Rakefile |
bdoc-0.3.2 | Rakefile |
bdoc-0.3.1 | Rakefile |
bdoc-0.3.0 | Rakefile |