Skip to content

Commit 3c53175

Browse files
committed
Fix updated constant error
1 parent 3e16a06 commit 3c53175

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
typed_struct (0.1.3)
4+
typed_struct (0.1.4)
55
rbs (~> 1.0)
66

77
GEM

lib/typed_struct.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ class TypedStruct < Struct
1717
# any methods which are able to be overridden
1818
alias_method :__class__, :class
1919

20-
Options = nil
21-
2220
class << self
2321
def new(opts = Options.new, **properties)
2422
properties.each_key do |prop|

lib/typed_struct/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
class TypedStruct < Struct
4-
VERSION = "0.1.3"
4+
VERSION = "0.1.4"
55
end

0 commit comments

Comments
 (0)