l_system 0.1.0 → 0.1.1
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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.md +8 -0
- data/README.md +7 -1
- data/lib/l_system.rb +1 -1
- metadata +12 -11
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48dc988372d2e07ff20bc1760e6b2e0360d5917ba4313ce294a7b8df797f3a10
|
|
4
|
+
data.tar.gz: 49d64c46a9d9dcd58cf442f1f7163506e6674f6fb2c039bf246cce46470e50f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: feb2d382ad96e2f1bebe70386724d47e506117eb52c6bb80f74bc789a08c34d878d02551fc415d285dde9d91dbde86c3f50a471c0cb850b3daf8cbe88f84b63b
|
|
7
|
+
data.tar.gz: 6b3c099b8f58238c9cedad927a98414b4cbb3206a588a9b920c5a40a49e6012d757887d4d4f82ea3926bde2a5d766253dd2d394f9821218cb227701ccc74de02
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/History.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
+
## v0.1.1 [2020-02-26] Michael Granger <ged@faeriemud.org>
|
|
6
|
+
|
|
7
|
+
Improvements:
|
|
8
|
+
|
|
9
|
+
- Mention kaki-lsystem in the README
|
|
10
|
+
- Bump the dependency on rake-deveiate to build a better gem
|
|
11
|
+
|
|
12
|
+
|
|
5
13
|
## v0.1.0 [2020-02-26] Michael Granger <ged@faeriemud.org>
|
|
6
14
|
|
|
7
15
|
Initial release.
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ code
|
|
|
7
7
|
: https://hg.sr.ht/~ged/LSystem
|
|
8
8
|
|
|
9
9
|
github
|
|
10
|
-
: https://github.com/ged/
|
|
10
|
+
: https://github.com/ged/LSystem
|
|
11
11
|
|
|
12
12
|
docs
|
|
13
13
|
: https://deveiate.org/code/l_system
|
|
@@ -20,6 +20,11 @@ It consists of a class that allows for declaration of the L-system's grammar,
|
|
|
20
20
|
and another class that allows for the definition of how the symbols output by a
|
|
21
21
|
grammar should be translated into work.
|
|
22
22
|
|
|
23
|
+
**Note** if you just want to draw with it, you should consider using
|
|
24
|
+
[kaki-lsystem][] instead; it has a nice interface with drawing already
|
|
25
|
+
integrated. This gem is intended for using l-systems for things other than
|
|
26
|
+
drawing (though it can obviously do that too), so it requires a bit more work.
|
|
27
|
+
|
|
23
28
|
|
|
24
29
|
### Examples
|
|
25
30
|
|
|
@@ -229,4 +234,5 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
229
234
|
|
|
230
235
|
|
|
231
236
|
[l-system]: https://en.wikipedia.org/wiki/L-system
|
|
237
|
+
[kaki-lsystem]: https://rubygems.org/gems/kaki-lsystem
|
|
232
238
|
|
data/lib/l_system.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: l_system
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Granger
|
|
@@ -70,19 +70,16 @@ dependencies:
|
|
|
70
70
|
requirements:
|
|
71
71
|
- - "~>"
|
|
72
72
|
- !ruby/object:Gem::Version
|
|
73
|
-
version: '0.
|
|
73
|
+
version: '0.11'
|
|
74
74
|
type: :development
|
|
75
75
|
prerelease: false
|
|
76
76
|
version_requirements: !ruby/object:Gem::Requirement
|
|
77
77
|
requirements:
|
|
78
78
|
- - "~>"
|
|
79
79
|
- !ruby/object:Gem::Version
|
|
80
|
-
version: '0.
|
|
81
|
-
description:
|
|
82
|
-
|
|
83
|
-
It consists of a class that allows for declaration of the L-system's grammar,
|
|
84
|
-
and another class that allows for the definition of how the symbols output by a
|
|
85
|
-
grammar should be translated into work.
|
|
80
|
+
version: '0.11'
|
|
81
|
+
description: A toolkit for creating and using Lindenmayer Systems (L-systems). It
|
|
82
|
+
consists of a class that allows …
|
|
86
83
|
email:
|
|
87
84
|
- ged@faeriemud.org
|
|
88
85
|
executables: []
|
|
@@ -104,7 +101,12 @@ files:
|
|
|
104
101
|
homepage: https://hg.sr.ht/~ged/LSystem
|
|
105
102
|
licenses:
|
|
106
103
|
- BSD-3-Clause
|
|
107
|
-
metadata:
|
|
104
|
+
metadata:
|
|
105
|
+
homepage_uri: https://hg.sr.ht/~ged/LSystem
|
|
106
|
+
documentation_uri: https://deveiate.org/code/l_system
|
|
107
|
+
changelog_uri: https://deveiate.org/code/l_system/History_md.html
|
|
108
|
+
source_uri: https://hg.sr.ht/~ged/LSystem
|
|
109
|
+
bug_tracker_uri: https://todo.sr.ht/~ged/LSystem
|
|
108
110
|
post_install_message:
|
|
109
111
|
rdoc_options: []
|
|
110
112
|
require_paths:
|
|
@@ -123,6 +125,5 @@ requirements: []
|
|
|
123
125
|
rubygems_version: 3.1.2
|
|
124
126
|
signing_key:
|
|
125
127
|
specification_version: 4
|
|
126
|
-
summary: A toolkit for creating and using
|
|
127
|
-
(L-systems).
|
|
128
|
+
summary: A toolkit for creating and using Lindenmayer Systems (L-systems).
|
|
128
129
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|