Sha256: 71c4babdbacab4ce2b074d7c3407062401c9075e4dbee7e172a0d6ab8a5112c4
Contents?: true
Size: 590 Bytes
Versions: 50
Compression:
Stored size: 590 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/*/{,helpers/}*_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 # Run tests by default task :default => 'test:spec'
Version data entries
50 entries across 50 versions & 1 rubygems