sinatra-rabbit 1.1.3 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/sinatra/docs/operation.haml +2 -2
- data/sinatra-rabbit.gemspec +1 -1
- metadata +60 -39
@@ -7,7 +7,7 @@
|
|
7
7
|
%a{ :href => url('/docs') } Documentation
|
8
8
|
%span.divider='/'
|
9
9
|
%li
|
10
|
-
%a{ :href => url(collection.docs_url)}=collection.collection_name.to_s.split('_').map {|p| p.capitalize}.join(' ')
|
10
|
+
%a{ :href => url(collection.docs_url)}=collection.collection_name.to_s.split('_').map {|p| p.capitalize }.join(' ')
|
11
11
|
%span.divider='/'
|
12
12
|
%li.active=operation.operation_name.to_s.capitalize
|
13
13
|
.container
|
@@ -43,7 +43,7 @@
|
|
43
43
|
%td
|
44
44
|
%em=p.name
|
45
45
|
="<sup style='color:red;'>*</sup>" if p.required?
|
46
|
-
%td=p.klass.capitalize
|
46
|
+
%td=p.klass.to_s.capitalize
|
47
47
|
%td=p.values
|
48
48
|
%td
|
49
49
|
%small=p.description
|
data/sinatra-rabbit.gemspec
CHANGED
metadata
CHANGED
@@ -1,81 +1,102 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: sinatra-rabbit
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 1
|
9
|
+
- 4
|
10
|
+
version: 1.1.4
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- The Apache Software Foundation
|
9
14
|
autorequire:
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
17
|
+
|
18
|
+
date: 2013-02-15 00:00:00 +01:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
15
22
|
name: sinatra
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ! '>='
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: 1.3.0
|
22
|
-
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
25
|
none: false
|
26
|
-
requirements:
|
27
|
-
- -
|
28
|
-
- !ruby/object:Gem::Version
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 27
|
30
|
+
segments:
|
31
|
+
- 1
|
32
|
+
- 3
|
33
|
+
- 0
|
29
34
|
version: 1.3.0
|
30
|
-
|
31
|
-
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
description: " Rabbit is a Sinatra extension which can help you writing\n a simple REST API using easy to undestand DSL.\n"
|
32
38
|
email: dev@deltacloud.apache.org
|
33
39
|
executables: []
|
40
|
+
|
34
41
|
extensions: []
|
35
|
-
|
42
|
+
|
43
|
+
extra_rdoc_files:
|
36
44
|
- LICENSE
|
37
|
-
files:
|
45
|
+
files:
|
38
46
|
- lib/sinatra/rabbit.rb
|
39
47
|
- lib/sinatra/docs/api.haml
|
40
|
-
- lib/sinatra/docs/operation.haml
|
41
48
|
- lib/sinatra/docs/collection.haml
|
49
|
+
- lib/sinatra/docs/operation.haml
|
42
50
|
- lib/sinatra/docs/bootstrap.min.css
|
43
51
|
- lib/sinatra/rabbit/base.rb
|
44
|
-
- lib/sinatra/rabbit/
|
45
|
-
- lib/sinatra/rabbit/validator.rb
|
52
|
+
- lib/sinatra/rabbit/base_collection.rb
|
46
53
|
- lib/sinatra/rabbit/dsl.rb
|
54
|
+
- lib/sinatra/rabbit/features.rb
|
47
55
|
- lib/sinatra/rabbit/param.rb
|
48
|
-
- lib/sinatra/rabbit/
|
56
|
+
- lib/sinatra/rabbit/validator.rb
|
49
57
|
- tests/app_test.rb
|
50
|
-
- tests/params_test.rb
|
51
|
-
- tests/fixtures.rb
|
52
58
|
- tests/docs_test.rb
|
53
59
|
- tests/dsl_test.rb
|
60
|
+
- tests/fixtures.rb
|
61
|
+
- tests/params_test.rb
|
54
62
|
- LICENSE
|
55
63
|
- README.md
|
56
64
|
- sinatra-rabbit.gemspec
|
65
|
+
has_rdoc: true
|
57
66
|
homepage: http://github.com/mifo/sinatra-rabbit
|
58
67
|
licenses: []
|
68
|
+
|
59
69
|
post_install_message:
|
60
70
|
rdoc_options: []
|
61
|
-
|
71
|
+
|
72
|
+
require_paths:
|
62
73
|
- lib
|
63
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
64
75
|
none: false
|
65
|
-
requirements:
|
66
|
-
- -
|
67
|
-
- !ruby/object:Gem::Version
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
hash: 53
|
80
|
+
segments:
|
81
|
+
- 1
|
82
|
+
- 8
|
83
|
+
- 1
|
68
84
|
version: 1.8.1
|
69
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
86
|
none: false
|
71
|
-
requirements:
|
72
|
-
- -
|
73
|
-
- !ruby/object:Gem::Version
|
74
|
-
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
hash: 3
|
91
|
+
segments:
|
92
|
+
- 0
|
93
|
+
version: "0"
|
75
94
|
requirements: []
|
95
|
+
|
76
96
|
rubyforge_project:
|
77
|
-
rubygems_version: 1.
|
97
|
+
rubygems_version: 1.6.2
|
78
98
|
signing_key:
|
79
99
|
specification_version: 3
|
80
100
|
summary: Sinatra REST API DSL
|
81
101
|
test_files: []
|
102
|
+
|