Sha256: 21ef14255742d1ae43d1c4ebded02f2a9753b79785b1fbcb2db09d487cdb472e

Contents?: true

Size: 490 Bytes

Versions: 83

Compression:

Stored size: 490 Bytes

Contents

require "bundler/gem_tasks"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec)

namespace :spec do
  namespace :armrest do
    desc 'Run tests for the Armrest module'
    RSpec::Core::RakeTask.new(:module) do |t|
      t.pattern = ['spec/armrest_module_spec.rb']
    end

    desc 'Run tests for the Armrest::ArmrestService base class'
    RSpec::Core::RakeTask.new(:service) do |t|
      t.pattern = ['spec/armrest_service_spec.rb']
    end
  end
end

task :default => :spec

Version data entries

83 entries across 83 versions & 1 rubygems

Version Path
azure-armrest-0.15.0 Rakefile
azure-armrest-0.14.0 Rakefile
azure-armrest-0.13.1 Rakefile
azure-armrest-0.13.0 Rakefile
azure-armrest-0.12.0 Rakefile
azure-armrest-0.11.0 Rakefile
azure-armrest-0.9.16 Rakefile
azure-armrest-0.10.0 Rakefile
azure-armrest-0.9.15 Rakefile
azure-armrest-0.9.14 Rakefile
azure-armrest-0.9.13 Rakefile
azure-armrest-0.9.12 Rakefile
azure-armrest-0.9.11 Rakefile
azure-armrest-0.9.10 Rakefile
azure-armrest-0.9.9 Rakefile
azure-armrest-0.9.8 Rakefile
azure-armrest-0.9.7 Rakefile
azure-armrest-0.9.6 Rakefile
azure-armrest-0.9.5 Rakefile
azure-armrest-0.9.4 Rakefile