y_petri 2.3.4 → 2.3.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ab4404308e31c4a9a63ab12ddb9bf0e38a398fdb
4
- data.tar.gz: cd8d2cc2f6c21c1081d3d6364ccfadf307edaee0
3
+ metadata.gz: 239c4dddde7ada1bfa2e144a288121a379c34743
4
+ data.tar.gz: 2c26c3ea187bcf79e17138d71563e9708666785b
5
5
  SHA512:
6
- metadata.gz: 9da0176d66c7792f3fc0539577be721ab130507a486b7392ccaed64ccfef0e5ce5a330c6127a9c69a007104c35cda9d876bcf57999cf79d6b9dfe1156ad9c507
7
- data.tar.gz: f4fa59e863486eea853560ecd71c76dbf31ab5381e0f670ad93bc2a32018d0f45b3b34364f88ae2fc674a1942b94884f86ba0856b1c9498e956ccedcbbbbe8cb
6
+ metadata.gz: 635b3fd5a762d22d6403d32b800b2adf568077587bb395a608a2ce5645d8574519949b8ffd154380bce68148d53c4d37cf48e926b6138105c905a30f5d0fd787
7
+ data.tar.gz: 36ab0d70aee8e2d6e237c0b8567ce091b270502929a00c8d4736fd7df1187e31061cf950b51c27b55f18bf13e615a46e2462c50f22eb82b2071a7c6a6a8239ec
data/.gitignore CHANGED
@@ -9,8 +9,8 @@
9
9
  Gemfile.lock
10
10
  InstalledFiles
11
11
  _yardoc
12
+ doc
12
13
  coverage
13
- doc/
14
14
  lib/bundler/man
15
15
  pkg
16
16
  rdoc
@@ -1,4 +1,4 @@
1
1
  module YPetri
2
- VERSION = "2.3.4"
2
+ VERSION = "2.3.5"
3
3
  DEBUG = false
4
4
  end
data/y_petri.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = YPetri::VERSION
9
9
  spec.authors = ["boris"]
10
10
  spec.email = ["\"boris@iis.sinica.edu.tw\""]
11
- spec.summary = %q{Systems modelling and simulation gem, and a domain model of a specific type of universal Petri net (YPetri net), which can be used to model any kind of dynamical system whatsoever.}
12
- spec.description = %q{YPetri is a gem for modelling of dynamical systems. It caters solely to the two main concerns of modelling, model specification and simulation, and it excels in the first one. Dynamical systems are described under a Petri net paradigm. YPetri implements a universal Petri net abstraction that integrates discrete/continous, deterministic/stochastic, timed/timeless and stoichiometric/nonstoichiometric dichotomies of the extended Petri nets, and allows efficient specification of any kind of dynamical system. Like Petri nets themselves, YPetri was inspired by problems from the domain of chemistry (biochemical pathway modelling), but it is not specific it. Other gems, YChem and YCell are planned to cater to the concerns specific to chemistry and cell biochemistry. As a part of this effort, an extended version of YPetri is under development. Its name is YNelson, its usage is practically identical to YPetri, but it covers more concerns than just Petri net specification and simulation. Namely, YNelson allows relations among Petri net nodes and parameters to be captured under a zz structure paradigm (which was developed by Ted Nelson) and it also provides higher level of abstraction in Petri net specification by providing commands that create more than one Petri net node per command.}
11
+ spec.summary = %q{Systems modelling and simulation gem. Biologically inspired, but concerns specific to biology and chemistry have been purposely separated away from it, so it is a general-purpose model specification and simulation DSL. Dynamical systems are specified by a specific universal type of a hybrid Petri net which YPetri implements and which allows description of any kind of dynamical system whatsoever.}
12
+ spec.description = %q{YPetri is a gem for modelling of dynamical systems. It is biologically inspired, but concerns of biology and chemistry have been purposely separated away from it. YPetri caters solely to the two main concerns of modelling, model specification and simulation, and it excels in the first one. Dynamical systems are described under a Petri net paradigm. YPetri implements a universal Petri net abstraction that integrates discrete/continous, deterministic/stochastic, timed/timeless and stoichiometric/nonstoichiometric dichotomies of the extended Petri nets, and allows efficient specification of any kind of dynamical system. Like Petri nets themselves, YPetri was inspired by problems from the domain of chemistry (biochemical pathway modelling), but is not specific to it. Other gems, YChem and YCell are planned to cater to the concerns specific to chemistry and cell biochemistry. These future extensions of YPetri are not developed yet. A lower-level extension of YPetri is currently under development under the name YNelson. Its usage is practically identical to YPetri, so any YPetri user can now consider using YNelson instead. YNelson covers additional concerns: it allows relations among nodes and parameters to be specified under a zz structure paradigm (developed by Ted Nelson) and it is also aimed towards providing a higher level of abstraction in Petri net specification by providing commands that create more than one Petri net node per command. YPetri documentation is avalable online, but due to formatting issues, you may prefer to generate the documentation on your own by running rdoc in the gem directory.}
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_petri
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.4
4
+ version: 2.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - boris
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-28 00:00:00.000000000 Z
11
+ date: 2014-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -94,22 +94,26 @@ dependencies:
94
94
  - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
- description: YPetri is a gem for modelling of dynamical systems. It caters solely
98
- to the two main concerns of modelling, model specification and simulation, and it
99
- excels in the first one. Dynamical systems are described under a Petri net paradigm.
100
- YPetri implements a universal Petri net abstraction that integrates discrete/continous,
101
- deterministic/stochastic, timed/timeless and stoichiometric/nonstoichiometric dichotomies
102
- of the extended Petri nets, and allows efficient specification of any kind of dynamical
103
- system. Like Petri nets themselves, YPetri was inspired by problems from the domain
104
- of chemistry (biochemical pathway modelling), but it is not specific it. Other gems,
105
- YChem and YCell are planned to cater to the concerns specific to chemistry and cell
106
- biochemistry. As a part of this effort, an extended version of YPetri is under development.
107
- Its name is YNelson, its usage is practically identical to YPetri, but it covers
108
- more concerns than just Petri net specification and simulation. Namely, YNelson
109
- allows relations among Petri net nodes and parameters to be captured under a zz
110
- structure paradigm (which was developed by Ted Nelson) and it also provides higher
111
- level of abstraction in Petri net specification by providing commands that create
112
- more than one Petri net node per command.
97
+ description: 'YPetri is a gem for modelling of dynamical systems. It is biologically
98
+ inspired, but concerns of biology and chemistry have been purposely separated away
99
+ from it. YPetri caters solely to the two main concerns of modelling, model specification
100
+ and simulation, and it excels in the first one. Dynamical systems are described
101
+ under a Petri net paradigm. YPetri implements a universal Petri net abstraction
102
+ that integrates discrete/continous, deterministic/stochastic, timed/timeless and
103
+ stoichiometric/nonstoichiometric dichotomies of the extended Petri nets, and allows
104
+ efficient specification of any kind of dynamical system. Like Petri nets themselves,
105
+ YPetri was inspired by problems from the domain of chemistry (biochemical pathway
106
+ modelling), but is not specific to it. Other gems, YChem and YCell are planned to
107
+ cater to the concerns specific to chemistry and cell biochemistry. These future
108
+ extensions of YPetri are not developed yet. A lower-level extension of YPetri is
109
+ currently under development under the name YNelson. Its usage is practically identical
110
+ to YPetri, so any YPetri user can now consider using YNelson instead. YNelson covers
111
+ additional concerns: it allows relations among nodes and parameters to be specified
112
+ under a zz structure paradigm (developed by Ted Nelson) and it is also aimed towards
113
+ providing a higher level of abstraction in Petri net specification by providing
114
+ commands that create more than one Petri net node per command. YPetri documentation
115
+ is avalable online, but due to formatting issues, you may prefer to generate the
116
+ documentation on your own by running rdoc in the gem directory.'
113
117
  email:
114
118
  - '"boris@iis.sinica.edu.tw"'
115
119
  executables: []
@@ -272,9 +276,11 @@ rubyforge_project:
272
276
  rubygems_version: 2.2.2
273
277
  signing_key:
274
278
  specification_version: 4
275
- summary: Systems modelling and simulation gem, and a domain model of a specific type
276
- of universal Petri net (YPetri net), which can be used to model any kind of dynamical
277
- system whatsoever.
279
+ summary: Systems modelling and simulation gem. Biologically inspired, but concerns
280
+ specific to biology and chemistry have been purposely separated away from it, so
281
+ it is a general-purpose model specification and simulation DSL. Dynamical systems
282
+ are specified by a specific universal type of a hybrid Petri net which YPetri implements
283
+ and which allows description of any kind of dynamical system whatsoever.
278
284
  test_files:
279
285
  - test/acceptance/basic_usage_test.rb
280
286
  - test/acceptance/simulation_test.rb