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