savage 1.1.2 → 1.1.3

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.
Files changed (4) hide show
  1. data/README.rdoc +2 -0
  2. data/VERSION +1 -1
  3. data/savage.gemspec +3 -24
  4. metadata +6 -39
data/README.rdoc CHANGED
@@ -96,3 +96,5 @@ I have no doubt that will be some problems with this thing, as well as features
96
96
  == Copyright
97
97
 
98
98
  Copyright (c) 2010 Jeremy Holland. See LICENSE for details.
99
+
100
+
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.2
1
+ 1.1.3
data/savage.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{savage}
8
- s.version = "1.1.2"
8
+ s.version = "1.1.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jeremy Holland"]
12
- s.date = %q{2010-12-30}
12
+ s.date = %q{2011-07-21}
13
13
  s.description = %q{A little gem for extracting and manipulating SVG vector path data.}
14
14
  s.email = %q{jeremy@jeremypholland.com}
15
15
  s.extra_rdoc_files = [
@@ -62,31 +62,10 @@ Gem::Specification.new do |s|
62
62
  ]
63
63
  s.homepage = %q{http://github.com/awebneck/savage}
64
64
  s.require_paths = ["lib"]
65
- s.rubygems_version = %q{1.3.7}
65
+ s.rubygems_version = %q{1.6.2}
66
66
  s.summary = %q{A little library to manipulate SVG path data}
67
- s.test_files = [
68
- "spec/savage/directions/arc_to_spec.rb",
69
- "spec/savage/directions/close_path_spec.rb",
70
- "spec/savage/directions/cubic_curve_to_spec.rb",
71
- "spec/savage/directions/horizontal_to_spec.rb",
72
- "spec/savage/directions/line_to_spec.rb",
73
- "spec/savage/directions/move_to_spec.rb",
74
- "spec/savage/directions/point_spec.rb",
75
- "spec/savage/directions/quadratic_curve_spec.rb",
76
- "spec/savage/directions/vertical_to_spec.rb",
77
- "spec/savage/parser_spec.rb",
78
- "spec/savage/path_spec.rb",
79
- "spec/savage/sub_path_spec.rb",
80
- "spec/savage_spec.rb",
81
- "spec/shared/command.rb",
82
- "spec/shared/coordinate_target.rb",
83
- "spec/shared/direction.rb",
84
- "spec/shared/point_target.rb",
85
- "spec/spec_helper.rb"
86
- ]
87
67
 
88
68
  if s.respond_to? :specification_version then
89
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
90
69
  s.specification_version = 3
91
70
 
92
71
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
metadata CHANGED
@@ -1,12 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: savage
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 1
7
- - 1
8
- - 2
9
- version: 1.1.2
4
+ prerelease:
5
+ version: 1.1.3
10
6
  platform: ruby
11
7
  authors:
12
8
  - Jeremy Holland
@@ -14,7 +10,7 @@ autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
12
 
17
- date: 2010-12-30 00:00:00 -06:00
13
+ date: 2011-07-21 00:00:00 -05:00
18
14
  default_executable:
19
15
  dependencies:
20
16
  - !ruby/object:Gem::Dependency
@@ -25,10 +21,6 @@ dependencies:
25
21
  requirements:
26
22
  - - ">="
27
23
  - !ruby/object:Gem::Version
28
- segments:
29
- - 2
30
- - 3
31
- - 0
32
24
  version: 2.3.0
33
25
  type: :development
34
26
  version_requirements: *id001
@@ -40,10 +32,6 @@ dependencies:
40
32
  requirements:
41
33
  - - ">="
42
34
  - !ruby/object:Gem::Version
43
- segments:
44
- - 2
45
- - 3
46
- - 5
47
35
  version: 2.3.5
48
36
  type: :runtime
49
37
  version_requirements: *id002
@@ -113,40 +101,19 @@ required_ruby_version: !ruby/object:Gem::Requirement
113
101
  requirements:
114
102
  - - ">="
115
103
  - !ruby/object:Gem::Version
116
- segments:
117
- - 0
118
104
  version: "0"
119
105
  required_rubygems_version: !ruby/object:Gem::Requirement
120
106
  none: false
121
107
  requirements:
122
108
  - - ">="
123
109
  - !ruby/object:Gem::Version
124
- segments:
125
- - 0
126
110
  version: "0"
127
111
  requirements: []
128
112
 
129
113
  rubyforge_project:
130
- rubygems_version: 1.3.7
114
+ rubygems_version: 1.6.2
131
115
  signing_key:
132
116
  specification_version: 3
133
117
  summary: A little library to manipulate SVG path data
134
- test_files:
135
- - spec/savage/directions/arc_to_spec.rb
136
- - spec/savage/directions/close_path_spec.rb
137
- - spec/savage/directions/cubic_curve_to_spec.rb
138
- - spec/savage/directions/horizontal_to_spec.rb
139
- - spec/savage/directions/line_to_spec.rb
140
- - spec/savage/directions/move_to_spec.rb
141
- - spec/savage/directions/point_spec.rb
142
- - spec/savage/directions/quadratic_curve_spec.rb
143
- - spec/savage/directions/vertical_to_spec.rb
144
- - spec/savage/parser_spec.rb
145
- - spec/savage/path_spec.rb
146
- - spec/savage/sub_path_spec.rb
147
- - spec/savage_spec.rb
148
- - spec/shared/command.rb
149
- - spec/shared/coordinate_target.rb
150
- - spec/shared/direction.rb
151
- - spec/shared/point_target.rb
152
- - spec/spec_helper.rb
118
+ test_files: []
119
+