y_nelson 2.0.5 → 2.0.6
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/y_nelson/transition.rb +13 -13
- data/lib/y_nelson/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2e44ecf20ce9f7de49be37694bd2cf4b82506e2
|
4
|
+
data.tar.gz: c1f88cb706e004760232d9f7c9ba5723eb7f4e6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f079eba1970ac861e9c7336bf6f543617a92ba058823ad983f36eccc73baf19dddeb07b4b67fbce5ad1f2d96d02a2dfba0ede3fd51a83e07dde00694ef8f67c
|
7
|
+
data.tar.gz: 9ec057666e03456ba6ede85206a46031d6e8fae84ced846f3f0dd0b92034c06996de12966a185c570310874aec583709db193b84b5160d9c37b40e4f8cf78e22
|
data/lib/y_nelson/transition.rb
CHANGED
@@ -6,6 +6,19 @@ class YNelson::Transition < YPetri::Transition
|
|
6
6
|
include YNelson::Yzz
|
7
7
|
alias call along # .( :dim ) rather than .along( :dim )
|
8
8
|
|
9
|
+
# Produces the inspect string of the place.
|
10
|
+
#
|
11
|
+
def inspect
|
12
|
+
# Calling the ancestor's #inspect.
|
13
|
+
YPetri::Transition.instance_method( :inspect ).bind( self ).call
|
14
|
+
end
|
15
|
+
|
16
|
+
# Returns a string briefly describing the place.
|
17
|
+
#
|
18
|
+
def to_s
|
19
|
+
YPetri::Transition.instance_method( :to_s ).bind( self ).call
|
20
|
+
end
|
21
|
+
|
9
22
|
private
|
10
23
|
|
11
24
|
# YNelson extends this YPetri::Transition private method, so that a zz
|
@@ -29,17 +42,4 @@ class YNelson::Transition < YPetri::Transition
|
|
29
42
|
}
|
30
43
|
super
|
31
44
|
end
|
32
|
-
|
33
|
-
# Produces the inspect string of the place.
|
34
|
-
#
|
35
|
-
def inspect
|
36
|
-
# Calling the ancestor's #inspect.
|
37
|
-
YPetri::Transition.instance_method( :inspect ).bind( self ).call
|
38
|
-
end
|
39
|
-
|
40
|
-
# Returns a string briefly describing the place.
|
41
|
-
#
|
42
|
-
def to_s
|
43
|
-
YPetri::Transition.instance_method( :to_s ).bind( self ).call
|
44
|
-
end
|
45
45
|
end
|
data/lib/y_nelson/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: y_nelson
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- boris
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-08-
|
11
|
+
date: 2013-08-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: yzz
|