Sha256: ff5f0cca359a14903afe5eb5dc1cef2679283140b50ec5fefed19c04d5d4b8c7

Contents?: true

Size: 577 Bytes

Versions: 49

Compression:

Stored size: 577 Bytes

Contents

require 'bundler/gem_tasks'
begin
  require 'rspec/core/rake_task'
  require 'octorelease'
rescue LoadError
end

if defined?(RSpec)
  task spec: 'spec:all'
  namespace :spec do
    task all: ['spec:type', 'spec:generator_spec', 'spec:generator_doc']

    RSpec::Core::RakeTask.new(:type) do |t|
      t.pattern = 'spec/type/*_spec.rb'
    end

    RSpec::Core::RakeTask.new(:generator_spec) do |t|
      t.pattern = 'spec/generator/spec/*_spec.rb'
    end

    RSpec::Core::RakeTask.new(:generator_doc) do |t|
      t.pattern = 'spec/generator/doc/*_spec.rb'
    end
  end
end

Version data entries

49 entries across 49 versions & 1 rubygems

Version Path
awspec-0.9.0 Rakefile
awspec-0.8.1 Rakefile
awspec-0.8.0 Rakefile
awspec-0.7.0 Rakefile
awspec-0.6.4 Rakefile
awspec-0.6.3 Rakefile
awspec-0.6.2 Rakefile
awspec-0.6.1 Rakefile
awspec-0.6.0 Rakefile