prct6 0.1.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fdd34bdaf431f829ba96b073ae43785fbb56eda3
4
+ data.tar.gz: baa26debb5a3b8f3c624a5b10ff2f560345d999f
5
+ SHA512:
6
+ metadata.gz: 8d115a938579ef7021255b699f5ad71a99668e12381c906a7d6b5cd6bd7ee99cd6e09cc421b30c5973fdb1a5c3d55d7a65146c8dbeef1bd5a6bd4451f54ff8ea
7
+ data.tar.gz: 1b8cef4b16d5639ad20e10705fa03ae802420087ea7e5dcc8ca9ae2362bf499ed3fa391d39a08097f7a52c8382b503afe1e266642b05fd0ea63fd640025cf06c
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.0
5
+ before_install: gem install bundler -v 1.13.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in prct6.gemspec
4
+ gemspec
@@ -0,0 +1,82 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ ## Uncomment and set this to only include directories you want to watch
5
+ # directories %w(app lib config test spec features) \
6
+ # .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}
7
+
8
+ ## Note: if you are using the `directories` clause above and you are not
9
+ ## watching the project directory ('.'), then you will want to move
10
+ ## the Guardfile to a watched dir and symlink it back, e.g.
11
+ #
12
+ # $ mkdir config
13
+ # $ mv Guardfile config/
14
+ # $ ln -s config/Guardfile .
15
+ #
16
+ # and, you'll have to watch "config/Guardfile" instead of "Guardfile"
17
+
18
+ guard :bundler do
19
+ require 'guard/bundler'
20
+ require 'guard/bundler/verify'
21
+ helper = Guard::Bundler::Verify.new
22
+
23
+ files = ['Gemfile']
24
+ files += Dir['*.gemspec'] if files.any? { |f| helper.uses_gemspec?(f) }
25
+
26
+ # Assume files are symlinked from somewhere
27
+ files.each { |file| watch(helper.real_path(file)) }
28
+ end
29
+
30
+ # Note: The cmd option is now required due to the increasing number of ways
31
+ # rspec may be run, below are examples of the most common uses.
32
+ # * bundler: 'bundle exec rspec'
33
+ # * bundler binstubs: 'bin/rspec'
34
+ # * spring: 'bin/rspec' (This will use spring if running and you have
35
+ # installed the spring binstubs per the docs)
36
+ # * zeus: 'zeus rspec' (requires the server to be started separately)
37
+ # * 'just' rspec: 'rspec'
38
+
39
+ guard :rspec, cmd: "bundle exec rspec" do
40
+ require "guard/rspec/dsl"
41
+ dsl = Guard::RSpec::Dsl.new(self)
42
+
43
+ # Feel free to open issues for suggestions and improvements
44
+
45
+ # RSpec files
46
+ rspec = dsl.rspec
47
+ watch(rspec.spec_helper) { rspec.spec_dir }
48
+ watch(rspec.spec_support) { rspec.spec_dir }
49
+ watch(rspec.spec_files)
50
+
51
+ # Ruby files
52
+ ruby = dsl.ruby
53
+ dsl.watch_spec_files_for(ruby.lib_files)
54
+
55
+ # Rails files
56
+ rails = dsl.rails(view_extensions: %w(erb haml slim))
57
+ dsl.watch_spec_files_for(rails.app_files)
58
+ dsl.watch_spec_files_for(rails.views)
59
+
60
+ watch(rails.controllers) do |m|
61
+ [
62
+ rspec.spec.call("routing/#{m[1]}_routing"),
63
+ rspec.spec.call("controllers/#{m[1]}_controller"),
64
+ rspec.spec.call("acceptance/#{m[1]}")
65
+ ]
66
+ end
67
+
68
+ # Rails config changes
69
+ watch(rails.spec_helper) { rspec.spec_dir }
70
+ watch(rails.routes) { "#{rspec.spec_dir}/routing" }
71
+ watch(rails.app_controller) { "#{rspec.spec_dir}/controllers" }
72
+
73
+ # Capybara features specs
74
+ watch(rails.view_dirs) { |m| rspec.spec.call("features/#{m[1]}") }
75
+ watch(rails.layouts) { |m| rspec.spec.call("features/#{m[1]}") }
76
+
77
+ # Turnip features and steps
78
+ watch(%r{^spec/acceptance/(.+)\.feature$})
79
+ watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) do |m|
80
+ Dir[File.join("**/#{m[1]}.feature")][0] || "spec/acceptance"
81
+ end
82
+ end
@@ -0,0 +1,36 @@
1
+ # Prct6
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/prct6`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'prct6'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install prct6
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/prct6.
36
+
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "prct6"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,8 @@
1
+ require "prct6/version"
2
+ require "prct6/dieta"
3
+
4
+ require "prct6/linked"
5
+
6
+ module Prct6
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,81 @@
1
+
2
+ class MenuDSL
3
+
4
+ attr_accessor :nombre, :titulo, :ingesta, :platos, :porcentajes
5
+
6
+ def initialize(nombre, &block)
7
+ self.nombre = nombre
8
+ self.titulo = ""
9
+ self.ingesta = []
10
+ self.platos = []
11
+ self.porcentajes = []
12
+
13
+ if block_given?
14
+ if block.arity == 1
15
+ yield self
16
+ else
17
+ instance_eval &block
18
+ end
19
+ end
20
+ end
21
+
22
+ def title(name)
23
+ aux = name
24
+ titulo << aux
25
+ end
26
+
27
+ def ingest(options = {})
28
+ ing = []
29
+
30
+ if (options[:min] && options[:max])
31
+ ing << options[:min]
32
+ ing << options[:max]
33
+ else
34
+ ing << options[:max]
35
+ end
36
+
37
+ ingesta << ing
38
+
39
+ end
40
+
41
+ def plato(options = {})
42
+ dish = []
43
+ dish << "#{options[:descripcion]}"
44
+ dish << "#{options[:porcion]}"
45
+ dish << "#{options[:gramos]}"
46
+
47
+ platos << dish
48
+ end
49
+
50
+ def porcent(options = {})
51
+ por = []
52
+ por << "#{options[:vct]}"
53
+ por << "#{options[:proteinas]}"
54
+ por << "#{options[:grasas]}"
55
+ por << "#{options[:hidratos]}"
56
+
57
+ porcentajes << por
58
+
59
+ end
60
+
61
+ def to_s
62
+ output = nombre
63
+ output << "\n#{'=' * nombre.size}\n\n"
64
+ output << "#{titulo} "
65
+ ingesta.each do |ing|
66
+ output << "#{ing}\n"
67
+ end
68
+
69
+ platos.each do |dish|
70
+ output << "- #{dish[0]}, #{dish[1]}, #{dish[2]}g\n"
71
+ end
72
+
73
+ porcentajes.each do |por|
74
+ output << "V.C.T. | % #{por[0]} kcal | #{por[1]}% - #{por[2]}% - #{por[3]}%\n"
75
+ end
76
+
77
+ output
78
+
79
+ end
80
+
81
+ end
@@ -0,0 +1,388 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Class: Alimentos
8
+
9
+ &mdash; Documentation by YARD 0.9.5
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
14
+
15
+ <link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
16
+
17
+ <script type="text/javascript" charset="utf-8">
18
+ pathId = "Alimentos";
19
+ relpath = '';
20
+ </script>
21
+
22
+
23
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
24
+
25
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
26
+
27
+
28
+ </head>
29
+ <body>
30
+ <div class="nav_wrap">
31
+ <iframe id="nav" src="class_list.html"></iframe>
32
+ <div id="resizer"></div>
33
+ </div>
34
+
35
+ <div id="main" tabindex="-1">
36
+ <div id="header">
37
+ <div id="menu">
38
+
39
+ <a href="_index.html">Index (A)</a> &raquo;
40
+
41
+
42
+ <span class="title">Alimentos</span>
43
+
44
+ </div>
45
+
46
+ <div id="search">
47
+
48
+ <a class="full_list_link" id="class_list_link"
49
+ href="class_list.html">
50
+
51
+ <svg width="24" height="24">
52
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
+ </svg>
56
+ </a>
57
+
58
+ </div>
59
+ <div class="clear"></div>
60
+ </div>
61
+
62
+ <iframe id="search_frame" src="class_list.html"></iframe>
63
+
64
+ <div id="content"><h1>Class: Alimentos
65
+
66
+
67
+
68
+ </h1>
69
+ <div class="box_info">
70
+
71
+ <dl>
72
+ <dt>Inherits:</dt>
73
+ <dd>
74
+ <span class="inheritName"><span class='object_link'><a href="Dieta.html" title="Dieta (class)">Dieta</a></span></span>
75
+
76
+ <ul class="fullTree">
77
+ <li>Object</li>
78
+
79
+ <li class="next"><span class='object_link'><a href="Dieta.html" title="Dieta (class)">Dieta</a></span></li>
80
+
81
+ <li class="next">Alimentos</li>
82
+
83
+ </ul>
84
+ <a href="#" class="inheritanceTree">show all</a>
85
+
86
+ </dd>
87
+ </dl>
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+ <dl>
100
+ <dt>Defined in:</dt>
101
+ <dd>dieta.rb</dd>
102
+ </dl>
103
+
104
+ </div>
105
+
106
+
107
+
108
+
109
+
110
+ <h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collapse</a></small></h2>
111
+ <ul class="summary">
112
+
113
+ <li class="public ">
114
+ <span class="summary_signature">
115
+
116
+ <a href="#tipo-instance_method" title="#tipo (instance method)">#<strong>tipo</strong> &#x21d2; Object </a>
117
+
118
+
119
+
120
+ </span>
121
+
122
+
123
+
124
+
125
+ <span class="note title readonly">readonly</span>
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+ <span class="summary_desc"><div class='inline'>
136
+ <p>Returns the value of attribute tipo.</p>
137
+ </div></span>
138
+
139
+ </li>
140
+
141
+
142
+ </ul>
143
+
144
+
145
+
146
+
147
+
148
+ <h3 class="inherited">Attributes inherited from <span class='object_link'><a href="Dieta.html" title="Dieta (class)">Dieta</a></span></h3>
149
+ <p class="inherited"><span class='object_link'><a href="Dieta.html#comida-instance_method" title="Dieta#comida (method)">#comida</a></span>, <span class='object_link'><a href="Dieta.html#kcal-instance_method" title="Dieta#kcal (method)">#kcal</a></span>, <span class='object_link'><a href="Dieta.html#nombre-instance_method" title="Dieta#nombre (method)">#nombre</a></span>, <span class='object_link'><a href="Dieta.html#por-instance_method" title="Dieta#por (method)">#por</a></span>, <span class='object_link'><a href="Dieta.html#porcent-instance_method" title="Dieta#porcent (method)">#porcent</a></span>, <span class='object_link'><a href="Dieta.html#prop_aprox-instance_method" title="Dieta#prop_aprox (method)">#prop_aprox</a></span>, <span class='object_link'><a href="Dieta.html#prop_exact-instance_method" title="Dieta#prop_exact (method)">#prop_exact</a></span></p>
150
+
151
+
152
+
153
+ <h2>
154
+ Instance Method Summary
155
+ <small><a href="#" class="summary_toggle">collapse</a></small>
156
+ </h2>
157
+
158
+ <ul class="summary">
159
+
160
+ <li class="public ">
161
+ <span class="summary_signature">
162
+
163
+ <a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(nombre, porc, comida, prop_aprox, prop_exact, kcal, por, tipo) &#x21d2; Alimentos </a>
164
+
165
+
166
+
167
+ </span>
168
+
169
+
170
+ <span class="note title constructor">constructor</span>
171
+
172
+
173
+
174
+
175
+
176
+
177
+
178
+
179
+ <span class="summary_desc"><div class='inline'>
180
+ <p>A new instance of Alimentos.</p>
181
+ </div></span>
182
+
183
+ </li>
184
+
185
+
186
+ <li class="public ">
187
+ <span class="summary_signature">
188
+
189
+ <a href="#to_s-instance_method" title="#to_s (instance method)">#<strong>to_s</strong> &#x21d2; Object </a>
190
+
191
+
192
+
193
+ </span>
194
+
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+
203
+ <span class="summary_desc"><div class='inline'></div></span>
204
+
205
+ </li>
206
+
207
+
208
+ </ul>
209
+
210
+
211
+
212
+
213
+
214
+
215
+
216
+
217
+
218
+
219
+
220
+ <h3 class="inherited">Methods inherited from <span class='object_link'><a href="Dieta.html" title="Dieta (class)">Dieta</a></span></h3>
221
+ <p class="inherited"><span class='object_link'><a href="Dieta.html#%3C%3D%3E-instance_method" title="Dieta#&lt;=&gt; (method)">#<=></a></span>, <span class='object_link'><a href="Dieta.html#%3D%3D-instance_method" title="Dieta#== (method)">#==</a></span>, <span class='object_link'><a href="Dieta.html#comidayprop-instance_method" title="Dieta#comidayprop (method)">#comidayprop</a></span>, <span class='object_link'><a href="Dieta.html#m_nombre-instance_method" title="Dieta#m_nombre (method)">#m_nombre</a></span>, <span class='object_link'><a href="Dieta.html#vct-instance_method" title="Dieta#vct (method)">#vct</a></span></p>
222
+
223
+ <div id="constructor_details" class="method_details_list">
224
+ <h2>Constructor Details</h2>
225
+
226
+ <div class="method_details first">
227
+ <h3 class="signature first" id="initialize-instance_method">
228
+
229
+ #<strong>initialize</strong>(nombre, porc, comida, prop_aprox, prop_exact, kcal, por, tipo) &#x21d2; <tt><span class='object_link'><a href="" title="Alimentos (class)">Alimentos</a></span></tt>
230
+
231
+
232
+
233
+
234
+
235
+ </h3><div class="docstring">
236
+ <div class="discussion">
237
+
238
+ <p>Returns a new instance of Alimentos</p>
239
+
240
+
241
+ </div>
242
+ </div>
243
+ <div class="tags">
244
+
245
+
246
+ </div><table class="source_code">
247
+ <tr>
248
+ <td>
249
+ <pre class="lines">
250
+
251
+
252
+ 73
253
+ 74
254
+ 75
255
+ 76</pre>
256
+ </td>
257
+ <td>
258
+ <pre class="code"><span class="info file"># File 'dieta.rb', line 73</span>
259
+
260
+ <span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='id identifier rubyid_nombre'>nombre</span><span class='comma'>,</span><span class='id identifier rubyid_porc'>porc</span><span class='comma'>,</span><span class='id identifier rubyid_comida'>comida</span><span class='comma'>,</span><span class='id identifier rubyid_prop_aprox'>prop_aprox</span><span class='comma'>,</span><span class='id identifier rubyid_prop_exact'>prop_exact</span><span class='comma'>,</span><span class='id identifier rubyid_kcal'>kcal</span><span class='comma'>,</span><span class='id identifier rubyid_por'>por</span><span class='comma'>,</span><span class='id identifier rubyid_tipo'>tipo</span><span class='rparen'>)</span>
261
+ <span class='kw'>super</span><span class='lparen'>(</span><span class='id identifier rubyid_nombre'>nombre</span><span class='comma'>,</span><span class='id identifier rubyid_porc'>porc</span><span class='comma'>,</span><span class='id identifier rubyid_comida'>comida</span><span class='comma'>,</span><span class='id identifier rubyid_prop_aprox'>prop_aprox</span><span class='comma'>,</span><span class='id identifier rubyid_prop_exact'>prop_exact</span><span class='comma'>,</span><span class='id identifier rubyid_kcal'>kcal</span><span class='comma'>,</span><span class='id identifier rubyid_por'>por</span><span class='rparen'>)</span>
262
+ <span class='ivar'>@tipo</span><span class='op'>=</span><span class='id identifier rubyid_tipo'>tipo</span>
263
+ <span class='kw'>end</span></pre>
264
+ </td>
265
+ </tr>
266
+ </table>
267
+ </div>
268
+
269
+ </div>
270
+
271
+ <div id="instance_attr_details" class="attr_details">
272
+ <h2>Instance Attribute Details</h2>
273
+
274
+
275
+ <span id=""></span>
276
+ <div class="method_details first">
277
+ <h3 class="signature first" id="tipo-instance_method">
278
+
279
+ #<strong>tipo</strong> &#x21d2; <tt>Object</tt> <span class="extras">(readonly)</span>
280
+
281
+
282
+
283
+
284
+
285
+ </h3><div class="docstring">
286
+ <div class="discussion">
287
+
288
+ <p>Returns the value of attribute tipo</p>
289
+
290
+
291
+ </div>
292
+ </div>
293
+ <div class="tags">
294
+
295
+
296
+ </div><table class="source_code">
297
+ <tr>
298
+ <td>
299
+ <pre class="lines">
300
+
301
+
302
+ 72
303
+ 73
304
+ 74</pre>
305
+ </td>
306
+ <td>
307
+ <pre class="code"><span class="info file"># File 'dieta.rb', line 72</span>
308
+
309
+ <span class='kw'>def</span> <span class='id identifier rubyid_tipo'>tipo</span>
310
+ <span class='ivar'>@tipo</span>
311
+ <span class='kw'>end</span></pre>
312
+ </td>
313
+ </tr>
314
+ </table>
315
+ </div>
316
+
317
+ </div>
318
+
319
+
320
+ <div id="instance_method_details" class="method_details_list">
321
+ <h2>Instance Method Details</h2>
322
+
323
+
324
+ <div class="method_details first">
325
+ <h3 class="signature first" id="to_s-instance_method">
326
+
327
+ #<strong>to_s</strong> &#x21d2; <tt>Object</tt>
328
+
329
+
330
+
331
+
332
+
333
+ </h3><table class="source_code">
334
+ <tr>
335
+ <td>
336
+ <pre class="lines">
337
+
338
+
339
+ 78
340
+ 79
341
+ 80
342
+ 81
343
+ 82
344
+ 83
345
+ 84
346
+ 85
347
+ 86
348
+ 87
349
+ 88
350
+ 89
351
+ 90
352
+ 91</pre>
353
+ </td>
354
+ <td>
355
+ <pre class="code"><span class="info file"># File 'dieta.rb', line 78</span>
356
+
357
+ <span class='kw'>def</span> <span class='id identifier rubyid_to_s'>to_s</span>
358
+
359
+ <span class='id identifier rubyid_todo'>todo</span><span class='op'>=</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_end'>&quot;</span></span>
360
+ <span class='id identifier rubyid_todo'>todo</span><span class='op'>=</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Menú de </span><span class='embexpr_beg'>#{</span><span class='ivar'>@tipo</span><span class='embexpr_end'>}</span><span class='tstring_content'>:\n</span><span class='tstring_end'>&quot;</span></span>
361
+ <span class='id identifier rubyid_todo'>todo</span> <span class='op'>&lt;&lt;</span> <span class='id identifier rubyid_m_nombre'>m_nombre</span><span class='lparen'>(</span><span class='rparen'>)</span>
362
+ <span class='id identifier rubyid_todo'>todo</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>\n</span><span class='tstring_end'>&quot;</span></span>
363
+ <span class='id identifier rubyid_todo'>todo</span> <span class='op'>&lt;&lt;</span> <span class='id identifier rubyid_comidayprop'>comidayprop</span><span class='lparen'>(</span><span class='rparen'>)</span>
364
+ <span class='id identifier rubyid_todo'>todo</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>\n</span><span class='tstring_end'>&quot;</span></span>
365
+ <span class='id identifier rubyid_todo'>todo</span> <span class='op'>&lt;&lt;</span> <span class='id identifier rubyid_vct'>vct</span><span class='lparen'>(</span><span class='rparen'>)</span>
366
+
367
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_todo'>todo</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span>
368
+
369
+
370
+ <span class='kw'>end</span></pre>
371
+ </td>
372
+ </tr>
373
+ </table>
374
+ </div>
375
+
376
+ </div>
377
+
378
+ </div>
379
+
380
+ <div id="footer">
381
+ Generated on Tue Nov 22 17:45:28 2016 by
382
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
383
+ 0.9.5 (ruby-2.3.0).
384
+ </div>
385
+
386
+ </div>
387
+ </body>
388
+ </html>