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