Sha256: eacd32b4d9c530db38f7459657da0abb8128427c670065b32a5494ebd14af96e
Contents?: true
Size: 727 Bytes
Versions: 4
Compression:
Stored size: 727 Bytes
Contents
require 'rubygems' gem 'hoe', '>= 2.1.0' require 'hoe' require 'fileutils' require './lib/switchvoxFix' Hoe.plugin :newgem Hoe.plugin :git # 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 'switchvoxFix' do self.developer 'mthompson', 'mthompson@unitas-inc.com' self.rubyforge_name = self.name # TODO this is default value self.extra_deps = [['json']] 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
switchvoxFix-0.1.7 | Rakefile |
switchvoxFix-0.1.6 | Rakefile |
switchvoxFix-0.1.4 | Rakefile |
switchvoxFix-0.1.3 | Rakefile |