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.5.2 Rakefile
azure-armrest-0.5.1 Rakefile
azure-armrest-0.5.0 Rakefile
azure-armrest-0.4.2 Rakefile
azure-armrest-0.4.1 Rakefile
azure-armrest-0.4.0 Rakefile
azure-armrest-0.3.13 Rakefile
azure-armrest-0.3.12 Rakefile
azure-armrest-0.3.11 Rakefile
azure-armrest-0.3.10 Rakefile
azure-armrest-0.3.9 Rakefile
azure-armrest-0.3.8 Rakefile
azure-armrest-0.3.7 Rakefile
azure-armrest-0.2.10 Rakefile
azure-armrest-0.3.6 Rakefile
azure-armrest-0.2.9 Rakefile
azure-armrest-0.3.5 Rakefile
azure-armrest-0.3.4 Rakefile
azure-armrest-0.3.3 Rakefile
azure-armrest-0.2.8 Rakefile