Sha256: 0fa6d041f4d048dfbdd51e208f255920480ec3c635655e506eb69f956ea90adc

Contents?: true

Size: 1.02 KB

Versions: 8

Compression:

Stored size: 1.02 KB

Contents

require 'rake'
require 'rspec/core/rake_task'

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

task :default => :spec

task :modspec do
    FileList["static-modules/**/Rakefile"].each do |project|
        Rake::Task.clear
        load project
        dir = project.pathmap("%d")
        Dir.chdir(dir) do
          spec_task = Rake::Task[:spec]
          spec_task.invoke()
        end
    end
end

require 'puppet-lint/tasks/puppet-lint'
PuppetLint.configuration.ignore_paths =['modules/**/*', 'vendor/**/*']
PuppetLint.configuration.send("disable_80chars")

desc "Run serverspec to all hosts"
task :spec => 'serverspec:all'

class ServerspecTask < RSpec::Core::RakeTask

  attr_accessor :target

  def spec_command
    cmd = super
    "env TARGET_HOST=#{target} #{cmd}"
  end

end

namespace :serverspec do

  %w(<%=@name%>).each do |profile|
    ServerspecTask.new(profile.to_sym) do |t|
      t.target = profile
      t.pattern = "spec/#{profile}/*_spec.rb"
    end
  end
end

task :default => 'serverspec:minimal'

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
opskeleton-0.7.3 templates/puppet/Rakefile
opskeleton-0.7.2 templates/puppet/Rakefile
opskeleton-0.7.1 templates/puppet/Rakefile
opskeleton-0.7.0 templates/puppet/Rakefile
opskeleton-0.6.9 templates/puppet/Rakefile
opskeleton-0.6.7 templates/puppet/Rakefile
opskeleton-0.6.6 templates/puppet/Rakefile
opskeleton-0.6.5 templates/puppet/Rakefile