Sha256: 6d9b320473b67662af8c687f83736d54258dbaeff6e4c5bd6c238356eae68629

Contents?: true

Size: 691 Bytes

Versions: 46

Compression:

Stored size: 691 Bytes

Contents

#!/usr/bin/env rake

# Install tasks to build and release the plugin
require 'bundler/setup'
Bundler::GemHelper.install_tasks

# Install test tasks
require 'rspec/core/rake_task'
namespace :test do
  desc "Run RSpec tests"
  RSpec::Core::RakeTask.new do |task|
    task.name = 'spec'
    task.pattern = './spec/*/*_spec.rb'
  end

  namespace :remote do
    desc "Run RSpec remote tests"
    RSpec::Core::RakeTask.new do |task|
      task.name = 'spec'
      task.pattern = './spec/*/remote/*_spec.rb'
    end
  end
end

# Install tasks to package the plugin for Killbill
require 'killbill/rake_task'
Killbill::PluginHelper.install_tasks

# Run tests by default
task :default => 'test:spec'

Version data entries

46 entries across 46 versions & 3 rubygems

Version Path
killbill-stripe-0.1.0 Rakefile
killbill-paypal-express-1.7.0 Rakefile
killbill-litle-1.10.0 Rakefile
killbill-paypal-express-1.6.7 Rakefile
killbill-litle-1.9.9 Rakefile
killbill-paypal-express-1.6.6 Rakefile
killbill-litle-1.9.8 Rakefile
killbill-litle-1.9.7 Rakefile
killbill-paypal-express-1.6.5 Rakefile
killbill-litle-1.9.6 Rakefile
killbill-paypal-express-1.6.4 Rakefile
killbill-paypal-express-1.6.3 Rakefile
killbill-litle-1.9.5 Rakefile
killbill-paypal-express-1.6.2 Rakefile
killbill-litle-1.9.4 Rakefile
killbill-litle-1.9.3 Rakefile
killbill-litle-1.9.2 Rakefile
killbill-paypal-express-1.6.1 Rakefile
killbill-litle-1.9.1 Rakefile
killbill-litle-1.9.0 Rakefile