Sha256: fae5502303ce351b22934131ef1e8c80ab0314af19e1b7f0da25bcc89cceff53

Contents?: true

Size: 549 Bytes

Versions: 1

Compression:

Stored size: 549 Bytes

Contents

require 'bundler/gem_tasks'

begin
  require 'rspec/core/rake_task'

  RSpec::Core::RakeTask.new(:spec) do |t|
    t.rspec_opts = "--tag ~standalone --tag standard"
  end

  RSpec::Core::RakeTask.new(:spec_standalone) do |t|
    t.rspec_opts = "--tag standalone --tag ~standard"
  end

  task :default => :spec
rescue LoadError
  # no rspec available
end

begin
  require 'ruby-lint/rake_task'

  RubyLint::RakeTask.new do |task|
    task.name  = 'lint'
    task.files = Dir.glob('lib/**/*.rb')
  end
rescue LoadError
  # no ruby-lint available
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hiera-fragment-0.0.6 Rakefile