Sha256: 14a9b71f52a2a6bd3faa64bed21421af631d06d7f714baf1f0ab4d2a353ad604

Contents?: true

Size: 505 Bytes

Versions: 10

Compression:

Stored size: 505 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
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

10 entries across 10 versions & 2 rubygems

Version Path
killbill-helloworld-3.0.0 Rakefile
killbill-kpm-1.1.0 Rakefile
killbill-kpm-1.0.0 Rakefile
killbill-kpm-0.0.5 Rakefile
killbill-kpm-0.0.4 Rakefile
killbill-helloworld-2.0.0 Rakefile
killbill-kpm-0.0.3 Rakefile
killbill-kpm-0.0.2 Rakefile
killbill-helloworld-1.0.0 Rakefile
killbill-helloworld-0.1.0 Rakefile