Class: Awspec::Generator::Doc::Type::Account
- Inherits:
-
Base
- Object
- Base
- Awspec::Generator::Doc::Type::Account
show all
- Defined in:
- lib/awspec/generator/doc/type/account.rb
Instance Method Summary
collapse
Methods inherited from Base
#collect_matchers, #sort_num, #type_name
Constructor Details
Returns a new instance of Account.
7
8
9
10
11
12
13
14
15
|
# File 'lib/awspec/generator/doc/type/account.rb', line 7
def initialize
super
@type_name = 'Account'
@type = Awspec::Type::Account.new
@ret = @type.resource_via_client
@matchers = []
@ignore_matchers = []
@describes = []
end
|
Instance Method Details
#account_spec_template ⇒ Object
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# File 'lib/awspec/generator/doc/type/account.rb', line 22
def account_spec_template
"describe account do\n<% @ret.members.each do |key| %>\n<%- if @ret[key].is_a?(String) -%>\n its(:<%= key %>) { should eq '<%= @ret[key] %>' }\n<%- else -%>\n<% @ret[key].members.each do |attribute| %>\n<%- if @ret[key][attribute].is_a?(Array) -%>\n its('<%= key %>.<%= attribute %>') { should eq <%= @ret[key][attribute] %> }\n<%- elsif @ret[key][attribute].is_a?(String) -%>\n its('<%= key %>.<%= attribute %>') { should eq '<%= @ret[key][attribute] %>' }\n<%- elsif @ret[key][attribute].is_a?(Struct) -%>\n<% @ret[key][attribute].members.each do |k| %>\n its('<%= key %>.<%= attribute %>.<%= k %>') { should eq <%= @ret[key][attribute][k] %> }\n<% end %>\n<%- else -%>\n its('<%= key %>.<%= attribute %>') { should eq <%= @ret[key][attribute] %> }\n<%- end -%>\n<% end %>\n<% end %>\n<%- end -%>\nend\n"
end
|
#doc_template ⇒ Object
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# File 'lib/awspec/generator/doc/type/account.rb', line 48
def doc_template
"## <a name=\"<%= @type_name.gsub(/ /, '_').underscore %>\"><%= @type_name.gsub(/ /, '_').underscore %></a>\n\n<%= @type_name %> resource type.\n<%- if @descriptions.include?('first') -%><%= @descriptions['first'] %><%- end -%>\n\n```ruby\n<%= @account_spec %>```\n\n<% @matchers.each do |matcher| %>\n### <%= matcher %>\n<%- if @descriptions.include?(matcher) -%><%= @descriptions[matcher] %><%- end -%>\n<% end %>\n<%- if @descriptions.include?('advanced') -%>\n\n### :unlock: Advanced use\n<%= @descriptions['advanced'] %><%- end -%>\n"
end
|
#generate_doc ⇒ Object
17
18
19
20
|
# File 'lib/awspec/generator/doc/type/account.rb', line 17
def generate_doc
@account_spec = ERB.new(account_spec_template, trim_mode: '-').result(binding).gsub(/^\n/, '')
super
end
|