Sha256: ce58f54ca993a63e633c1cb8e92106e9b858e3d16d70430911407e037b3b97f8

Contents?: true

Size: 617 Bytes

Versions: 3

Compression:

Stored size: 617 Bytes

Contents

# Polisher Project Rakefile
#
# Licensed under the MIT license
# Copyright (C) 2013 Red Hat, Inc.

begin
  require "rspec/core/rake_task"
  desc "Run all specs"
  RSpec::Core::RakeTask.new(:spec) do |spec|
    spec.pattern = 'specs/**/*_spec.rb'
    spec.rspec_opts = ['--backtrace', '-fd', '-c']
  end
rescue LoadError
end

desc "build the polisher gem"
task :build do
  system "gem build polisher.gemspec"
end

begin
  require "yard"
  YARD::Rake::YardocTask.new do |t|
    #t.files   = ['lib/**/*.rb', OTHER_PATHS]   # optional
    #t.options = ['--any', '--extra', '--opts'] # optional
  end
rescue LoadError
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
polisher-0.8.1 Rakefile
polisher-0.7.1 Rakefile
polisher-0.6.1 Rakefile