Sha256: 96826bdea9b552ec09f902c4e7f610c54e4b2ddd8fa6727585c3f11e38020fc2
Contents?: true
Size: 450 Bytes
Versions: 10
Compression:
Stored size: 450 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 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 # Run tests by default task :default => 'test:remote:spec'
Version data entries
10 entries across 10 versions & 1 rubygems