wicket 0.0.2 → 0.1.0
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
- data/.travis.yml +2 -5
- data/Gemfile +2 -0
- data/README.md +132 -12
- data/changelog.md +12 -0
- data/lib/wicket.rb +22 -0
- data/lib/wicket/cartesian.rb +23 -0
- data/lib/wicket/command.rb +47 -14
- data/lib/wicket/commands/bezier_curve.rb +75 -0
- data/lib/wicket/commands/c.rb +24 -0
- data/lib/wicket/commands/cubic_bezier.rb +20 -0
- data/lib/wicket/commands/h.rb +10 -14
- data/lib/wicket/commands/l.rb +6 -18
- data/lib/wicket/commands/m.rb +6 -18
- data/lib/wicket/commands/q.rb +21 -0
- data/lib/wicket/commands/quadratic_bezier.rb +15 -0
- data/lib/wicket/commands/s.rb +37 -0
- data/lib/wicket/commands/t.rb +34 -0
- data/lib/wicket/commands/v.rb +10 -13
- data/lib/wicket/commands/z.rb +9 -9
- data/lib/wicket/configuration.rb +26 -0
- data/lib/wicket/coordinate.rb +21 -0
- data/lib/wicket/subpath.rb +7 -3
- data/lib/wicket/subpoint.rb +39 -0
- data/lib/wicket/svg_path.rb +25 -10
- data/lib/wicket/utilities.rb +60 -0
- data/lib/wicket/version.rb +1 -1
- data/spec/coordinate_spec.rb +28 -0
- data/spec/svg_path_spec.rb +26 -107
- data/spec/test_cases.yml +91 -0
- data/spec/utilities_spec.rb +91 -0
- metadata +21 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wicket
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Urabe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -67,18 +67,34 @@ files:
|
|
67
67
|
- LICENSE.txt
|
68
68
|
- README.md
|
69
69
|
- Rakefile
|
70
|
+
- changelog.md
|
70
71
|
- lib/wicket.rb
|
72
|
+
- lib/wicket/cartesian.rb
|
71
73
|
- lib/wicket/command.rb
|
74
|
+
- lib/wicket/commands/bezier_curve.rb
|
75
|
+
- lib/wicket/commands/c.rb
|
76
|
+
- lib/wicket/commands/cubic_bezier.rb
|
72
77
|
- lib/wicket/commands/h.rb
|
73
78
|
- lib/wicket/commands/l.rb
|
74
79
|
- lib/wicket/commands/m.rb
|
80
|
+
- lib/wicket/commands/q.rb
|
81
|
+
- lib/wicket/commands/quadratic_bezier.rb
|
82
|
+
- lib/wicket/commands/s.rb
|
83
|
+
- lib/wicket/commands/t.rb
|
75
84
|
- lib/wicket/commands/v.rb
|
76
85
|
- lib/wicket/commands/z.rb
|
86
|
+
- lib/wicket/configuration.rb
|
87
|
+
- lib/wicket/coordinate.rb
|
77
88
|
- lib/wicket/subpath.rb
|
89
|
+
- lib/wicket/subpoint.rb
|
78
90
|
- lib/wicket/svg_path.rb
|
91
|
+
- lib/wicket/utilities.rb
|
79
92
|
- lib/wicket/version.rb
|
93
|
+
- spec/coordinate_spec.rb
|
80
94
|
- spec/spec_helper.rb
|
81
95
|
- spec/svg_path_spec.rb
|
96
|
+
- spec/test_cases.yml
|
97
|
+
- spec/utilities_spec.rb
|
82
98
|
- wicket.gemspec
|
83
99
|
homepage: http://github.com/rurabe/wicket
|
84
100
|
licenses:
|
@@ -105,5 +121,8 @@ signing_key:
|
|
105
121
|
specification_version: 4
|
106
122
|
summary: A tool to turn SVGs into WKT
|
107
123
|
test_files:
|
124
|
+
- spec/coordinate_spec.rb
|
108
125
|
- spec/spec_helper.rb
|
109
126
|
- spec/svg_path_spec.rb
|
127
|
+
- spec/test_cases.yml
|
128
|
+
- spec/utilities_spec.rb
|