schematic 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +39 -1
- data/lib/schematic/serializers/xsd.rb +9 -1
- data/lib/schematic/version.rb +1 -1
- data/spec/schematic_serializers_xsd_spec.rb +146 -13
- data/spec/spec_helper.rb +1 -0
- data/spec/xsd/XMLSchema.xsd +2534 -0
- metadata +4 -2
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: schematic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Case Commons, LLC
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-04-
|
13
|
+
date: 2011-04-04 00:00:00 -04:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -101,6 +101,7 @@ files:
|
|
101
101
|
- schematic.gemspec
|
102
102
|
- spec/schematic_serializers_xsd_spec.rb
|
103
103
|
- spec/spec_helper.rb
|
104
|
+
- spec/xsd/XMLSchema.xsd
|
104
105
|
has_rdoc: true
|
105
106
|
homepage: https://github.com/Casecommons/schematic
|
106
107
|
licenses: []
|
@@ -132,3 +133,4 @@ summary: Automatic XSD generation from ActiveRecord models
|
|
132
133
|
test_files:
|
133
134
|
- spec/schematic_serializers_xsd_spec.rb
|
134
135
|
- spec/spec_helper.rb
|
136
|
+
- spec/xsd/XMLSchema.xsd
|