require 'simplecov' require './lib/rmagick/version' require 'fileutils' require 'English' desc "Open an irb session preloaded with this library" task :console do sh "irb -r ./ext/RMagick/extconf.rb -r ./lib/rmagick.rb" end task :config do def version Magick::VERSION end # e.g. 2.13.3 becomes RMagick_2-13-3 def version_tag "RMagick_#{version.tr('.', '-')}" end # e.g. 2.13.3 becomes rmagick-2.13.3.gem def gem_name "rmagick-#{version}.gem" end def base File.expand_path(__dir__) end end desc 'abort when repo is not clean or has uncommited code' task :assert_clean_repo do sh('git diff --exit-code') abort 'Git repo not clean' unless $CHILD_STATUS.success? sh('git diff-index --quiet --cached HEAD') abort 'Git repo not commited' unless $CHILD_STATUS.success? end desc 'build gem' task build: [:config] do sh 'gem build -V rmagick.gemspec' if $CHILD_STATUS.success? FileUtils.mkdir_p(File.join(base, 'pkg')) FileUtils.mv(File.join(base, gem_name), 'pkg') else warn 'Could not build gem' exit $CHILD_STATUS.exitstatus end end task push_and_tag: [:build] do sh "gem push #{File.join(base, 'pkg', gem_name)}" if $CHILD_STATUS.success? sh "git tag -a -m \"Version #{version}\" #{version_tag}" STDOUT.puts "Tagged #{version_tag}." sh 'git push' sh 'git push --tags' else abort 'tagging aborted pushing gem failed' end end desc 'Release' task release: %i[assert_clean_repo push_and_tag] namespace :website do PATH_TO_LOCAL_WEBSITE_REPOSITORY = File.expand_path('../rmagick.github.io') def replace_reversion(lines) now = Time.new now = now.strftime('%m/%d/%y') lines.each do |line| line.gsub!(/0\.0\.0/, Magick::VERSION) line.gsub!(%r{YY/MM/DD}, now) end lines end def update_html(input_dir, output_dir, file_name) lines = File.readlines(File.join(input_dir, file_name)) lines = replace_reversion(lines) File.open(File.join(output_dir, file_name), 'w') { |f| lines.each { |line| f.write line } } end ENTITY = { '&' => '&', '>' => '>', '<' => '<' }.freeze def file_to_html(input_dir, input_file_name, output_dir, output_file_name) File.open(File.join(input_dir, input_file_name)) do |src| File.open(File.join(output_dir, output_file_name), 'w') do |dest| dest.puts <<~END_EXHTMLHEAD
END_EXHTMLHEAD src.each do |line| line.gsub!(/[&><]/) { |s| ENTITY[s] } dest.puts(line) end dest.puts <<~END_EXHTMLTAIL