Sha256: d7035041eae48a56d5fad19856b3022ae24666a584787a985dbbd3798181895a
Contents?: true
Size: 1 KB
Versions: 6
Compression:
Stored size: 1 KB
Contents
require 'rubygems' gem 'hoe', '>= 2.1.0' require 'hoe' require 'fileutils' require './lib/autotest-notify-osd' Hoe.plugin :newgem # Hoe.plugin :website # Hoe.plugin :cucumberfeatures $hoe = Hoe.spec 'autotest-notify-osd' do self.developer 'Sven Schwyn', 'ruby@bitcetera.com' self.summary = %q{Notify OSD notification support for ZenTest's autotest.} self.description = %q{This gem aims to improve support for Notify OSD notification by ZenTest's autotest. It comes with a nice colored Ruby icon set and - for now - supports Cucumber by means of a workaround.} self.url = %q{http://shortround,net} self.post_install_message = "\n\e[1;32m" + File.read('PostInstall.txt') + "\e[0m\n" self.rubyforge_name = self.name self.extra_deps = [ ['ZenTest','>= 4.1.3'], ] end require 'newgem/tasks' Dir['tasks/**/*.rake'].each { |t| load t } task :default => [:spec]
Version data entries
6 entries across 6 versions & 2 rubygems