yard-rest-plugin 0.1.2 → 0.1.3
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/README.markdown +3 -1
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/yard-rest-plugin.gemspec +4 -1
- metadata +16 -4
data/README.markdown
CHANGED
|
@@ -6,7 +6,9 @@ A plugin for [Yardoc](http://yardoc.org/) that generates documentation for RESTf
|
|
|
6
6
|
|
|
7
7
|
Install
|
|
8
8
|
-------
|
|
9
|
-
sudo gem install
|
|
9
|
+
sudo gem install yard-rest-plugin
|
|
10
|
+
|
|
11
|
+
It also requires the Jeweler gem if you plan to use the rake build tasks.
|
|
10
12
|
|
|
11
13
|
Generating Docs
|
|
12
14
|
---------------
|
data/Rakefile
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
data/yard-rest-plugin.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{yard-rest-plugin}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Aisha Fenton"]
|
|
@@ -68,9 +68,12 @@ Gem::Specification.new do |s|
|
|
|
68
68
|
s.specification_version = 3
|
|
69
69
|
|
|
70
70
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
71
|
+
s.add_runtime_dependency(%q<yard>, [">= 0.5"])
|
|
71
72
|
else
|
|
73
|
+
s.add_dependency(%q<yard>, [">= 0.5"])
|
|
72
74
|
end
|
|
73
75
|
else
|
|
76
|
+
s.add_dependency(%q<yard>, [">= 0.5"])
|
|
74
77
|
end
|
|
75
78
|
end
|
|
76
79
|
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 3
|
|
9
|
+
version: 0.1.3
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Aisha Fenton
|
|
@@ -16,8 +16,20 @@ cert_chain: []
|
|
|
16
16
|
|
|
17
17
|
date: 2010-04-26 00:00:00 +12:00
|
|
18
18
|
default_executable:
|
|
19
|
-
dependencies:
|
|
20
|
-
|
|
19
|
+
dependencies:
|
|
20
|
+
- !ruby/object:Gem::Dependency
|
|
21
|
+
name: yard
|
|
22
|
+
prerelease: false
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
|
+
requirements:
|
|
25
|
+
- - ">="
|
|
26
|
+
- !ruby/object:Gem::Version
|
|
27
|
+
segments:
|
|
28
|
+
- 0
|
|
29
|
+
- 5
|
|
30
|
+
version: "0.5"
|
|
31
|
+
type: :runtime
|
|
32
|
+
version_requirements: *id001
|
|
21
33
|
description: A plugin for Yardoc that produces API documentation for Restful web services. See README.markdown for more details
|
|
22
34
|
email: aisha.fenton@visfleet.com
|
|
23
35
|
executables: []
|