wsdsl 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: wsdsl
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 1
9
+ version: 0.0.1
10
+ platform: ruby
11
+ authors:
12
+ - Matt Aimonetti
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2011-02-28 00:00:00 -08:00
18
+ default_executable:
19
+ dependencies: []
20
+
21
+ description: A Ruby DSL describing Web Services without implementation details.
22
+ email: mattaimonetti@gmail.com
23
+ executables: []
24
+
25
+ extensions: []
26
+
27
+ extra_rdoc_files:
28
+ - LICENSE
29
+ - README.md
30
+ files:
31
+ - LICENSE
32
+ - README.md
33
+ - Rakefile
34
+ - VERSION
35
+ - lib/documentation.rb
36
+ - lib/framework_ext/sinatra.rb
37
+ - lib/framework_ext/sinatra_controller.rb
38
+ - lib/inflection.rb
39
+ - lib/params.rb
40
+ - lib/params_verification.rb
41
+ - lib/response.rb
42
+ - lib/ws_list.rb
43
+ - lib/wsdsl.rb
44
+ - spec/hello_world_controller.rb
45
+ - spec/hello_world_service.rb
46
+ - spec/params_verification_spec.rb
47
+ - spec/spec_helper.rb
48
+ - spec/test_services.rb
49
+ - spec/wsdsl_sinatra_ext_spec.rb
50
+ - spec/wsdsl_spec.rb
51
+ - wsdsl.gemspec
52
+ has_rdoc: true
53
+ homepage: http://github.com/mattetti/wsdsl
54
+ licenses:
55
+ - MIT
56
+ post_install_message:
57
+ rdoc_options: []
58
+
59
+ require_paths:
60
+ - lib
61
+ required_ruby_version: !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ segments:
67
+ - 0
68
+ version: "0"
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ segments:
75
+ - 0
76
+ version: "0"
77
+ requirements: []
78
+
79
+ rubyforge_project:
80
+ rubygems_version: 1.3.7
81
+ signing_key:
82
+ specification_version: 3
83
+ summary: Web Service DSL
84
+ test_files:
85
+ - spec/hello_world_controller.rb
86
+ - spec/hello_world_service.rb
87
+ - spec/params_verification_spec.rb
88
+ - spec/spec_helper.rb
89
+ - spec/test_services.rb
90
+ - spec/wsdsl_sinatra_ext_spec.rb
91
+ - spec/wsdsl_spec.rb