spy_alley_application 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/spy_alley_application/results/nodes/move_card_used_node.rb +1 -1
- data/lib/spy_alley_application/results/nodes/pass_option_node.rb +3 -3
- data/lib/spy_alley_application/results/nodes/use_move_card_option_node.rb +3 -3
- data/lib/spy_alley_application/version.rb +1 -1
- data/spy_alley_application.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 921a83f9e79208448535756205a5f615aa5a2ee838e61f9c8d32f39940dc2499
|
4
|
+
data.tar.gz: 744d81acdf9769e51e105ac56fedf82fa43c5bc192df0d4fda6b094467df4a94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86afa6a002cbcb3bb6282b1d1923b5156057888e4d272c189ec2b0024e4c565a416650946b4efeeb4e20bbc25c7737cf3245ce1544e2d564cfdb02dac83fdb24
|
7
|
+
data.tar.gz: 5adf89ee6bcf5827a878d601f3cae0d8f32652750a23c4c78a5f56be715ffad350664ae814bc88ea29702573031c7eeec10b50bb989883876540979dfec1e897
|
@@ -4,10 +4,10 @@ module SpyAlleyApplication
|
|
4
4
|
module Results
|
5
5
|
module Nodes
|
6
6
|
class PassOptionNode
|
7
|
-
@@
|
7
|
+
@@can_handle_pass_option = ::Types.Interface(:handle_pass_option)
|
8
8
|
def accept(visitor, **args)
|
9
|
-
@@
|
10
|
-
visitor.
|
9
|
+
@@can_handle_pass_option.(visitor)
|
10
|
+
visitor.handle_pass_option(self, args)
|
11
11
|
end
|
12
12
|
end
|
13
13
|
end
|
@@ -6,12 +6,12 @@ module SpyAlleyApplication
|
|
6
6
|
module Results
|
7
7
|
module Nodes
|
8
8
|
class UseMoveCardOptionNode < Dry::Struct
|
9
|
-
@@
|
9
|
+
@@can_handle_use_move_card_option = ::Types.Interface(:handle_use_move_card_option)
|
10
10
|
attribute :card_list, ::Types::ArrayOfStrictInteger
|
11
11
|
|
12
12
|
def accept(visitor, **args)
|
13
|
-
@@
|
14
|
-
visitor.
|
13
|
+
@@can_handle_use_move_card_option.(visitor)
|
14
|
+
visitor.handle_use_move_card_option(self, args)
|
15
15
|
end
|
16
16
|
end
|
17
17
|
end
|
@@ -2,7 +2,7 @@ lib = File.expand_path("lib", __dir__)
|
|
2
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
3
|
require "spy_alley_application/version"
|
4
4
|
|
5
|
-
Gem::Specification.new 'spy_alley_application', '0.3.
|
5
|
+
Gem::Specification.new 'spy_alley_application', '0.3.2' do |spec|
|
6
6
|
spec.name = 'spy_alley_application'
|
7
7
|
spec.version = SpyAlleyApplication::VERSION
|
8
8
|
spec.authors = ['Colin Horner']
|