Switch to using the dep tool and update all the dependencies

This commit is contained in:
Nick Craig-Wood 2017-05-11 15:39:54 +01:00
parent 5135ff73cb
commit 98c2d2c41b
5321 changed files with 4483201 additions and 5922 deletions

View file

@ -0,0 +1,31 @@
<div id="footer">
Generated on <%= Time.now.strftime("%c") %> by
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
<%= YARD::VERSION %> (ruby-<%= RUBY_VERSION %>).
</div>
<!-- BEGIN-SECTION -->
<script type="text/javascript" src="https://media.amazonwebservices.com/amznUrchin.js"></script>
<!-- SiteCatalyst code version: H.25.2. Copyright 1996-2012 Adobe, Inc. All Rights Reserved.
More info available at http://www.omniture.com -->
<script language="JavaScript" type="text/javascript" src="https://media.amazonwebservices.com/js/sitecatalyst/s_code.min.js">
</script>
<script language="JavaScript" type="text/javascript">
<!--
s.prop66='AWS SDK for Go';
s.eVar66='D=c66';
s.prop65='API Reference';
s.eVar65='D=c65';
var s_code=s.t();if(s_code)document.write(s_code)
//-->
</script>
<script language="JavaScript" type="text/javascript">
<!--if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
//-->
</script>
<noscript>
<img src="http://amazonwebservices.d2.sc.omtrdc.net/b/ss/awsamazondev/1/H.25.2--NS/0" height="1" width="1" border="0" alt="">
</noscript>
<!--/DO NOT REMOVE/-->
<!-- End SiteCatalyst code version: H.25.2. -->
<!-- END-SECTION -->

View file

@ -0,0 +1,4 @@
<h2>Client Structure <small><a href="#" class="summary_toggle">collapse</a></small></h2>
<ul class="summary">
<%= yieldall :item => @client %>
</ul>

View file

@ -0,0 +1,28 @@
<% if !@item.has_tag?(:paginator) %>
<li class="<%= @item.visibility %> <%= @item.has_tag?(:deprecated) ? 'deprecated' : '' %>">
<span class="summary_signature"><%= signature(@item) %></span>
<% if object != @item.namespace %>
<span class="note title not_defined_here">
<%= @item.namespace.type == :class ? 'inherited' : (@item.scope == :class ? 'extended' : 'included') %>
from <%= linkify @item, object.relative_path(@item.namespace) %>
</span>
<% end %>
<% if @item.type == :enum %><span class="note title writeonly">enum</span><% end %>
<% if @item.type == :bare_struct || @item.type == :struct %><span class="note title readonly">struct</span><% end %>
<% if @item.has_tag?(:service) %><span class="note title writeonly">client</span><% end %>
<% if @item.has_tag?(:service_operation) %><span class="note title readonly">operation</span><% end %>
<% if @item.type == :interface %><span class="note title interface">interface</span><% end %>
<% if @item.has_tag?(:readonly) %><span class="note title readonly">readonly</span><% end %>
<% if @item.has_tag?(:writeonly) %><span class="note title writeonly">writeonly</span><% end %>
<% if @item.visibility != :public %><span class="note title <%= @item.visibility %>"><%= @item.visibility %></span><% end %>
<% if @item.has_tag?(:abstract) %><span class="abstract note title">interface</span><% end %>
<% if @item.has_tag?(:deprecated) %><span class="deprecated note title">deprecated</span><% end %>
<% if @item.has_tag?(:api) && @item.tag(:api).text == 'private' %><span class="private note title">private</span><% end %>
<% if @item.has_tag?(:deprecated) %>
<span class="summary_desc"><strong>Deprecated.</strong> <%= htmlify_line @item.tag(:deprecated).text %></span>
<% else %>
<span class="summary_desc"><%= htmlify_line docstring_summary(@item) %></span>
<% end %>
</li>
<% end %>

View file

@ -0,0 +1,9 @@
def init
super
sections.place(:client, [:item_summary]).before(:constant_summary)
end
def client
@client = object.children.find {|c| c.has_tag?(:service) }
erb(:client) if @client
end

View file

@ -0,0 +1,8 @@
def type_summary
@items = object.children.
select {|c| c.type == :bare_struct || c.type == :struct || c.type == :enum }.
reject {|c| c.has_tag?(:service) }.
sort_by {|c| c.name.to_s }
@name = "Type"
erb :list_summary
end

View file

@ -0,0 +1,4 @@
<div id="paginators" class="inline-objects">
<h2 class="paginators">Pagination Methods</h2>
<p class="children"><%= @items.map {|pkg| link_object(pkg, pkg.name) }.join(" ") %></p>
</div>

View file

@ -0,0 +1,4 @@
<div id="request_methods" class="inline-objects">
<h2 class="request_methods">Request Methods</h2>
<p class="children"><%= @items.map {|pkg| link_object(pkg, pkg.name) }.join(" ") %></p>
</div>

View file

@ -0,0 +1,20 @@
def init
super
sections.place(:request_methods, :paginators).after(:method_summary)
end
def groups(list, type = "Method")
super(list.reject {|o| o.has_tag?(:paginator) || o.has_tag?(:request_method) }, type)
end
def paginators
@items = object.children.select {|o| o.has_tag?(:paginator) }
return if @items.size == 0
erb(:paginators)
end
def request_methods
@items = object.children.select {|o| o.has_tag?(:request_method) }
return if @items.size == 0
erb(:request_methods)
end