Sha256: d52e7434515ddd853a13cb890bd57d98068558293491a686dd09f8f362827f86
Contents?: true
Size: 904 Bytes
Versions: 10
Compression:
Stored size: 904 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 namespace :ci do desc 'Run RSpec CI tests' RSpec::Core::RakeTask.new do |task| task.name = 'spec' task.pattern = './spec/**/*_spec.rb' task.rspec_opts = '--tag ~ci_skip' 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
10 entries across 10 versions & 1 rubygems