l_system 0.1.0 → 0.1.1

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
  SHA256:
3
- metadata.gz: 586b85b2e6a2981b1d5835eedaf62c451eaa51b4cdd7894db564e100ada8c9e0
4
- data.tar.gz: efe77e8d01d01759ee5780d9d28bc77c8f0fb355d5f98956ef1304797ded02bb
3
+ metadata.gz: 48dc988372d2e07ff20bc1760e6b2e0360d5917ba4313ce294a7b8df797f3a10
4
+ data.tar.gz: 49d64c46a9d9dcd58cf442f1f7163506e6674f6fb2c039bf246cce46470e50f3
5
5
  SHA512:
6
- metadata.gz: 44879d5a4397c4ab0899685fbd33d0b7df1d64c73596cc45cbc39801ae5bc1ec9343435b75bc0170c0cd3d6c6d54dc1b191f5622d2ce26695a9b9187d31438cc
7
- data.tar.gz: b8778fe072f57c36eb92a547b38fc594cb2b1619f7d160395a5700c7c2bfc00cf853df9f9b40fe642d60fcdb37adeff9da3607e74793798181bd6697b75a2e79
6
+ metadata.gz: feb2d382ad96e2f1bebe70386724d47e506117eb52c6bb80f74bc789a08c34d878d02551fc415d285dde9d91dbde86c3f50a471c0cb850b3daf8cbe88f84b63b
7
+ data.tar.gz: 6b3c099b8f58238c9cedad927a98414b4cbb3206a588a9b920c5a40a49e6012d757887d4d4f82ea3926bde2a5d766253dd2d394f9821218cb227701ccc74de02
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/l_system
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
 
@@ -9,7 +9,7 @@ module LSystem
9
9
  extend Loggability
10
10
 
11
11
  # Package version
12
- VERSION = '0.1.0'
12
+ VERSION = '0.1.1'
13
13
 
14
14
  # Version control revision
15
15
  REVISION = %q$Revision$
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.0
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.10'
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.10'
81
- description: |-
82
- A toolkit for creating and using {Lindenmayer Systems}[https://en.wikipedia.org/wiki/L-system] (L-systems).
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 {Lindenmayer Systems}[https://en.wikipedia.org/wiki/L-system]
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