rogdl 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. metadata +16 -11
  2. data/History.txt +0 -5
  3. data/README.txt +0 -51
metadata CHANGED
@@ -3,11 +3,11 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: rogdl
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.0
7
- date: 2007-08-20 00:00:00 -05:00
8
- summary: A package for parsing OGDL files
6
+ version: 0.1.1
7
+ date: 2007-08-21 00:00:00 -05:00
8
+ summary: Rogdl is a package for parsing OGDL files.
9
9
  require_paths:
10
- - lib/rogdl
10
+ - lib
11
11
  email: ben.hidalgo@gmail.com
12
12
  homepage:
13
13
  rubyforge_project:
@@ -51,20 +51,25 @@ files:
51
51
  - test/test_string.rb
52
52
  - test/test_symbol.rb
53
53
  - test/test_writer.rb
54
- - README.txt
55
- - History.txt
56
54
  test_files: []
57
55
 
58
56
  rdoc_options: []
59
57
 
60
- extra_rdoc_files:
61
- - README.txt
62
- - History.txt
58
+ extra_rdoc_files: []
59
+
63
60
  executables: []
64
61
 
65
62
  extensions: []
66
63
 
67
64
  requirements: []
68
65
 
69
- dependencies: []
70
-
66
+ dependencies:
67
+ - !ruby/object:Gem::Dependency
68
+ name: erb
69
+ version_requirement:
70
+ version_requirements: !ruby/object:Gem::Version::Requirement
71
+ requirements:
72
+ - - ">"
73
+ - !ruby/object:Gem::Version
74
+ version: 0.0.0
75
+ version:
data/History.txt DELETED
@@ -1,5 +0,0 @@
1
- == 0.1.0 / 2007-08-20
2
-
3
- * 1 major enhancement
4
- * Birthday!
5
-
data/README.txt DELETED
@@ -1,51 +0,0 @@
1
- rogdl
2
- by Ben Hidalgo
3
- http://rogdl.rubyforge.org/
4
-
5
- == DESCRIPTION:
6
-
7
- Rogdl is designed to make using the Ordered Graph Data Language (OGDL) simple and easy within Ruby. It contains a parser, some utilities and classes to support OGDL files.
8
-
9
- == FEATURES/PROBLEMS:
10
-
11
- OGDL Parsing. A bridge to ERB. XML file generation. Schema definition and validation of OGDL documents. Fully OGDL syntax not yet supported (but most is.) Simple OGDL writer not yet written (haven't needed it yet).
12
-
13
- == SYNOPSIS:
14
-
15
- clouds = Parser.parse_file("./rspec/clouds.ogdl")
16
- families = clouds.find_all_named('family')
17
- writer = Writer.new.load_templates('./rspec')
18
- writer.write_to_files(families, proc {|family| "./rspec/samples/html/#{family.name.gvalue}.htm"})
19
-
20
- == REQUIREMENTS:
21
-
22
- erb
23
-
24
- == INSTALL:
25
-
26
- sudo gem install rogdl
27
-
28
- == LICENSE:
29
-
30
- (The MIT License)
31
-
32
- Copyright (c) 2007 FIX
33
-
34
- Permission is hereby granted, free of charge, to any person obtaining
35
- a copy of this software and associated documentation files (the
36
- 'Software'), to deal in the Software without restriction, including
37
- without limitation the rights to use, copy, modify, merge, publish,
38
- distribute, sublicense, and/or sell copies of the Software, and to
39
- permit persons to whom the Software is furnished to do so, subject to
40
- the following conditions:
41
-
42
- The above copyright notice and this permission notice shall be
43
- included in all copies or substantial portions of the Software.
44
-
45
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
46
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
47
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
48
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
49
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
50
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
51
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.