2017-08-13 08:41:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-01-08 15:45:38 -05:00
|
|
|
# Order dependent. E.g. Action Mailbox depends on Active Record so it should be after.
|
2019-01-08 13:36:33 -05:00
|
|
|
FRAMEWORKS = %w(
|
2019-01-08 15:45:38 -05:00
|
|
|
activesupport
|
2019-01-08 13:36:33 -05:00
|
|
|
activemodel
|
|
|
|
activerecord
|
2019-01-08 15:45:38 -05:00
|
|
|
actionview
|
|
|
|
actionpack
|
|
|
|
activejob
|
|
|
|
actionmailer
|
2019-01-08 13:36:33 -05:00
|
|
|
actioncable
|
2019-01-08 15:45:38 -05:00
|
|
|
activestorage
|
2019-01-08 13:36:33 -05:00
|
|
|
actionmailbox
|
|
|
|
actiontext
|
|
|
|
railties
|
|
|
|
)
|
2016-11-30 12:28:22 -05:00
|
|
|
FRAMEWORK_NAMES = Hash.new { |h, k| k.split(/(?<=active|action)/).map(&:capitalize).join(" ") }
|
2010-11-16 18:42:14 -05:00
|
|
|
|
2017-05-15 10:17:28 -04:00
|
|
|
root = File.expand_path("..", __dir__)
|
2010-11-16 18:42:14 -05:00
|
|
|
version = File.read("#{root}/RAILS_VERSION").strip
|
2010-11-16 19:03:57 -05:00
|
|
|
tag = "v#{version}"
|
2010-11-16 18:42:14 -05:00
|
|
|
|
2011-08-04 17:29:37 -04:00
|
|
|
directory "pkg"
|
2010-11-16 18:42:14 -05:00
|
|
|
|
2016-11-27 14:29:55 -05:00
|
|
|
# This "npm-ifies" the current version number
|
|
|
|
# With npm, versions such as "5.0.0.rc1" or "5.0.0.beta1.1" are not compliant with its
|
|
|
|
# versioning system, so they must be transformed to "5.0.0-rc1" and "5.0.0-beta1-1" respectively.
|
|
|
|
|
|
|
|
# "5.0.1" --> "5.0.1"
|
|
|
|
# "5.0.1.1" --> "5.0.1-1" *
|
|
|
|
# "5.0.0.rc1" --> "5.0.0-rc1"
|
|
|
|
#
|
|
|
|
# * This makes it a prerelease. That's bad, but we haven't come up with
|
|
|
|
# a better solution at the moment.
|
|
|
|
npm_version = version.gsub(/\./).with_index { |s, i| i >= 2 ? "-" : s }
|
|
|
|
|
2016-08-06 13:22:32 -04:00
|
|
|
(FRAMEWORKS + ["rails"]).each do |framework|
|
2010-11-16 18:42:14 -05:00
|
|
|
namespace framework do
|
2011-08-04 17:29:37 -04:00
|
|
|
gem = "pkg/#{framework}-#{version}.gem"
|
2010-11-16 18:42:14 -05:00
|
|
|
gemspec = "#{framework}.gemspec"
|
|
|
|
|
|
|
|
task :clean do
|
|
|
|
rm_f gem
|
|
|
|
end
|
|
|
|
|
2014-03-25 14:35:06 -04:00
|
|
|
task :update_versions do
|
2010-11-16 18:42:14 -05:00
|
|
|
glob = root.dup
|
2014-03-25 14:35:06 -04:00
|
|
|
if framework == "rails"
|
|
|
|
glob << "/version.rb"
|
|
|
|
else
|
|
|
|
glob << "/#{framework}/lib/*"
|
|
|
|
glob << "/gem_version.rb"
|
|
|
|
end
|
2010-11-16 18:42:14 -05:00
|
|
|
|
|
|
|
file = Dir[glob].first
|
|
|
|
ruby = File.read(file)
|
|
|
|
|
2016-08-06 13:22:32 -04:00
|
|
|
major, minor, tiny, pre = version.split(".", 4)
|
2014-03-25 14:35:06 -04:00
|
|
|
pre = pre ? pre.inspect : "nil"
|
2013-04-01 17:26:34 -04:00
|
|
|
|
2014-03-25 14:35:06 -04:00
|
|
|
ruby.gsub!(/^(\s*)MAJOR(\s*)= .*?$/, "\\1MAJOR = #{major}")
|
|
|
|
raise "Could not insert MAJOR in #{file}" unless $1
|
2013-04-01 17:26:34 -04:00
|
|
|
|
2014-03-25 14:35:06 -04:00
|
|
|
ruby.gsub!(/^(\s*)MINOR(\s*)= .*?$/, "\\1MINOR = #{minor}")
|
|
|
|
raise "Could not insert MINOR in #{file}" unless $1
|
2013-04-01 17:26:34 -04:00
|
|
|
|
2014-03-25 14:35:06 -04:00
|
|
|
ruby.gsub!(/^(\s*)TINY(\s*)= .*?$/, "\\1TINY = #{tiny}")
|
|
|
|
raise "Could not insert TINY in #{file}" unless $1
|
2013-04-01 17:26:34 -04:00
|
|
|
|
2014-03-25 14:35:06 -04:00
|
|
|
ruby.gsub!(/^(\s*)PRE(\s*)= .*?$/, "\\1PRE = #{pre}")
|
|
|
|
raise "Could not insert PRE in #{file}" unless $1
|
2010-11-16 18:42:14 -05:00
|
|
|
|
2016-08-06 13:22:32 -04:00
|
|
|
File.open(file, "w") { |f| f.write ruby }
|
2016-11-27 14:29:55 -05:00
|
|
|
|
|
|
|
require "json"
|
|
|
|
if File.exist?("#{framework}/package.json") && JSON.parse(File.read("#{framework}/package.json"))["version"] != npm_version
|
|
|
|
Dir.chdir("#{framework}") do
|
|
|
|
if sh "which npm"
|
|
|
|
sh "npm version #{npm_version} --no-git-tag-version"
|
|
|
|
else
|
|
|
|
raise "You must have npm installed to release Rails."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-07-01 10:47:11 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
task gem => %w(update_versions pkg) do
|
|
|
|
cmd = ""
|
2017-08-13 08:41:05 -04:00
|
|
|
cmd += "cd #{framework} && " unless framework == "rails"
|
|
|
|
cmd += "bundle exec rake package && " unless framework == "rails"
|
|
|
|
cmd += "gem build #{gemspec} && mv #{framework}-#{version}.gem #{root}/pkg/"
|
2016-07-01 10:47:11 -04:00
|
|
|
sh cmd
|
|
|
|
end
|
|
|
|
|
2016-08-06 13:40:54 -04:00
|
|
|
task build: [:clean, gem]
|
|
|
|
task install: :build do
|
2016-07-01 10:47:11 -04:00
|
|
|
sh "gem install --pre #{gem}"
|
|
|
|
end
|
|
|
|
|
2016-08-06 13:40:54 -04:00
|
|
|
task push: :build do
|
2016-07-01 10:47:11 -04:00
|
|
|
sh "gem push #{gem}"
|
2016-05-07 10:41:23 -04:00
|
|
|
|
|
|
|
if File.exist?("#{framework}/package.json")
|
|
|
|
Dir.chdir("#{framework}") do
|
2018-07-28 17:37:17 -04:00
|
|
|
npm_tag = /[a-z]/.match?(version) ? "pre" : "latest"
|
2016-11-27 14:29:55 -05:00
|
|
|
sh "npm publish --tag #{npm_tag}"
|
2016-05-07 10:41:23 -04:00
|
|
|
end
|
|
|
|
end
|
2010-11-16 18:42:14 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-04-18 17:43:24 -04:00
|
|
|
namespace :changelog do
|
2015-10-30 15:33:31 -04:00
|
|
|
task :header do
|
2016-08-06 13:22:32 -04:00
|
|
|
(FRAMEWORKS + ["guides"]).each do |fw|
|
|
|
|
require "date"
|
|
|
|
fname = File.join fw, "CHANGELOG.md"
|
2016-11-27 14:29:55 -05:00
|
|
|
current_contents = File.read(fname)
|
2015-10-30 15:33:31 -04:00
|
|
|
|
2016-11-27 14:29:55 -05:00
|
|
|
header = "## Rails #{version} (#{Date.today.strftime('%B %d, %Y')}) ##\n\n"
|
2018-08-15 01:34:31 -04:00
|
|
|
header += "* No changes.\n\n\n" if current_contents.start_with?("##")
|
2016-11-27 14:29:55 -05:00
|
|
|
contents = header + current_contents
|
2018-05-05 13:26:56 -04:00
|
|
|
File.write(fname, contents)
|
2015-10-30 15:33:31 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-04-18 17:43:24 -04:00
|
|
|
task :release_date do
|
2016-08-06 13:22:32 -04:00
|
|
|
(FRAMEWORKS + ["guides"]).each do |fw|
|
|
|
|
require "date"
|
2015-10-30 15:33:31 -04:00
|
|
|
replace = "## Rails #{version} (#{Date.today.strftime('%B %d, %Y')}) ##\n"
|
2016-08-06 13:22:32 -04:00
|
|
|
fname = File.join fw, "CHANGELOG.md"
|
2011-04-18 17:43:24 -04:00
|
|
|
|
2015-10-30 15:33:31 -04:00
|
|
|
contents = File.read(fname).sub(/^(## Rails .*)\n/, replace)
|
2018-05-05 13:26:56 -04:00
|
|
|
File.write(fname, contents)
|
2011-04-18 17:43:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-18 16:35:09 -05:00
|
|
|
task :release_summary, [:base_release, :release] do |_, args|
|
2018-12-04 13:05:53 -05:00
|
|
|
release_regexp = args[:base_release] ? Regexp.escape(args[:base_release]) : /\d+\.\d+\.\d+/
|
|
|
|
|
2019-01-18 16:35:09 -05:00
|
|
|
puts release
|
|
|
|
|
2018-12-04 13:05:53 -05:00
|
|
|
FRAMEWORKS.each do |fw|
|
|
|
|
puts "## #{FRAMEWORK_NAMES[fw]}"
|
2016-08-06 13:22:32 -04:00
|
|
|
fname = File.join fw, "CHANGELOG.md"
|
2011-04-18 17:43:24 -04:00
|
|
|
contents = File.readlines fname
|
|
|
|
contents.shift
|
|
|
|
changes = []
|
2019-01-18 16:35:09 -05:00
|
|
|
until contents.first =~ /^## Rails #{release_regexp}.*$/ ||
|
|
|
|
contents.first =~ /^Please check.*for previous changes\.$/ ||
|
|
|
|
contents.empty?
|
2018-12-04 13:05:53 -05:00
|
|
|
changes << contents.shift
|
|
|
|
end
|
|
|
|
|
|
|
|
puts changes.join
|
2011-04-18 17:43:24 -04:00
|
|
|
puts
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-11-16 19:30:53 -05:00
|
|
|
namespace :all do
|
2016-08-06 13:40:54 -04:00
|
|
|
task build: FRAMEWORKS.map { |f| "#{f}:build" } + ["rails:build"]
|
|
|
|
task update_versions: FRAMEWORKS.map { |f| "#{f}:update_versions" } + ["rails:update_versions"]
|
|
|
|
task install: FRAMEWORKS.map { |f| "#{f}:install" } + ["rails:install"]
|
|
|
|
task push: FRAMEWORKS.map { |f| "#{f}:push" } + ["rails:push"]
|
2010-11-16 19:30:53 -05:00
|
|
|
|
2010-11-16 19:03:57 -05:00
|
|
|
task :ensure_clean_state do
|
2017-07-22 11:49:40 -04:00
|
|
|
unless `git status -s | grep -v 'RAILS_VERSION\\|CHANGELOG\\|Gemfile.lock\\|package.json\\|version.rb\\|tasks/release.rb'`.strip.empty?
|
2010-11-16 19:03:57 -05:00
|
|
|
abort "[ABORTING] `git status` reports a dirty tree. Make sure all changes are committed"
|
|
|
|
end
|
|
|
|
|
2016-08-06 13:22:32 -04:00
|
|
|
unless ENV["SKIP_TAG"] || `git tag | grep '^#{tag}$'`.strip.empty?
|
2010-11-16 19:03:57 -05:00
|
|
|
abort "[ABORTING] `git tag` shows that #{tag} already exists. Has this version already\n"\
|
|
|
|
" been released? Git tagging can be skipped by setting SKIP_TAG=1"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-22 11:49:40 -04:00
|
|
|
task verify: :install do
|
2019-01-15 14:21:32 -05:00
|
|
|
require "tmpdir"
|
|
|
|
|
|
|
|
cd Dir.tmpdir
|
|
|
|
app_name = "verify-#{version}-#{Time.now.to_i}"
|
2017-07-25 15:58:33 -04:00
|
|
|
sh "rails _#{version}_ new #{app_name} --skip-bundle" # Generate with the right version.
|
2017-07-22 11:49:40 -04:00
|
|
|
cd app_name
|
2017-07-25 15:58:33 -04:00
|
|
|
|
2019-01-15 14:21:32 -05:00
|
|
|
substitute = -> (file_name, regex, replacement) do
|
|
|
|
File.write(file_name, File.read(file_name).sub(regex, replacement))
|
|
|
|
end
|
|
|
|
|
2017-07-25 15:58:33 -04:00
|
|
|
# Replace the generated gemfile entry with the exact version.
|
2019-01-15 14:21:32 -05:00
|
|
|
substitute.call("Gemfile", /^gem 'rails.*/, "gem 'rails', '#{version}'")
|
|
|
|
substitute.call("Gemfile", /^# gem 'image_processing/, "gem 'image_processing")
|
2017-07-25 15:58:33 -04:00
|
|
|
sh "bundle"
|
2019-01-15 11:18:52 -05:00
|
|
|
sh "rails action_mailbox:install"
|
|
|
|
sh "rails action_text:install"
|
2017-07-25 15:58:33 -04:00
|
|
|
|
2019-01-15 14:21:32 -05:00
|
|
|
sh "rails generate scaffold user name description:text admin:boolean"
|
|
|
|
sh "rails db:migrate"
|
|
|
|
|
|
|
|
# Replace the generated gemfile entry with the exact version.
|
|
|
|
substitute.call("app/models/user.rb", /end\n\z/, <<~CODE)
|
|
|
|
has_one_attached :avatar
|
|
|
|
has_rich_text :description
|
|
|
|
end
|
|
|
|
CODE
|
|
|
|
|
|
|
|
substitute.call("app/views/users/_form.html.erb", /text_area :description %>\n <\/div>/, <<~CODE)
|
|
|
|
rich_text_area :description %>\n </div>
|
|
|
|
|
|
|
|
<div class="field">
|
|
|
|
Avatar: <%= form.file_field :avatar %>
|
|
|
|
</div>
|
|
|
|
CODE
|
|
|
|
|
|
|
|
substitute.call("app/views/users/show.html.erb", /description %>\n<\/p>/, <<~CODE)
|
|
|
|
description %>\n</p>
|
|
|
|
|
|
|
|
<p>
|
2019-01-18 15:39:39 -05:00
|
|
|
<% if @user.avatar.attached? -%>
|
2019-01-24 11:46:42 -05:00
|
|
|
<%= image_tag @user.avatar.representation(resize_to_limit: [500, 500]) %>
|
2019-01-18 15:39:39 -05:00
|
|
|
<% end -%>
|
2019-01-15 14:21:32 -05:00
|
|
|
</p>
|
|
|
|
CODE
|
|
|
|
|
|
|
|
# Permit the avatar param.
|
|
|
|
substitute.call("app/controllers/users_controller.rb", /:admin/, ":admin, :avatar")
|
|
|
|
|
|
|
|
if ENV["EDITOR"]
|
|
|
|
`#{ENV["EDITOR"]} #{File.expand_path(app_name)}`
|
|
|
|
end
|
2017-07-22 11:49:40 -04:00
|
|
|
|
|
|
|
puts "Booting a Rails server. Verify the release by:"
|
|
|
|
puts
|
|
|
|
puts "- Seeing the correct release number on the root page"
|
|
|
|
puts "- Viewing /users"
|
|
|
|
puts "- Creating a user"
|
|
|
|
puts "- Updating a user (e.g. disable the admin flag)"
|
|
|
|
puts "- Deleting a user on /users"
|
|
|
|
puts "- Whatever else you want."
|
|
|
|
begin
|
|
|
|
sh "rails server"
|
|
|
|
rescue Interrupt
|
|
|
|
# Server passes along interrupt. Prevent halting verify task.
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-11-04 21:52:35 -05:00
|
|
|
task :bundle do
|
2016-08-06 13:22:32 -04:00
|
|
|
sh "bundle check"
|
2015-11-04 21:52:35 -05:00
|
|
|
end
|
|
|
|
|
2010-11-16 19:14:53 -05:00
|
|
|
task :commit do
|
2016-11-27 14:29:55 -05:00
|
|
|
unless `git status -s`.strip.empty?
|
|
|
|
File.open("pkg/commit_message.txt", "w") do |f|
|
|
|
|
f.puts "# Preparing for #{version} release\n"
|
|
|
|
f.puts
|
|
|
|
f.puts "# UNCOMMENT THE LINE ABOVE TO APPROVE THIS COMMIT"
|
|
|
|
end
|
2010-11-16 19:14:53 -05:00
|
|
|
|
2016-11-27 14:29:55 -05:00
|
|
|
sh "git add . && git commit --verbose --template=pkg/commit_message.txt"
|
|
|
|
rm_f "pkg/commit_message.txt"
|
|
|
|
end
|
2010-11-16 19:14:53 -05:00
|
|
|
end
|
|
|
|
|
2010-11-16 18:42:14 -05:00
|
|
|
task :tag do
|
2016-05-06 17:23:37 -04:00
|
|
|
sh "git tag -s -m '#{tag} release' #{tag}"
|
2011-11-14 11:51:02 -05:00
|
|
|
sh "git push --tags"
|
2010-11-16 18:42:14 -05:00
|
|
|
end
|
2010-11-16 19:14:53 -05:00
|
|
|
|
2016-11-27 14:29:55 -05:00
|
|
|
task prep_release: %w(ensure_clean_state build bundle commit)
|
2015-12-18 11:56:26 -05:00
|
|
|
|
2016-11-27 14:29:55 -05:00
|
|
|
task release: %w(prep_release tag push)
|
2010-11-16 18:42:14 -05:00
|
|
|
end
|
2016-11-30 12:28:22 -05:00
|
|
|
|
2017-07-22 13:10:17 -04:00
|
|
|
module Announcement
|
|
|
|
class Version
|
|
|
|
def initialize(version)
|
|
|
|
@version, @gem_version = version, Gem::Version.new(version)
|
2016-11-30 12:28:22 -05:00
|
|
|
end
|
|
|
|
|
2017-07-22 13:10:17 -04:00
|
|
|
def to_s
|
|
|
|
@version
|
|
|
|
end
|
2016-11-30 12:28:22 -05:00
|
|
|
|
2017-07-22 13:10:17 -04:00
|
|
|
def previous
|
|
|
|
@gem_version.segments[0, 3].tap { |v| v[2] -= 1 }.join(".")
|
|
|
|
end
|
2016-11-30 12:28:22 -05:00
|
|
|
|
2017-07-22 13:10:17 -04:00
|
|
|
def major_or_security?
|
|
|
|
@gem_version.segments[2].zero? || @gem_version.segments[3].is_a?(Integer)
|
|
|
|
end
|
|
|
|
|
|
|
|
def rc?
|
|
|
|
@version =~ /rc/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
task :announce do
|
|
|
|
Dir.chdir("pkg/") do
|
|
|
|
versions = ENV["VERSIONS"] ? ENV["VERSIONS"].split(",") : [ version ]
|
|
|
|
versions = versions.sort.map { |v| Announcement::Version.new(v) }
|
2016-11-30 12:28:22 -05:00
|
|
|
|
2017-08-03 17:45:23 -04:00
|
|
|
raise "Only valid for patch releases" if versions.any?(&:major_or_security?)
|
2016-11-30 12:28:22 -05:00
|
|
|
|
2017-07-22 13:10:17 -04:00
|
|
|
if versions.any?(&:rc?)
|
2016-11-30 12:28:22 -05:00
|
|
|
require "date"
|
|
|
|
future_date = Date.today + 5
|
|
|
|
future_date += 1 while future_date.saturday? || future_date.sunday?
|
|
|
|
|
|
|
|
github_user = `git config github.user`.chomp
|
|
|
|
end
|
|
|
|
|
2017-07-22 13:10:17 -04:00
|
|
|
require "erb"
|
|
|
|
template = File.read("../tasks/release_announcement_draft.erb")
|
2018-03-01 05:47:29 -05:00
|
|
|
|
2019-02-01 00:16:55 -05:00
|
|
|
if ERB.instance_method(:initialize).parameters.assoc(:key) # Ruby 2.6+
|
2018-03-01 05:47:29 -05:00
|
|
|
puts ERB.new(template, trim_mode: "<>").result(binding)
|
|
|
|
else
|
|
|
|
puts ERB.new(template, nil, "<>").result(binding)
|
|
|
|
end
|
2016-11-30 12:28:22 -05:00
|
|
|
end
|
|
|
|
end
|