masterplan 0.3.0 → 0.3.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.
- data/Rakefile +3 -2
- data/VERSION +1 -1
- data/masterplan.gemspec +3 -3
- metadata +5 -5
data/Rakefile
CHANGED
|
@@ -15,8 +15,9 @@ Jeweler::Tasks.new do |gem|
|
|
|
15
15
|
gem.name = "masterplan"
|
|
16
16
|
gem.homepage = "http://github.com/traveliq/masterplan"
|
|
17
17
|
gem.license = "MIT"
|
|
18
|
-
|
|
19
|
-
gem.
|
|
18
|
+
summary = %Q{Masterplan is a library for comparing Ruby data structures against predefined templates - like XML Schema without the XML.}
|
|
19
|
+
gem.summary = summary
|
|
20
|
+
gem.description = summary + " Please see the README on github for more information."
|
|
20
21
|
gem.email = "developer@traveliq.net"
|
|
21
22
|
gem.authors = ["Martin Tepper"]
|
|
22
23
|
# Include your dependencies below. Runtime dependencies are required when using your gem,
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.1
|
data/masterplan.gemspec
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{masterplan}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Martin Tepper"]
|
|
12
12
|
s.date = %q{2011-02-02}
|
|
13
|
-
s.description = %q{Please see the README}
|
|
13
|
+
s.description = %q{Masterplan is a library for comparing Ruby data structures against predefined templates - like XML Schema without the XML. Please see the README on github for more information.}
|
|
14
14
|
s.email = %q{developer@traveliq.net}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"LICENSE.txt",
|
|
@@ -38,7 +38,7 @@ Gem::Specification.new do |s|
|
|
|
38
38
|
s.licenses = ["MIT"]
|
|
39
39
|
s.require_paths = ["lib"]
|
|
40
40
|
s.rubygems_version = %q{1.3.7}
|
|
41
|
-
s.summary = %q{Masterplan is a library for comparing Ruby data structures against predefined templates.}
|
|
41
|
+
s.summary = %q{Masterplan is a library for comparing Ruby data structures against predefined templates - like XML Schema without the XML.}
|
|
42
42
|
s.test_files = [
|
|
43
43
|
"spec/masterplan_spec.rb",
|
|
44
44
|
"spec/spec_helper.rb"
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: masterplan
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 17
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.3.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Martin Tepper
|
|
@@ -96,7 +96,7 @@ dependencies:
|
|
|
96
96
|
prerelease: false
|
|
97
97
|
type: :development
|
|
98
98
|
name: rcov
|
|
99
|
-
description: Please see the README
|
|
99
|
+
description: Masterplan is a library for comparing Ruby data structures against predefined templates - like XML Schema without the XML. Please see the README on github for more information.
|
|
100
100
|
email: developer@traveliq.net
|
|
101
101
|
executables: []
|
|
102
102
|
|
|
@@ -155,7 +155,7 @@ rubyforge_project:
|
|
|
155
155
|
rubygems_version: 1.3.7
|
|
156
156
|
signing_key:
|
|
157
157
|
specification_version: 3
|
|
158
|
-
summary: Masterplan is a library for comparing Ruby data structures against predefined templates.
|
|
158
|
+
summary: Masterplan is a library for comparing Ruby data structures against predefined templates - like XML Schema without the XML.
|
|
159
159
|
test_files:
|
|
160
160
|
- spec/masterplan_spec.rb
|
|
161
161
|
- spec/spec_helper.rb
|