Sha256: a4ab268b285683ebfea4ecd10bfcf2f2120a23750f9e802ed8adca1fcf0ae6d0

Contents?: true

Size: 870 Bytes

Versions: 1

Compression:

Stored size: 870 Bytes

Contents

require 'rake'

# Echoe project management
require 'echoe'
Echoe.new('ruby_psigate') do |p|
  p.author = "Simon Chiu"
  p.email = "skhchiu@gmail.com"
  p.summary = "A library to connect with the XML and Account interfaces of Psigate's servers"
  p.description = "RubyPsigate parses and packages XML messages to/from Psigate's servers for transactions and recurring billing management."
  p.url = "http://oss.simonchiu.com"
end

# Use rake:test:units when in development mode so you don't end up pinging Psigate's server every time!
namespace :test do
  Rake::TestTask.new(:units) do |t|
    t.pattern = 'test/unit/**/*_test.rb'
    t.ruby_opts << '-rubygems'
    t.libs << 'test'
    t.verbose = true
  end

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby_psigate-0.7 Rakefile