Sha256: 166d28dc622f01725e2b6c7f255839c4e1e135f851737bf32b4f37a15664784d
Contents?: true
Size: 1001 Bytes
Versions: 4
Compression:
Stored size: 1001 Bytes
Contents
require 'rake' require 'rake/testtask' require 'rake/rdoctask' Rake::TestTask.new do |t| t.libs << "test" t.test_files = FileList['test/shoulda/cli_test.rb', 'test/unit/cli_test.rb'] t.verbose = true end begin require 'jeweler' gemspec = Gem::Specification.new do |s| s.name = "clicase" s.summary = "Gem extending Shoulda or Test::Unit with macros for testing command line apps." s.email = "afurmanov@rushpost.com" s.homepage = "http://github.com/afurmanov/clicase" s.description = <<END CliCase extends TestCase with macros simplifying testing command line apps written in Ruby. These macros allow to specify command line entry point, run command line and assert execution results. Works with Test::Unit or with Shoulda. END s.authors = ["Aleksandr Furmanov"] s.test_files = ['test/shoulda/cli_test.rb', 'test/unit/cli_test.rb'] end Jeweler::Tasks.new gemspec rescue LoadError puts "Jeweler not available. Install it with: sudo gem install jeweler" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
afurmanov-clicase-0.1.10 | Rakefile |
afurmanov-clicase-0.1.11 | Rakefile |
afurmanov-clicase-0.1.8 | Rakefile |
afurmanov-clicase-0.1.9 | Rakefile |