Skip to content

Commit f4453ba

Browse files
TAKAYUKI KAMIYAMATAKAYUKI KAMIYAMA
TAKAYUKI KAMIYAMA
authored and
TAKAYUKI KAMIYAMA
committedSep 11, 2024
Update.
1 parent ad96214 commit f4453ba

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
 

‎lib/frame/version.rb

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,18 @@
22

33
require 'date'
44

5+
begin
56
# nyasocom_frame version = x.x.x-xxxx.xx.xx
67
module Frame
78
frame_version = '1.0.9'
89
t = Date.today
910
build_day = t.strftime('%Y.%m.%d')
1011
VERSION = "#{frame_version}-#{build_day}".freeze
1112
end
12-
13-
GC.compact
13+
rescue StandardError => e
14+
puts e.backtrace
15+
ensure
16+
GC.compact
17+
end
1418

1519
__END__

0 commit comments

Comments
 (0)