Sha256: b4501c8034217278b94f171c3dcdb5645181ec52e7aa1272afd699894da827a5

Contents?: true

Size: 851 Bytes

Versions: 2

Compression:

Stored size: 851 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 = "cmd_line_test"
    s.summary = "Extends Shoulda or Test::Unit with macros for testing command line apps."
    s.email = "fkocherga@gmail.com"
    s.homepage = "http://github.com/fkocherga/cml_line_test"
    s.description = <<END
Macros specific to command line Ruby apps testing. Works with Test::Unit or Shoulda.
END
    s.authors = ["Fedor Kocherga"]
    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

2 entries across 2 versions & 1 rubygems

Version Path
fkocherga-cmd_line_test-0.1.2 Rakefile
fkocherga-cmd_line_test-0.1.3 Rakefile