y_nelson 2.3.4 → 2.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/y_nelson/version.rb +1 -1
- data/test/y_nelson_test.rb +1 -1
- data/y_nelson.gemspec +1 -1
- metadata +25 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d87d07882b70f11a57acb5b1c5380353bcfd599
|
4
|
+
data.tar.gz: 1812d1b077531e683a56ef47ced2df71078c481e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4157b917e486f2ad9c14ed9a5f08e76d554270586d49cd4b71e993c010ccc5a704ed9df694e69d44ddbf0f4989e393618488987fd1be714a2df4132901e4a27
|
7
|
+
data.tar.gz: 0d36ee17ed8aca298ff2355968644ff8116bdad4b3d37e0745b34bed1d07adaa78bb14de843858cdacf351a8bbae3c910304926639034613127bcec195c71073
|
data/lib/y_nelson/version.rb
CHANGED
data/test/y_nelson_test.rb
CHANGED
data/y_nelson.gemspec
CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["boris"]
|
10
10
|
spec.email = ["\"boris@iis.sinica.edu.tw\""]
|
11
11
|
spec.summary = %q{A fusion of a universal Petri net with a zz structure that formalizes and generalizes spreadsheet. As an extension of YPetri (y_petri) gem, YNelson inherits all its capabilities for modelling dynamical systems, but adds the capability to represent relations between model nodes and parameters.}
|
12
|
-
spec.description = %q{Zz structures are an interesting way of representing relations invented by Ted Nelson
|
12
|
+
spec.description = %q{Zz structures are an interesting way of representing relations invented by Ted Nelson, whose domain model I provide in a gem Yzz. In this gem, YNelson, I combine Yzz with the universal Petri net provided by YPetri (another gem I wrote) to obtain a hybrid data structure that formalizes and generelizes a spreadsheet. Because let us note spreadsheets (as I have seen them) can be considered Petri nets of a kind, with cell functions acting as Petri net transitions. At the same time, spreadsheets are globally orthogonal structures with 3 typical dimensions (rows, columns and sheets). By using zz structures, the globally orthogonal spreadsheet is generalized as a locally orthogonal zz structure, with relations represented as zz dimensions, thus generalizing and formalizing a spreadsheet. The catch is that I have not yet finished the thinking process regarding what everything should be a zz object: Places (cells) and transitions definitely yes, but how about nets and dimensions? Should YNelson go as far as making namespaces into zz objects? The reason why these questions are hard to answer is because Ted Nelson himself, while providing interfaces guidelines (zz structure views, cursors...) did not comment on these questions. While being a (textual) DSL, YNelson aims to provide convenience on par with actual spreadsheet apps. Unlike YPetri, YNelson also aims to be able to specify more than one Petri net node per command, but this is still under development. See the user guide and the documentation for the details. YNelson documentation is available online, but due to formatting issues, you may prefer to generate the documentation on your own by running rdoc in the gem directory. For an example of how YPetri can be used to model complex dynamical systems, see the eukaryotic cell cycle model which I released as "cell_cycle" gem.}
|
13
13
|
spec.homepage = ""
|
14
14
|
spec.license = "GPLv3"
|
15
15
|
|
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.3.
|
4
|
+
version: 2.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- boris
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-06-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: yzz
|
@@ -67,25 +67,28 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
description: 'Zz structures are an interesting way of representing relations invented
|
70
|
-
by Ted Nelson
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
to
|
87
|
-
|
88
|
-
|
70
|
+
by Ted Nelson, whose domain model I provide in a gem Yzz. In this gem, YNelson,
|
71
|
+
I combine Yzz with the universal Petri net provided by YPetri (another gem I wrote)
|
72
|
+
to obtain a hybrid data structure that formalizes and generelizes a spreadsheet.
|
73
|
+
Because let us note spreadsheets (as I have seen them) can be considered Petri nets
|
74
|
+
of a kind, with cell functions acting as Petri net transitions. At the same time,
|
75
|
+
spreadsheets are globally orthogonal structures with 3 typical dimensions (rows,
|
76
|
+
columns and sheets). By using zz structures, the globally orthogonal spreadsheet
|
77
|
+
is generalized as a locally orthogonal zz structure, with relations represented
|
78
|
+
as zz dimensions, thus generalizing and formalizing a spreadsheet. The catch is
|
79
|
+
that I have not yet finished the thinking process regarding what everything should
|
80
|
+
be a zz object: Places (cells) and transitions definitely yes, but how about nets
|
81
|
+
and dimensions? Should YNelson go as far as making namespaces into zz objects? The
|
82
|
+
reason why these questions are hard to answer is because Ted Nelson himself, while
|
83
|
+
providing interfaces guidelines (zz structure views, cursors...) did not comment
|
84
|
+
on these questions. While being a (textual) DSL, YNelson aims to provide convenience
|
85
|
+
on par with actual spreadsheet apps. Unlike YPetri, YNelson also aims to be able
|
86
|
+
to specify more than one Petri net node per command, but this is still under development.
|
87
|
+
See the user guide and the documentation for the details. YNelson documentation
|
88
|
+
is available online, but due to formatting issues, you may prefer to generate the
|
89
|
+
documentation on your own by running rdoc in the gem directory. For an example of
|
90
|
+
how YPetri can be used to model complex dynamical systems, see the eukaryotic cell
|
91
|
+
cycle model which I released as "cell_cycle" gem.'
|
89
92
|
email:
|
90
93
|
- '"boris@iis.sinica.edu.tw"'
|
91
94
|
executables: []
|
@@ -139,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
139
142
|
version: '0'
|
140
143
|
requirements: []
|
141
144
|
rubyforge_project:
|
142
|
-
rubygems_version: 2.
|
145
|
+
rubygems_version: 2.5.1
|
143
146
|
signing_key:
|
144
147
|
specification_version: 4
|
145
148
|
summary: A fusion of a universal Petri net with a zz structure that formalizes and
|