Sha256: 8c26ebbb028377f5fa1aada791309b3a005e20a45ef7afacffae5d1a45a24bf0
Contents?: true
Size: 454 Bytes
Versions: 2
Compression:
Stored size: 454 Bytes
Contents
require "bundler/gem_tasks" begin require 'rspec/core/rake_task' desc 'Run All Tests' RSpec::Core::RakeTask.new(:spec) desc 'Run Only Unit Tests' RSpec::Core::RakeTask.new(:unit) do |t| t.pattern = './spec/unit/**/*_spec.rb' end desc 'Run Only Integration Tests' RSpec::Core::RakeTask.new(:integration) do |t| t.pattern = './spec/integration/*_spec.rb' end task default: :spec rescue LoadError # no rspec available end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bandwidth-sdk-11.0.0.pre.beta.1.1 | Rakefile |
bandwidth-sdk-11.0.0.pre.beta.1 | Rakefile |