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.3.2 Rakefile
azure-armrest-0.3.1 Rakefile
azure-armrest-0.3.0 Rakefile
azure-armrest-0.2.7 Rakefile
azure-armrest-0.2.6 Rakefile
azure-armrest-0.2.5 Rakefile
azure-armrest-0.2.4 Rakefile
azure-armrest-0.2.3 Rakefile
azure-armrest-0.2.2 Rakefile
azure-armrest-0.2.1 Rakefile
azure-armrest-0.2.0 Rakefile
azure-armrest-0.1.3 Rakefile
azure-armrest-0.1.2 Rakefile
azure-armrest-0.1.1 Rakefile
azure-armrest-0.1.0 Rakefile
azure-armrest-0.0.9 Rakefile
azure-armrest-0.0.8 Rakefile
azure-armrest-0.0.7 Rakefile
azure-armrest-0.0.6 Rakefile
azure-armrest-0.0.5 Rakefile