forked from shakacode/react_on_rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.rake
80 lines (62 loc) · 3.08 KB
/
release.rake
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
# frozen_string_literal: true
require_relative "task_helpers"
require_relative File.join(gem_root, "lib", "react_on_rails", "version_syntax_converter")
require_relative File.join(gem_root, "lib", "react_on_rails", "git_utils")
require_relative File.join(gem_root, "lib", "react_on_rails", "utils")
desc("Releases both the gem and node package using the given version.
IMPORTANT: the gem version must be in valid rubygem format (no dashes).
It will be automatically converted to a valid yarn semver by the rake task
for the node package version. This only makes a difference for pre-release
versions such as `3.0.0.beta.1` (yarn version would be `3.0.0-beta.1`).
This task depends on the gem-release (ruby gem) and release-it (node package)
which are installed via `bundle install` and `yarn`
1st argument: The new version in rubygem format (no dashes). Pass no argument to
automatically perform a patch version bump.
2nd argument: Perform a dry run by passing 'true' as a second argument.
Example: `rake release[2.1.0,false]`")
# rubocop:disable Metrics/BlockLength
task :release, %i[gem_version dry_run tools_install] do |_t, args|
include ReactOnRails::TaskHelpers
class MessageHandler
def add_error(error)
raise error
end
end
# Check if there are uncommited changes
ReactOnRails::GitUtils.uncommitted_changes?(MessageHandler.new)
args_hash = args.to_hash
is_dry_run = ReactOnRails::Utils.object_to_boolean(args_hash[:dry_run])
gem_version = args_hash.fetch(:gem_version, "")
npm_version = if gem_version.strip.empty?
""
else
ReactOnRails::VersionSyntaxConverter.new.rubygem_to_npm(gem_version)
end
# Having the examples prevents publishing
Rake::Task["examples:clobber"].invoke
# Delete any react_on_rails.gemspec except the root one
sh_in_dir(gem_root, "find . -mindepth 2 -name 'react_on_rails.gemspec' -delete")
# See https://github.com/svenfuchs/gem-release
sh_in_dir(gem_root, "git pull --rebase")
sh_in_dir(gem_root, "gem bump --no-commit #{gem_version.strip.empty? ? '' : %(--version #{gem_version})}")
# Update dummy app's Gemfile.lock
bundle_install_in(dummy_app_dir)
# Stage changes so far
sh_in_dir(gem_root, "git add .")
# Will bump the yarn version, commit, tag the commit, push to repo, and release on yarn
release_it_command = "$(yarn bin)/release-it".dup
release_it_command << " #{npm_version}" unless npm_version.strip.empty?
release_it_command << " --non-interactive --npm.publish"
release_it_command << " --dry-run --verbose" if is_dry_run
sh_in_dir(gem_root, release_it_command)
# Release the new gem version
unless is_dry_run
sh_in_dir(gem_root, "gem release")
# Update master with new npm version
sleep 5 # short pause to make sure npmjs has time to update
sh_in_dir(File.join(gem_root, "spec", "dummy", "client"), "yarn add react-on-rails@#{npm_version} --exact")
sh_in_dir(gem_root, "git commit -am 'Updated spec/dummy/client/package.json latest version'")
sh_in_dir(gem_root, "git push")
end
end
# rubocop:enable Metrics/BlockLength