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.
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.2
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-01 00:00:00.000000000 Z
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