File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1+ ## [ 1.0.1] - 2021-07-24
2+
3+ ### Changed
4+
5+ - Lazy initialization of Notifier's temp file.
6+
17## [ 1.0.0] - 2021-07-05
28
39### Added
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- lambda_punch (1.0.0 )
4+ lambda_punch (1.0.1 )
55 concurrent-ruby
66 rake
77 rb-inotify
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ module LambdaPunch
22 class Notifier
33
44 FILE = "#{ Dir . tmpdir } /lambdapunch-handled"
5- File . open ( FILE , 'w' ) { |f | f . write ( '' ) }
65
76 class << self
87
@@ -20,6 +19,7 @@ def request_id
2019
2120 def initialize
2221 @notifier = INotify ::Notifier . new
22+ File . open ( FILE , 'w' ) { |f | f . write ( '' ) } unless File . exist? ( FILE )
2323 end
2424
2525 def watch
Original file line number Diff line number Diff line change 11module LambdaPunch
2- VERSION = "1.0.0 "
2+ VERSION = "1.0.1 "
33end
You can’t perform that action at this time.
0 commit comments