rxsd 0.2 → 0.3

Sign up to get free protection for your applications and to get access to all the features.
data/README DELETED
@@ -1,19 +0,0 @@
1
- RXSD - XSD / Ruby Translator
2
- Copyright (C) 2009 Mohammed Morsi <movitto@yahoo.com>
3
- See COPYING for the License of this software
4
-
5
- RXSD is a library that translates XSD XML Schema Definitions into Ruby Classes
6
- on the fly. It is able to read XSD resources and use them to define Ruby
7
- classes in memory or string class definitions to be written to the filesystem
8
-
9
- RXSD implements a full XSD parser that not only defines the various xsd schema
10
- classes, parsing them out of a XSD file, but translates them into a
11
- meta-class heirarchy, for use in subsequent transformations. The builder interface
12
- can easily be extended to output any format one could want including classes
13
- in other languages (Python, C++, Java, etc), other XML formats, etc.
14
-
15
- RXSD also parses XML conforming to a XSD schema, and instantiates objects
16
- corresponding to the XSD classes created. Furthermore, RXSD will work with
17
- existing class definitions resulting in a quick way to map XSD to Ruby constructs,
18
- letting you define the schema features that you need, and autogenerting handlers
19
- to the others.