y_nelson 2.3.2 → 2.3.3
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/y_nelson.gemspec +2 -2
- metadata +22 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 277e85acd1c9b583b37388adba7f1d7b32b4e945
|
4
|
+
data.tar.gz: 69a3453eb7178f51bf187ed035b6643398d0d438
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9905f70b7e84bcd2bf4d13cfaeddcc2ecf5eb4d2fee3b53616b61245304ca42375cfd31d79271ea80a862332ccd2faf0ff3ee0813551d737a7b2e875a130a20d
|
7
|
+
data.tar.gz: bb869215b5e6777a81c86d7ef2dca2ec995aa43c23851422ab1a569affd7ee655c77421d84c053da4b80f9192938e208cd0844df409459557c76aec71c6e9cbf
|
data/lib/y_nelson/version.rb
CHANGED
data/y_nelson.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = YNelson::VERSION
|
9
9
|
spec.authors = ["boris"]
|
10
10
|
spec.email = ["\"boris@iis.sinica.edu.tw\""]
|
11
|
-
spec.summary = %q{A fusion of
|
12
|
-
spec.description = %q{Zz structures are an interesting way of representing relations invented by Ted Nelson. I captured the basic zz structure formalism in a gem Yzz. In this gem, YNelson, I combine zz structures with universal Petri nets (provided by another gem of mine, YPetri) to obtain a hybrid data structure that formalizes and generelizes spreadsheet. Because let us note that most practical spreadsheet
|
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. I captured the basic zz structure formalism in a gem Yzz. In this gem, YNelson, I combine zz structures with universal Petri nets (provided by another gem of mine, YPetri) to obtain a hybrid data structure that formalizes and generelizes a spreadsheet. Because let us note that most of the practical spreadsheet implementations allow the cell functions to be used so as to represent a Petri net. The cell functions can thus be regarded as transitions and cells and places of a Petri net. A spreadsheet is thus a kind of a Petri net. At the same time, spreadsheet files are orthogonal structures with at least 3 dimensions: x (horizontal), y (vertical) and z (the dimension of sheets stacked upon each other). With zz structures, the globally orthogonal nature traditional spreadsheet is generalized as a locally orthogonal zz structure, with relations represented as zz dimensions. In sum, this generalizes and formalizes a spreadsheet. While being textual at the core, YNelson attempts to provide convenience at least at the level similar to the actual existing spreadsheet software. Unlike YPetri, YNelson can also specify more than one 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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- boris
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-12-
|
11
|
+
date: 2014-12-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: yzz
|
@@ -70,23 +70,22 @@ description: 'Zz structures are an interesting way of representing relations inv
|
|
70
70
|
by Ted Nelson. I captured the basic zz structure formalism in a gem Yzz. In this
|
71
71
|
gem, YNelson, I combine zz structures with universal Petri nets (provided by another
|
72
72
|
gem of mine, YPetri) to obtain a hybrid data structure that formalizes and generelizes
|
73
|
-
spreadsheet. Because let us note that most practical spreadsheet
|
74
|
-
allow to
|
75
|
-
as transitions and cells and places
|
76
|
-
At the same time, spreadsheet files are orthogonal
|
77
|
-
x (horizontal), y (vertical) and z (the dimension
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
in the gem directory.'
|
73
|
+
a spreadsheet. Because let us note that most of the practical spreadsheet implementations
|
74
|
+
allow the cell functions to be used so as to represent a Petri net. The cell functions
|
75
|
+
can thus be regarded as transitions and cells and places of a Petri net. A spreadsheet
|
76
|
+
is thus a kind of a Petri net. At the same time, spreadsheet files are orthogonal
|
77
|
+
structures with at least 3 dimensions: x (horizontal), y (vertical) and z (the dimension
|
78
|
+
of sheets stacked upon each other). With zz structures, the globally orthogonal
|
79
|
+
nature traditional spreadsheet is generalized as a locally orthogonal zz structure,
|
80
|
+
with relations represented as zz dimensions. In sum, this generalizes and formalizes
|
81
|
+
a spreadsheet. While being textual at the core, YNelson attempts to provide convenience
|
82
|
+
at least at the level similar to the actual existing spreadsheet software. Unlike
|
83
|
+
YPetri, YNelson can also specify more than one node per command, but this is still
|
84
|
+
under development. See the user guide and the documentation for the details. YNelson
|
85
|
+
documentation is available online, but due to formatting issues, you may prefer
|
86
|
+
to generate the documentation on your own by running rdoc in the gem directory.
|
87
|
+
For an example of how YPetri can be used to model complex dynamical systems, see
|
88
|
+
the eukaryotic cell cycle model which I released as "cell_cycle" gem.'
|
90
89
|
email:
|
91
90
|
- '"boris@iis.sinica.edu.tw"'
|
92
91
|
executables: []
|
@@ -143,8 +142,10 @@ rubyforge_project:
|
|
143
142
|
rubygems_version: 2.2.2
|
144
143
|
signing_key:
|
145
144
|
specification_version: 4
|
146
|
-
summary: A fusion of
|
147
|
-
generalizes spreadsheet.
|
145
|
+
summary: A fusion of a universal Petri net with a zz structure that formalizes and
|
146
|
+
generalizes spreadsheet. As an extension of YPetri (y_petri) gem, YNelson inherits
|
147
|
+
all its capabilities for modelling dynamical systems, but adds the capability to
|
148
|
+
represent relations between model nodes and parameters.
|
148
149
|
test_files:
|
149
150
|
- test/issues.rb
|
150
151
|
- test/mongoid_example.rb
|