-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathbake.rb
More file actions
30 lines (24 loc) · 654 Bytes
/
bake.rb
File metadata and controls
30 lines (24 loc) · 654 Bytes
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
# frozen_string_literal: true
# Released under the MIT License.
# Copyright, 2021-2024, by Samuel Williams.
# Copyright, 2024, by Pavel Rosický.
def build
ext_path = File.expand_path("ext", __dir__)
Dir.chdir(ext_path) do
system("ruby ./extconf.rb")
system("make")
end
end
def clean
ext_path = File.expand_path("ext", __dir__)
Dir.chdir(ext_path) do
system("make clean")
end
end
# Update the project documentation with the new version number.
#
# @parameter version [String] The new version number.
def after_gem_release_version_increment(version)
context["releases:update"].call(version)
context["utopia:project:update"].call
end