1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
require 'bundler'
require 'rspec/core/rake_task'
module Bundler
class GemHelper
def build_gem_with_built_spec
spec = Gem::Specification.load(spec_path)
spec_ruby = spec.to_ruby
original_spec_path = spec_path + ".original"
FileUtils.mv(spec_path, original_spec_path)
File.open(spec_path, "wb"){|f| f.write(spec_ruby)}
build_gem_without_built_spec
ensure
FileUtils.mv(original_spec_path, spec_path)
end
alias build_gem_without_built_spec build_gem
alias build_gem build_gem_with_built_spec
end
end
Bundler::GemHelper.install_tasks
RSpec::Core::RakeTask.new('spec')
task :default => :spec
begin
require 'github_changelog_generator/task'
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
version = File.read(File.expand_path('VERSION', __dir__)).strip
config.future_release = "v#{version}" if version =~ /^\d+\.\d+.\d+$/
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
config.exclude_labels = %w{duplicate question invalid wontfix wont-fix skip-changelog}
config.user = 'voxpupuli'
config.project = 'librarian'
end
rescue LoadError
end
|