spqr 0.0.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/test/test_spqr.rb ADDED
@@ -0,0 +1,7 @@
1
+ require 'helper'
2
+
3
+ class TestSpqr < Test::Unit::TestCase
4
+ def test_something_for_real
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: spqr
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - William Benton
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-11-30 00:00:00 -06:00
13
+ default_executable: spqr-gen.rb
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rspec
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.2.9
24
+ version:
25
+ description: SPQR makes it very simple to expose methods on Ruby objects over QMF. You must install ruby-qmf in order to use SPQR.
26
+ email: willb@redhat.com
27
+ executables:
28
+ - spqr-gen.rb
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - LICENSE
33
+ - README.rdoc
34
+ - TODO
35
+ files:
36
+ - .document
37
+ - .gitignore
38
+ - LICENSE
39
+ - README.rdoc
40
+ - Rakefile
41
+ - TODO
42
+ - VERSION
43
+ - bin/spqr-gen.rb
44
+ - examples/codegen-schema.xml
45
+ - examples/hello.rb
46
+ - examples/logservice.rb
47
+ - lib/rhubarb/rhubarb.rb
48
+ - lib/spqr/app.rb
49
+ - lib/spqr/codegen.rb
50
+ - lib/spqr/constants.rb
51
+ - lib/spqr/manageable.rb
52
+ - lib/spqr/spqr.rb
53
+ - lib/spqr/utils.rb
54
+ - spec/spec.opts
55
+ - spec/spec_helper.rb
56
+ - spec/spqr_spec.rb
57
+ - spqr.spec.in
58
+ - test/helper.rb
59
+ - test/test_rhubarb.rb
60
+ - test/test_spqr.rb
61
+ has_rdoc: true
62
+ homepage: http://git.fedorahosted.org/git/grid/spqr.git
63
+ licenses: []
64
+
65
+ post_install_message:
66
+ rdoc_options:
67
+ - --charset=UTF-8
68
+ require_paths:
69
+ - lib
70
+ required_ruby_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: "0"
75
+ version:
76
+ required_rubygems_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: "0"
81
+ version:
82
+ requirements: []
83
+
84
+ rubyforge_project:
85
+ rubygems_version: 1.3.5
86
+ signing_key:
87
+ specification_version: 3
88
+ summary: "SPQR: {Schema Processor|Straightforward Publishing} for QMF agents in Ruby"
89
+ test_files:
90
+ - spec/spqr_spec.rb
91
+ - spec/spec_helper.rb
92
+ - test/helper.rb
93
+ - test/test_rhubarb.rb
94
+ - test/test_spqr.rb
95
+ - examples/hello.rb
96
+ - examples/codegen/EchoAgent.rb
97
+ - examples/logservice.rb