washout_builder 0.6.1 → 0.6.2
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.
- checksums.yaml +8 -8
- data/README.rdoc +3 -3
- data/app/helpers/washout_builder_helper.rb +1 -1
- data/lib/washout_builder/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MjY1NzdmYmQ5ZTFhYjQ1OTU2ZGIxMTJkM2U5MjQwOTBlNzRmYjAwNg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OGRkMGI5MzMwYWY3N2QzYzcxNTUzMDQxNmNiNTA2NzE0MDNhMmZlZQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ODQwYTM0YjM3MWJlMGY1ZDNhMDY0ZGZiNDNkM2UzNTQ0Yzk5M2IxZjQ0NTEy
|
10
|
+
Mzk2N2QzNzA4YWY5YWJjZjRjMGUxYTRiNTM5OTE5MzQzYTZjYTM3N2Q4ZmY4
|
11
|
+
ZjY2NTMzYTY4YjFkZDkyYzZhMDQ3ZDI4OGFmYzljYzdmZGEyYmY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MDU0NDUyMTRhYWE4ZTA2ZjJiODE5ZmYyNjA3YjA3Y2FhYjRiNjk5NGRlNTkw
|
14
|
+
OTk1Mjc1OWQ1MzUzNGRlYWYxMTIzMzhmMzAwZjExODkwZjNiMGQ3NjdkNTFl
|
15
|
+
MjZlNGYxZDEyZGY2YzU2ZWQ5YmM0OTIxNTcxN2NmZTdmYjFmOWQ=
|
data/README.rdoc
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
= washout_builder
|
1
|
+
= washout_builder {<img src="https://travis-ci.org/bogdanRada/washout_builder.png" />}[https://travis-ci.org/bogdanRada/washout_builder] {<img src="https://badge.fury.io/rb/washout_builder.png" alt="Gem Version" />}[http://badge.fury.io/rb/washout_builder]
|
2
2
|
|
3
3
|
= Overview
|
4
4
|
WashOutBuilder is a Soap Service Documentation generator (extends WashOut https://github.com/inossidabile/wash_out/)
|
@@ -18,9 +18,9 @@ The way WashOut is used is not modified, it just extends its functionality by ge
|
|
18
18
|
|
19
19
|
= Requirements
|
20
20
|
|
21
|
-
1. {Ruby 1.9.x}[http://www.ruby-lang.org]
|
21
|
+
1. {Ruby 1.9.x or Ruby 2.0.x}[http://www.ruby-lang.org]
|
22
22
|
2. {Ruby on Rails}[http://rubyonrails.org].
|
23
|
-
3. {WashOut Gem
|
23
|
+
3. {WashOut Gem version >= 0.9.1}[https://github.com/inossidabile/wash_out]
|
24
24
|
4. {Nori Gem}[https://github.com/savonrb/nori]
|
25
25
|
|
26
26
|
= Compatibility
|
@@ -100,7 +100,7 @@ module WashoutBuilderHelper
|
|
100
100
|
def create_complex_type_html(xml, param, class_name, ancestors)
|
101
101
|
unless param.blank?
|
102
102
|
xml.a( "name" => "#{class_name}") { }
|
103
|
-
xml.h3 { |pre| pre << "#{class_name} #{ancestors.blank? ? "" : "(extends <a href='##{ancestors[0].to_s.classify}'
|
103
|
+
xml.h3 { |pre| pre << "#{class_name} #{ancestors.blank? ? "" : "<small>(extends <a href='##{ancestors[0].to_s.classify}'>#{ancestors[0].to_s.classify}</a>)</small>" } " }
|
104
104
|
|
105
105
|
if param.is_a?(WashoutBuilder::Param)
|
106
106
|
xml.ul("class" => "pre") {
|