forked from bensheldon/good_job
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
94 lines (73 loc) · 3.08 KB
/
Rakefile
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# frozen_string_literal: true
begin
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
require_relative "lib/good_job/version"
Rake.load_rakefile 'demo/Rakefile'
Bundler::GemHelper.install_tasks
require 'rdoc/task'
RDoc::Task.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'GoodJob'
rdoc.options << '--line-numbers'
rdoc.rdoc_files.include('README.md')
rdoc.rdoc_files.include('lib/**/*.rb')
end
def system!(*args)
system(*args) || abort("\n== Command #{args} failed ==")
end
desc 'Commit version and changelog'
task :release_good_job, [:version_bump] do |_t, args|
require 'dotenv/load'
version_bump = args[:version_bump]
if version_bump.nil?
puts "Pass a version [major|minor|patch|pre|release] or a given version number [x.x.x]:"
puts "$ bundle exec rake release[VERSION_BUMP]"
exit(1)
end
puts "\n== Bumping version number =="
system! "gem bump --no-commit --version #{version_bump}"
puts "\n== Reloading GoodJob::VERSION"
load File.expand_path('lib/good_job/version.rb', __dir__)
puts GoodJob::VERSION
puts "\n== Updating Changelog =="
system! ENV, "bundle exec github_changelog_generator --user bensheldon --project good_job --future-release v#{GoodJob::VERSION} --cache-file=tmp/github-changelog-http-cache"
puts "\n== Updating Gemfile.lock version =="
system! "bundle update --conservative good_job"
puts "\n== Verifying Gemfile.lock =="
gemfile_lock = File.read(File.join(File.dirname(__FILE__), 'Gemfile.lock'))
unless gemfile_lock.include?("jdbc-postgres")
puts "ABORTING...\nMissing JRuby library. Gemfile.lock has possibly been corrupted. Inspect the diff."
exit(1)
end
puts "\n== Creating gem package and sha512 checksum =="
system! "bundle exec rake build:checksum"
puts "\n== Creating sha256 checksum too =="
require "digest/sha2"
gem_filename = "good_job-#{GoodJob::VERSION}.gem"
sha256_checksum = Digest::SHA256.hexdigest File.read "#{__dir__}/pkg/#{gem_filename}"
File.write "#{__dir__}/checksums/#{gem_filename}.sha256", "#{sha256_checksum}\n"
puts "\n== Creating git commit =="
system! "git add lib/good_job/version.rb CHANGELOG.md Gemfile.lock checksums"
system! "git commit -m \"Release good_job v#{GoodJob::VERSION}\""
system! "git tag v#{GoodJob::VERSION}"
require 'cgi'
changelog_anchor = "v#{GoodJob::VERSION.delete('.')}-#{Time.now.utc.strftime('%Y-%m-%d')}"
changelog_url = "https://github.com/bensheldon/good_job/blob/main/CHANGELOG.md##{changelog_anchor}"
puts "\n"
puts <<~INSTRUCTIONS
== Next steps ==
Run the following commands:
1. Push commit and tag to Github:
git push origin && git push origin --tags
2. Push to Rubygems.org:
gem push pkg/good_job-#{GoodJob::VERSION}.gem
3. Author a Github Release:
https://github.com/bensheldon/good_job/releases/new?tag=v#{GoodJob::VERSION}&body=#{CGI.escape "_Review the [Changelog](#{changelog_url}) for more details._"}
INSTRUCTIONS
end
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:rspec)
task default: :rspec