Sha256: 1e727d10e970a321ddb2a4551e554dbaa28e043f8d54b156fbacc1d328eff812

Contents?: true

Size: 483 Bytes

Versions: 5

Compression:

Stored size: 483 Bytes

Contents

require "bundler/gem_tasks"
require "rake/testtask"

desc "Run the unit test suite"
task :default => 'test:unit'
task :test => 'test:unit'

namespace :test do
  Rake::TestTask.new(:unit) do |t|
    t.pattern = 'test/unit/**/*_test.rb'
    t.ruby_opts << '-rubygems -w'
    t.libs << 'test'
    t.verbose = true
  end

  Rake::TestTask.new(:remote) do |t|
    t.pattern = 'test/remote/**/*_test.rb'
    t.ruby_opts << '-rubygems -w'
    t.libs << 'test'
    t.verbose = true
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
billplz-api-0.2.1 Rakefile
billplz-api-0.2.0 Rakefile
billplz-api-0.1.0 Rakefile
billplz-0.1.3 Rakefile
billplz-0.1.2 Rakefile