Sha256: 5c06ae39518d70ef1608ca65c2cc29764f0a3812303b7cfc9686371ade503ff4

Contents?: true

Size: 516 Bytes

Versions: 14

Compression:

Stored size: 516 Bytes

Contents

#!/usr/bin/env rake
# frozen_string_literal: true

require "bundler/gem_tasks"
require "rubygems/package_task"
require "rake/testtask"

Rake::TestTask.new do |t|
  t.libs << "test"
  t.test_files = FileList["test/**/*_test.rb"]
  t.verbose = true
  t.warning = false
end

task default: :test

require "rubocop/rake_task"

RuboCop::RakeTask.new(:rubocop)

GEMSPEC = Bundler.load_gemspec("html-pipeline.gemspec")
gem_path = Gem::PackageTask.new(GEMSPEC).define
desc "Package the ruby gem"
task "package" => [gem_path]

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
html-pipeline-3.2.2 Rakefile
html-pipeline-3.2.1 Rakefile
html-pipeline-3.2.0 Rakefile
html-pipeline-3.1.1 Rakefile
html-pipeline-3.1.0 Rakefile
html-pipeline-3.0.3 Rakefile
html-pipeline-3.0.2 Rakefile
html-pipeline-3.0.1 Rakefile
html-pipeline-3.0.0 Rakefile
html-pipeline-3.0.0.pre6 Rakefile
html-pipeline-3.0.0.pre5 Rakefile
html-pipeline-3.0.0.pre3 Rakefile
html-pipeline-3.0.0.pre2 Rakefile
html-pipeline-3.0.0.pre1 Rakefile