Sha256: 0b23efabb8cb36b907fe0e06d10d64f9be2af72d5bdf2e7c1eba09436bc6c3be

Contents?: true

Size: 691 Bytes

Versions: 147

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

147 entries across 147 versions & 13 rubygems

Version Path
killbill-9.4.1 generators/active_merchant/templates/Rakefile.rb
killbill-8.3.6 generators/active_merchant/templates/Rakefile.rb
killbill-9.4.0 generators/active_merchant/templates/Rakefile.rb
killbill-9.3.2 generators/active_merchant/templates/Rakefile.rb
killbill-9.3.1 generators/active_merchant/templates/Rakefile.rb
killbill-8.3.5 generators/active_merchant/templates/Rakefile.rb
killbill-9.3.0 generators/active_merchant/templates/Rakefile.rb
killbill-9.2.2 generators/active_merchant/templates/Rakefile.rb
killbill-8.3.4 generators/active_merchant/templates/Rakefile.rb
killbill-8.3.3 generators/active_merchant/templates/Rakefile.rb
killbill-9.2.1 generators/active_merchant/templates/Rakefile.rb
killbill-9.2.0 generators/active_merchant/templates/Rakefile.rb
killbill-8.3.2 generators/active_merchant/templates/Rakefile.rb
killbill-paypal-express-5.0.4 Rakefile
killbill-paypal-express-5.0.3 Rakefile
killbill-paypal-express-5.0.2 Rakefile
killbill-orbital-0.1.3 Rakefile
killbill-orbital-0.1.2 Rakefile
killbill-paypal-express-5.0.1 Rakefile
killbill-orbital-0.1.1 Rakefile