Sha256: 34d58957410626ccc27120a1c443f85bded5c3ef02d38e3193da673bac16b90d
Contents?: true
Size: 857 Bytes
Versions: 3
Compression:
Stored size: 857 Bytes
Contents
require 'rubygems' gem 'hoe', '>= 2.8.0' require 'hoe' require 'fileutils' require './lib/autotest_notification.rb' 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 'autotest-notification.rb' do self.developer 'Carlos Brando', 'eduardobrando@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 = [['autotest-standalone','~> 4.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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
autotest-notification-2.3.4 | Rakefile |
autotest-notification-2.3.3 | Rakefile |
autotest-notification-2.3.2 | Rakefile |