new 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. checksums.yaml +4 -4
  2. data/.gitmodules +3 -0
  3. data/.new +1 -1
  4. data/Gemfile.lock +25 -20
  5. data/Guardfile +6 -4
  6. data/README.md +9 -2
  7. data/doc/.git +1 -0
  8. data/doc/Gemfile.html +125 -0
  9. data/doc/Gemfile_lock.html +198 -0
  10. data/doc/Guardfile.html +134 -0
  11. data/doc/InterpolateSpec.html +116 -0
  12. data/doc/LICENSE_txt.html +132 -0
  13. data/doc/New/Cli.html +290 -0
  14. data/doc/New/Dsl.html +185 -0
  15. data/doc/New/Interpolate.html +238 -0
  16. data/doc/New/Project.html +171 -0
  17. data/doc/New/Task/CustomBarTask.html +154 -0
  18. data/doc/New/Task/FooTask.html +168 -0
  19. data/doc/New/Task/Gem.html +197 -0
  20. data/doc/New/Task/TaskSpec.html +168 -0
  21. data/doc/New/Task.html +380 -0
  22. data/doc/New/Template.html +234 -0
  23. data/doc/New/Version.html +277 -0
  24. data/doc/New.html +377 -0
  25. data/doc/Object.html +200 -0
  26. data/doc/README_md.html +292 -0
  27. data/doc/VersionSpec.html +116 -0
  28. data/doc/created.rid +47 -0
  29. data/doc/fonts/Lato-Light.ttf +0 -0
  30. data/doc/fonts/Lato-LightItalic.ttf +0 -0
  31. data/doc/fonts/Lato-Regular.ttf +0 -0
  32. data/doc/fonts/Lato-RegularItalic.ttf +0 -0
  33. data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
  34. data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
  35. data/doc/fonts.css +167 -0
  36. data/doc/images/add.png +0 -0
  37. data/doc/images/arrow_up.png +0 -0
  38. data/doc/images/brick.png +0 -0
  39. data/doc/images/brick_link.png +0 -0
  40. data/doc/images/bug.png +0 -0
  41. data/doc/images/bullet_black.png +0 -0
  42. data/doc/images/bullet_toggle_minus.png +0 -0
  43. data/doc/images/bullet_toggle_plus.png +0 -0
  44. data/doc/images/date.png +0 -0
  45. data/doc/images/delete.png +0 -0
  46. data/doc/images/find.png +0 -0
  47. data/doc/images/loadingAnimation.gif +0 -0
  48. data/doc/images/macFFBgHack.png +0 -0
  49. data/doc/images/package.png +0 -0
  50. data/doc/images/page_green.png +0 -0
  51. data/doc/images/page_white_text.png +0 -0
  52. data/doc/images/page_white_width.png +0 -0
  53. data/doc/images/plugin.png +0 -0
  54. data/doc/images/ruby.png +0 -0
  55. data/doc/images/tag_blue.png +0 -0
  56. data/doc/images/tag_green.png +0 -0
  57. data/doc/images/transparent.png +0 -0
  58. data/doc/images/wrench.png +0 -0
  59. data/doc/images/wrench_orange.png +0 -0
  60. data/doc/images/zoom.png +0 -0
  61. data/doc/index.html +142 -0
  62. data/doc/js/darkfish.js +140 -0
  63. data/doc/js/jquery.js +18 -0
  64. data/doc/js/navigation.js +142 -0
  65. data/doc/js/search.js +109 -0
  66. data/doc/js/search_index.js +1 -0
  67. data/doc/js/searcher.js +228 -0
  68. data/doc/rdoc.css +580 -0
  69. data/doc/spec/fixtures/custom/templates/custom_bar_template/custom_bar_txt.html +110 -0
  70. data/doc/table_of_contents.html +324 -0
  71. data/doc/tasks/gem/README_md.html +150 -0
  72. data/doc/templates/js/Gemfile.html +147 -0
  73. data/doc/templates/js/Guardfile.html +117 -0
  74. data/doc/templates/js/lib/README_md.html +114 -0
  75. data/doc/templates/js/spec/spec_helper_js_coffee.html +110 -0
  76. data/doc/templates/js/spec/vendor/chai_js.html +3864 -0
  77. data/doc/templates/js/spec/vendor/sinon-chai_js.html +222 -0
  78. data/doc/templates/js/spec/vendor/sinon_js.html +4358 -0
  79. data/doc/templates/js/src/README_md.html +125 -0
  80. data/lib/new/task.rb +2 -4
  81. data/lib/new/template.rb +1 -1
  82. data/lib/new/version.rb +27 -19
  83. data/spec/fixtures/tasks/foo_task/Gemfile +5 -0
  84. data/spec/lib/new/version_spec.rb +10 -15
  85. data/spec/spec_helper.rb +22 -1
  86. data/tasks/gem/gem.rb +44 -8
  87. data/tasks/gem/gem_spec.rb +139 -0
  88. metadata +233 -3
@@ -0,0 +1,154 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>class New::Task::CustomBarTask - RDoc Documentation</title>
8
+
9
+ <link href="../../fonts.css" rel="stylesheet">
10
+ <link href="../../rdoc.css" rel="stylesheet">
11
+
12
+ <script type="text/javascript">
13
+ var rdoc_rel_prefix = "../../";
14
+ </script>
15
+
16
+ <script src="../../js/jquery.js"></script>
17
+ <script src="../../js/navigation.js"></script>
18
+ <script src="../../js/search_index.js"></script>
19
+ <script src="../../js/search.js"></script>
20
+ <script src="../../js/searcher.js"></script>
21
+ <script src="../../js/darkfish.js"></script>
22
+
23
+
24
+ <body id="top" role="document" class="class">
25
+ <nav role="navigation">
26
+ <div id="project-navigation">
27
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
28
+ <h2>
29
+ <a href="../../index.html" rel="home">Home</a>
30
+ </h2>
31
+
32
+ <div id="table-of-contents-navigation">
33
+ <a href="../../table_of_contents.html#pages">Pages</a>
34
+ <a href="../../table_of_contents.html#classes">Classes</a>
35
+ <a href="../../table_of_contents.html#methods">Methods</a>
36
+ </div>
37
+ </div>
38
+
39
+ <div id="search-section" role="search" class="project-section initially-hidden">
40
+ <form action="#" method="get" accept-charset="utf-8">
41
+ <div id="search-field-wrapper">
42
+ <input id="search-field" role="combobox" aria-label="Search"
43
+ aria-autocomplete="list" aria-controls="search-results"
44
+ type="text" name="search" placeholder="Search" spellcheck="false"
45
+ title="Type to search, Up and Down to navigate, Enter to load">
46
+ </div>
47
+
48
+ <ul id="search-results" aria-label="Search Results"
49
+ aria-busy="false" aria-expanded="false"
50
+ aria-atomic="false" class="initially-hidden"></ul>
51
+ </form>
52
+ </div>
53
+
54
+ </div>
55
+
56
+
57
+
58
+ <div id="class-metadata">
59
+
60
+ <div id="parent-class-section" class="nav-section">
61
+ <h3>Parent</h3>
62
+
63
+
64
+ <p class="link"><a href="../Task.html">New::Task</a>
65
+
66
+ </div>
67
+
68
+
69
+
70
+ <!-- Method Quickref -->
71
+ <div id="method-list-section" class="nav-section">
72
+ <h3>Methods</h3>
73
+
74
+ <ul class="link-list" role="directory">
75
+
76
+ <li ><a href="#method-i-run">#run</a>
77
+
78
+ </ul>
79
+ </div>
80
+
81
+ </div>
82
+ </nav>
83
+
84
+ <main role="main" aria-labelledby="class-New::Task::CustomBarTask">
85
+ <h1 id="class-New::Task::CustomBarTask" class="class">
86
+ class New::Task::CustomBarTask
87
+ </h1>
88
+
89
+ <section class="description">
90
+
91
+ </section>
92
+
93
+
94
+
95
+
96
+ <section id="5Buntitled-5D" class="documentation-section">
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section">
107
+ <header>
108
+ <h3>Public Instance Methods</h3>
109
+ </header>
110
+
111
+
112
+ <div id="method-i-run" class="method-detail ">
113
+
114
+ <div class="method-heading">
115
+ <span class="method-name">run</span><span
116
+ class="method-args">()</span>
117
+
118
+ <span class="method-click-advice">click to toggle source</span>
119
+
120
+ </div>
121
+
122
+
123
+ <div class="method-description">
124
+
125
+
126
+
127
+
128
+
129
+
130
+ <div class="method-source-code" id="run-source">
131
+ <pre><span class="ruby-comment"># File spec/fixtures/custom/tasks/custom_bar_task/custom_bar_task.rb, line 2</span>
132
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">run</span>; <span class="ruby-keyword">end</span></pre>
133
+ </div>
134
+
135
+ </div>
136
+
137
+
138
+
139
+
140
+ </div>
141
+
142
+
143
+ </section>
144
+
145
+ </section>
146
+ </main>
147
+
148
+
149
+ <footer id="validator-badges" role="contentinfo">
150
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
151
+ <p>Generated by <a href="http://rdoc.rubyforge.org">RDoc</a> 4.1.0.
152
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
153
+ </footer>
154
+
@@ -0,0 +1,168 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>class New::Task::FooTask - RDoc Documentation</title>
8
+
9
+ <link href="../../fonts.css" rel="stylesheet">
10
+ <link href="../../rdoc.css" rel="stylesheet">
11
+
12
+ <script type="text/javascript">
13
+ var rdoc_rel_prefix = "../../";
14
+ </script>
15
+
16
+ <script src="../../js/jquery.js"></script>
17
+ <script src="../../js/navigation.js"></script>
18
+ <script src="../../js/search_index.js"></script>
19
+ <script src="../../js/search.js"></script>
20
+ <script src="../../js/searcher.js"></script>
21
+ <script src="../../js/darkfish.js"></script>
22
+
23
+
24
+ <body id="top" role="document" class="class">
25
+ <nav role="navigation">
26
+ <div id="project-navigation">
27
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
28
+ <h2>
29
+ <a href="../../index.html" rel="home">Home</a>
30
+ </h2>
31
+
32
+ <div id="table-of-contents-navigation">
33
+ <a href="../../table_of_contents.html#pages">Pages</a>
34
+ <a href="../../table_of_contents.html#classes">Classes</a>
35
+ <a href="../../table_of_contents.html#methods">Methods</a>
36
+ </div>
37
+ </div>
38
+
39
+ <div id="search-section" role="search" class="project-section initially-hidden">
40
+ <form action="#" method="get" accept-charset="utf-8">
41
+ <div id="search-field-wrapper">
42
+ <input id="search-field" role="combobox" aria-label="Search"
43
+ aria-autocomplete="list" aria-controls="search-results"
44
+ type="text" name="search" placeholder="Search" spellcheck="false"
45
+ title="Type to search, Up and Down to navigate, Enter to load">
46
+ </div>
47
+
48
+ <ul id="search-results" aria-label="Search Results"
49
+ aria-busy="false" aria-expanded="false"
50
+ aria-atomic="false" class="initially-hidden"></ul>
51
+ </form>
52
+ </div>
53
+
54
+ </div>
55
+
56
+
57
+
58
+ <div id="class-metadata">
59
+
60
+ <div id="parent-class-section" class="nav-section">
61
+ <h3>Parent</h3>
62
+
63
+
64
+ <p class="link"><a href="../Task.html">New::Task</a>
65
+
66
+ </div>
67
+
68
+
69
+
70
+ <!-- Method Quickref -->
71
+ <div id="method-list-section" class="nav-section">
72
+ <h3>Methods</h3>
73
+
74
+ <ul class="link-list" role="directory">
75
+
76
+ <li ><a href="#method-i-run">#run</a>
77
+
78
+ </ul>
79
+ </div>
80
+
81
+ </div>
82
+ </nav>
83
+
84
+ <main role="main" aria-labelledby="class-New::Task::FooTask">
85
+ <h1 id="class-New::Task::FooTask" class="class">
86
+ class New::Task::FooTask
87
+ </h1>
88
+
89
+ <section class="description">
90
+
91
+ </section>
92
+
93
+
94
+
95
+
96
+ <section id="5Buntitled-5D" class="documentation-section">
97
+
98
+
99
+
100
+
101
+
102
+ <section class="constants-list">
103
+ <header>
104
+ <h3>Constants</h3>
105
+ </header>
106
+ <dl>
107
+
108
+ <dt id="OPTIONS">OPTIONS
109
+
110
+ <dd>
111
+
112
+
113
+ </dl>
114
+ </section>
115
+
116
+
117
+
118
+
119
+
120
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section">
121
+ <header>
122
+ <h3>Public Instance Methods</h3>
123
+ </header>
124
+
125
+
126
+ <div id="method-i-run" class="method-detail ">
127
+
128
+ <div class="method-heading">
129
+ <span class="method-name">run</span><span
130
+ class="method-args">()</span>
131
+
132
+ <span class="method-click-advice">click to toggle source</span>
133
+
134
+ </div>
135
+
136
+
137
+ <div class="method-description">
138
+
139
+
140
+
141
+
142
+
143
+
144
+ <div class="method-source-code" id="run-source">
145
+ <pre><span class="ruby-comment"># File spec/fixtures/tasks/foo_task/foo_task.rb, line 6</span>
146
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">run</span>; <span class="ruby-keyword">end</span></pre>
147
+ </div>
148
+
149
+ </div>
150
+
151
+
152
+
153
+
154
+ </div>
155
+
156
+
157
+ </section>
158
+
159
+ </section>
160
+ </main>
161
+
162
+
163
+ <footer id="validator-badges" role="contentinfo">
164
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
165
+ <p>Generated by <a href="http://rdoc.rubyforge.org">RDoc</a> 4.1.0.
166
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
167
+ </footer>
168
+
@@ -0,0 +1,197 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>class New::Task::Gem - RDoc Documentation</title>
8
+
9
+ <link href="../../fonts.css" rel="stylesheet">
10
+ <link href="../../rdoc.css" rel="stylesheet">
11
+
12
+ <script type="text/javascript">
13
+ var rdoc_rel_prefix = "../../";
14
+ </script>
15
+
16
+ <script src="../../js/jquery.js"></script>
17
+ <script src="../../js/navigation.js"></script>
18
+ <script src="../../js/search_index.js"></script>
19
+ <script src="../../js/search.js"></script>
20
+ <script src="../../js/searcher.js"></script>
21
+ <script src="../../js/darkfish.js"></script>
22
+
23
+
24
+ <body id="top" role="document" class="class">
25
+ <nav role="navigation">
26
+ <div id="project-navigation">
27
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
28
+ <h2>
29
+ <a href="../../index.html" rel="home">Home</a>
30
+ </h2>
31
+
32
+ <div id="table-of-contents-navigation">
33
+ <a href="../../table_of_contents.html#pages">Pages</a>
34
+ <a href="../../table_of_contents.html#classes">Classes</a>
35
+ <a href="../../table_of_contents.html#methods">Methods</a>
36
+ </div>
37
+ </div>
38
+
39
+ <div id="search-section" role="search" class="project-section initially-hidden">
40
+ <form action="#" method="get" accept-charset="utf-8">
41
+ <div id="search-field-wrapper">
42
+ <input id="search-field" role="combobox" aria-label="Search"
43
+ aria-autocomplete="list" aria-controls="search-results"
44
+ type="text" name="search" placeholder="Search" spellcheck="false"
45
+ title="Type to search, Up and Down to navigate, Enter to load">
46
+ </div>
47
+
48
+ <ul id="search-results" aria-label="Search Results"
49
+ aria-busy="false" aria-expanded="false"
50
+ aria-atomic="false" class="initially-hidden"></ul>
51
+ </form>
52
+ </div>
53
+
54
+ </div>
55
+
56
+
57
+
58
+ <div id="class-metadata">
59
+
60
+ <div id="parent-class-section" class="nav-section">
61
+ <h3>Parent</h3>
62
+
63
+
64
+ <p class="link"><a href="../Task.html">New::Task</a>
65
+
66
+ </div>
67
+
68
+ <div id="includes-section" class="nav-section">
69
+ <h3>Included Modules</h3>
70
+
71
+ <ul class="link-list">
72
+
73
+
74
+ <li><a class="include" href="../Interpolate.html">New::Interpolate</a>
75
+
76
+
77
+
78
+ <li><a class="include" href="../Version.html">New::Version</a>
79
+
80
+
81
+ </ul>
82
+ </div>
83
+
84
+
85
+ <!-- Method Quickref -->
86
+ <div id="method-list-section" class="nav-section">
87
+ <h3>Methods</h3>
88
+
89
+ <ul class="link-list" role="directory">
90
+
91
+ <li ><a href="#method-i-run">#run</a>
92
+
93
+ </ul>
94
+ </div>
95
+
96
+ </div>
97
+ </nav>
98
+
99
+ <main role="main" aria-labelledby="class-New::Task::Gem">
100
+ <h1 id="class-New::Task::Gem" class="class">
101
+ class New::Task::Gem
102
+ </h1>
103
+
104
+ <section class="description">
105
+
106
+ </section>
107
+
108
+
109
+
110
+
111
+ <section id="5Buntitled-5D" class="documentation-section">
112
+
113
+
114
+
115
+
116
+
117
+ <section class="constants-list">
118
+ <header>
119
+ <h3>Constants</h3>
120
+ </header>
121
+ <dl>
122
+
123
+ <dt id="GLOB_ATTRIBUTES">GLOB_ATTRIBUTES
124
+
125
+ <dd>
126
+
127
+
128
+ <dt id="OPTIONS">OPTIONS
129
+
130
+ <dd>
131
+
132
+
133
+ </dl>
134
+ </section>
135
+
136
+
137
+
138
+
139
+
140
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section">
141
+ <header>
142
+ <h3>Public Instance Methods</h3>
143
+ </header>
144
+
145
+
146
+ <div id="method-i-run" class="method-detail ">
147
+
148
+ <div class="method-heading">
149
+ <span class="method-name">run</span><span
150
+ class="method-args">()</span>
151
+
152
+ <span class="method-click-advice">click to toggle source</span>
153
+
154
+ </div>
155
+
156
+
157
+ <div class="method-description">
158
+
159
+
160
+
161
+
162
+
163
+
164
+ <div class="method-source-code" id="run-source">
165
+ <pre><span class="ruby-comment"># File tasks/gem/gem.rb, line 16</span>
166
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">run</span>
167
+ <span class="ruby-ivar">@gemspec</span> = <span class="ruby-identifier">options</span>[<span class="ruby-value">:gemspec</span>]
168
+
169
+ <span class="ruby-identifier">set_version</span>
170
+ <span class="ruby-identifier">validate_files</span>
171
+ <span class="ruby-identifier">render_gemspec_options</span>
172
+ <span class="ruby-comment"># write_gemspec</span>
173
+ <span class="ruby-comment"># write_config</span>
174
+ <span class="ruby-comment"># deploy</span>
175
+ <span class="ruby-keyword">end</span></pre>
176
+ </div>
177
+
178
+ </div>
179
+
180
+
181
+
182
+
183
+ </div>
184
+
185
+
186
+ </section>
187
+
188
+ </section>
189
+ </main>
190
+
191
+
192
+ <footer id="validator-badges" role="contentinfo">
193
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
194
+ <p>Generated by <a href="http://rdoc.rubyforge.org">RDoc</a> 4.1.0.
195
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
196
+ </footer>
197
+
@@ -0,0 +1,168 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>class New::Task::TaskSpec - RDoc Documentation</title>
8
+
9
+ <link href="../../fonts.css" rel="stylesheet">
10
+ <link href="../../rdoc.css" rel="stylesheet">
11
+
12
+ <script type="text/javascript">
13
+ var rdoc_rel_prefix = "../../";
14
+ </script>
15
+
16
+ <script src="../../js/jquery.js"></script>
17
+ <script src="../../js/navigation.js"></script>
18
+ <script src="../../js/search_index.js"></script>
19
+ <script src="../../js/search.js"></script>
20
+ <script src="../../js/searcher.js"></script>
21
+ <script src="../../js/darkfish.js"></script>
22
+
23
+
24
+ <body id="top" role="document" class="class">
25
+ <nav role="navigation">
26
+ <div id="project-navigation">
27
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
28
+ <h2>
29
+ <a href="../../index.html" rel="home">Home</a>
30
+ </h2>
31
+
32
+ <div id="table-of-contents-navigation">
33
+ <a href="../../table_of_contents.html#pages">Pages</a>
34
+ <a href="../../table_of_contents.html#classes">Classes</a>
35
+ <a href="../../table_of_contents.html#methods">Methods</a>
36
+ </div>
37
+ </div>
38
+
39
+ <div id="search-section" role="search" class="project-section initially-hidden">
40
+ <form action="#" method="get" accept-charset="utf-8">
41
+ <div id="search-field-wrapper">
42
+ <input id="search-field" role="combobox" aria-label="Search"
43
+ aria-autocomplete="list" aria-controls="search-results"
44
+ type="text" name="search" placeholder="Search" spellcheck="false"
45
+ title="Type to search, Up and Down to navigate, Enter to load">
46
+ </div>
47
+
48
+ <ul id="search-results" aria-label="Search Results"
49
+ aria-busy="false" aria-expanded="false"
50
+ aria-atomic="false" class="initially-hidden"></ul>
51
+ </form>
52
+ </div>
53
+
54
+ </div>
55
+
56
+
57
+
58
+ <div id="class-metadata">
59
+
60
+ <div id="parent-class-section" class="nav-section">
61
+ <h3>Parent</h3>
62
+
63
+
64
+ <p class="link"><a href="../Task.html">New::Task</a>
65
+
66
+ </div>
67
+
68
+
69
+
70
+ <!-- Method Quickref -->
71
+ <div id="method-list-section" class="nav-section">
72
+ <h3>Methods</h3>
73
+
74
+ <ul class="link-list" role="directory">
75
+
76
+ <li ><a href="#method-i-run">#run</a>
77
+
78
+ </ul>
79
+ </div>
80
+
81
+ </div>
82
+ </nav>
83
+
84
+ <main role="main" aria-labelledby="class-New::Task::TaskSpec">
85
+ <h1 id="class-New::Task::TaskSpec" class="class">
86
+ class New::Task::TaskSpec
87
+ </h1>
88
+
89
+ <section class="description">
90
+
91
+ </section>
92
+
93
+
94
+
95
+
96
+ <section id="5Buntitled-5D" class="documentation-section">
97
+
98
+
99
+
100
+
101
+
102
+ <section class="constants-list">
103
+ <header>
104
+ <h3>Constants</h3>
105
+ </header>
106
+ <dl>
107
+
108
+ <dt id="OPTIONS">OPTIONS
109
+
110
+ <dd>
111
+
112
+
113
+ </dl>
114
+ </section>
115
+
116
+
117
+
118
+
119
+
120
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section">
121
+ <header>
122
+ <h3>Public Instance Methods</h3>
123
+ </header>
124
+
125
+
126
+ <div id="method-i-run" class="method-detail ">
127
+
128
+ <div class="method-heading">
129
+ <span class="method-name">run</span><span
130
+ class="method-args">()</span>
131
+
132
+ <span class="method-click-advice">click to toggle source</span>
133
+
134
+ </div>
135
+
136
+
137
+ <div class="method-description">
138
+
139
+
140
+
141
+
142
+
143
+
144
+ <div class="method-source-code" id="run-source">
145
+ <pre><span class="ruby-comment"># File spec/lib/new/task_spec.rb, line 8</span>
146
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">run</span>; <span class="ruby-keyword">end</span></pre>
147
+ </div>
148
+
149
+ </div>
150
+
151
+
152
+
153
+
154
+ </div>
155
+
156
+
157
+ </section>
158
+
159
+ </section>
160
+ </main>
161
+
162
+
163
+ <footer id="validator-badges" role="contentinfo">
164
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
165
+ <p>Generated by <a href="http://rdoc.rubyforge.org">RDoc</a> 4.1.0.
166
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
167
+ </footer>
168
+