doro 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +2 -0
  3. data/Gemfile.lock +64 -0
  4. data/README.md +48 -0
  5. data/Rakefile +44 -0
  6. data/bin/doro +150 -0
  7. data/bin/logo.jpg +0 -0
  8. data/doc/DefaultTest.html +221 -0
  9. data/doc/Doro.html +109 -0
  10. data/doc/File.html +95 -0
  11. data/doc/FileUtils.html +95 -0
  12. data/doc/Gemfile.html +96 -0
  13. data/doc/Gemfile_lock.html +164 -0
  14. data/doc/Object.html +127 -0
  15. data/doc/README_rdoc.html +117 -0
  16. data/doc/Rakefile.html +140 -0
  17. data/doc/Test.html +95 -0
  18. data/doc/Test/Unit.html +95 -0
  19. data/doc/Test/Unit/TestCase.html +104 -0
  20. data/doc/created.rid +16 -0
  21. data/doc/css/fonts.css +167 -0
  22. data/doc/css/rdoc.css +590 -0
  23. data/doc/doro_gemspec.html +121 -0
  24. data/doc/doro_rdoc.html +100 -0
  25. data/doc/features/doro_feature.html +101 -0
  26. data/doc/fonts/Lato-Light.ttf +0 -0
  27. data/doc/fonts/Lato-LightItalic.ttf +0 -0
  28. data/doc/fonts/Lato-Regular.ttf +0 -0
  29. data/doc/fonts/Lato-RegularItalic.ttf +0 -0
  30. data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
  31. data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
  32. data/doc/images/add.png +0 -0
  33. data/doc/images/arrow_up.png +0 -0
  34. data/doc/images/brick.png +0 -0
  35. data/doc/images/brick_link.png +0 -0
  36. data/doc/images/bug.png +0 -0
  37. data/doc/images/bullet_black.png +0 -0
  38. data/doc/images/bullet_toggle_minus.png +0 -0
  39. data/doc/images/bullet_toggle_plus.png +0 -0
  40. data/doc/images/date.png +0 -0
  41. data/doc/images/delete.png +0 -0
  42. data/doc/images/find.png +0 -0
  43. data/doc/images/loadingAnimation.gif +0 -0
  44. data/doc/images/macFFBgHack.png +0 -0
  45. data/doc/images/package.png +0 -0
  46. data/doc/images/page_green.png +0 -0
  47. data/doc/images/page_white_text.png +0 -0
  48. data/doc/images/page_white_width.png +0 -0
  49. data/doc/images/plugin.png +0 -0
  50. data/doc/images/ruby.png +0 -0
  51. data/doc/images/tag_blue.png +0 -0
  52. data/doc/images/tag_green.png +0 -0
  53. data/doc/images/transparent.png +0 -0
  54. data/doc/images/wrench.png +0 -0
  55. data/doc/images/wrench_orange.png +0 -0
  56. data/doc/images/zoom.png +0 -0
  57. data/doc/index.html +115 -0
  58. data/doc/js/darkfish.js +161 -0
  59. data/doc/js/jquery.js +4 -0
  60. data/doc/js/navigation.js +142 -0
  61. data/doc/js/search.js +109 -0
  62. data/doc/js/search_index.js +1 -0
  63. data/doc/js/searcher.js +228 -0
  64. data/doc/table_of_contents.html +114 -0
  65. data/doro.gemspec +26 -0
  66. data/doro.rdoc +5 -0
  67. data/features/doro.feature +16 -0
  68. data/features/step_definitions/doro_steps.rb +0 -0
  69. data/features/support/env.rb +15 -0
  70. data/lib/doro.rb +5 -0
  71. data/lib/doro/entries.rb +22 -0
  72. data/lib/doro/version.rb +3 -0
  73. data/results.html +473 -0
  74. data/test/default_test.rb +14 -0
  75. data/test/test_helper.rb +9 -0
  76. metadata +221 -0
@@ -0,0 +1,127 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>class Object - RDoc Documentation</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "./";
11
+ </script>
12
+
13
+ <script src="./js/jquery.js"></script>
14
+ <script src="./js/darkfish.js"></script>
15
+
16
+ <link href="./css/fonts.css" rel="stylesheet">
17
+ <link href="./css/rdoc.css" rel="stylesheet">
18
+
19
+
20
+
21
+ <body id="top" role="document" class="class">
22
+ <nav role="navigation">
23
+ <div id="project-navigation">
24
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
25
+ <h2>
26
+ <a href="./index.html" rel="home">Home</a>
27
+ </h2>
28
+
29
+ <div id="table-of-contents-navigation">
30
+ <a href="./table_of_contents.html#pages">Pages</a>
31
+ <a href="./table_of_contents.html#classes">Classes</a>
32
+ <a href="./table_of_contents.html#methods">Methods</a>
33
+ </div>
34
+ </div>
35
+
36
+ <div id="search-section" role="search" class="project-section initially-hidden">
37
+ <form action="#" method="get" accept-charset="utf-8">
38
+ <div id="search-field-wrapper">
39
+ <input id="search-field" role="combobox" aria-label="Search"
40
+ aria-autocomplete="list" aria-controls="search-results"
41
+ type="text" name="search" placeholder="Search" spellcheck="false"
42
+ title="Type to search, Up and Down to navigate, Enter to load">
43
+ </div>
44
+
45
+ <ul id="search-results" aria-label="Search Results"
46
+ aria-busy="false" aria-expanded="false"
47
+ aria-atomic="false" class="initially-hidden"></ul>
48
+ </form>
49
+ </div>
50
+
51
+ </div>
52
+
53
+
54
+
55
+ <div id="class-metadata">
56
+
57
+ <div id="parent-class-section" class="nav-section">
58
+ <h3>Parent</h3>
59
+
60
+
61
+ <p class="link">BasicObject
62
+
63
+ </div>
64
+
65
+ <div id="includes-section" class="nav-section">
66
+ <h3>Included Modules</h3>
67
+
68
+ <ul class="link-list">
69
+
70
+
71
+ <li><span class="include">GLI::App</span>
72
+
73
+
74
+ </ul>
75
+ </div>
76
+
77
+
78
+
79
+ </div>
80
+ </nav>
81
+
82
+ <main role="main" aria-labelledby="class-Object">
83
+ <h1 id="class-Object" class="class">
84
+ class Object
85
+ </h1>
86
+
87
+ <section class="description">
88
+
89
+ </section>
90
+
91
+
92
+
93
+
94
+ <section id="5Buntitled-5D" class="documentation-section">
95
+
96
+
97
+
98
+
99
+
100
+ <section class="constants-list">
101
+ <header>
102
+ <h3>Constants</h3>
103
+ </header>
104
+ <dl>
105
+
106
+ <dt id="LIB_DIR">LIB_DIR
107
+
108
+ <dd>
109
+
110
+
111
+ </dl>
112
+ </section>
113
+
114
+
115
+
116
+
117
+
118
+ </section>
119
+ </main>
120
+
121
+
122
+ <footer id="validator-badges" role="contentinfo">
123
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
124
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.2.
125
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
126
+ </footer>
127
+
@@ -0,0 +1,117 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>README - RDoc Documentation</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "./";
11
+ </script>
12
+
13
+ <script src="./js/jquery.js"></script>
14
+ <script src="./js/darkfish.js"></script>
15
+
16
+ <link href="./css/fonts.css" rel="stylesheet">
17
+ <link href="./css/rdoc.css" rel="stylesheet">
18
+
19
+
20
+
21
+ <body id="top" role="document" class="file">
22
+ <nav role="navigation">
23
+ <div id="project-navigation">
24
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
25
+ <h2>
26
+ <a href="./index.html" rel="home">Home</a>
27
+ </h2>
28
+
29
+ <div id="table-of-contents-navigation">
30
+ <a href="./table_of_contents.html#pages">Pages</a>
31
+ <a href="./table_of_contents.html#classes">Classes</a>
32
+ <a href="./table_of_contents.html#methods">Methods</a>
33
+ </div>
34
+ </div>
35
+
36
+ <div id="search-section" role="search" class="project-section initially-hidden">
37
+ <form action="#" method="get" accept-charset="utf-8">
38
+ <div id="search-field-wrapper">
39
+ <input id="search-field" role="combobox" aria-label="Search"
40
+ aria-autocomplete="list" aria-controls="search-results"
41
+ type="text" name="search" placeholder="Search" spellcheck="false"
42
+ title="Type to search, Up and Down to navigate, Enter to load">
43
+ </div>
44
+
45
+ <ul id="search-results" aria-label="Search Results"
46
+ aria-busy="false" aria-expanded="false"
47
+ aria-atomic="false" class="initially-hidden"></ul>
48
+ </form>
49
+ </div>
50
+
51
+ </div>
52
+
53
+
54
+ <div class="nav-section">
55
+ <h3>Table of Contents</h3>
56
+
57
+ <ul class="link-list" role="directory">
58
+ <li><a href="#label-doro">doro</a>
59
+ <li><a href="#label-doro">doro</a>
60
+ </ul>
61
+ </div>
62
+
63
+
64
+ <div id="project-metadata">
65
+ <div id="fileindex-section" class="nav-section">
66
+ <h3>Pages</h3>
67
+
68
+ <ul class="link-list">
69
+
70
+ <li><a href="./Gemfile.html">Gemfile</a>
71
+
72
+ <li><a href="./Gemfile_lock.html">Gemfile.lock</a>
73
+
74
+ <li><a href="./README_rdoc.html">README</a>
75
+
76
+ <li><a href="./Rakefile.html">Rakefile</a>
77
+
78
+ <li><a href="./doro_gemspec.html">doro.gemspec</a>
79
+
80
+ <li><a href="./doro_rdoc.html">doro</a>
81
+
82
+ <li><a href="./features/doro_feature.html">doro.feature</a>
83
+
84
+ </ul>
85
+ </div>
86
+
87
+ </div>
88
+ </nav>
89
+
90
+ <main role="main" aria-label="Page README.rdoc">
91
+
92
+ <h1 id="label-doro">doro<span><a href="#label-doro">&para;</a> <a href="#top">&uarr;</a></span></h1>
93
+
94
+ <p>A minimalist pomodoro application</p>
95
+
96
+ <p>Creates a `.doro` file in $HOME.</p>
97
+
98
+ <p>TODO: daemon switch</p>
99
+
100
+ <h1 id="label-doro">doro<span><a href="#label-doro">&para;</a> <a href="#top">&uarr;</a></span></h1>
101
+
102
+ <p>Generate this with</p>
103
+
104
+ <pre class="ruby"><span class="ruby-identifier">doro</span> <span class="ruby-identifier">rdoc</span>
105
+ </pre>
106
+
107
+ <p>After you have described your command line interface</p>
108
+ </main>
109
+
110
+
111
+
112
+ <footer id="validator-badges" role="contentinfo">
113
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
114
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.2.
115
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
116
+ </footer>
117
+
@@ -0,0 +1,140 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>Rakefile - RDoc Documentation</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "./";
11
+ </script>
12
+
13
+ <script src="./js/jquery.js"></script>
14
+ <script src="./js/darkfish.js"></script>
15
+
16
+ <link href="./css/fonts.css" rel="stylesheet">
17
+ <link href="./css/rdoc.css" rel="stylesheet">
18
+
19
+
20
+
21
+ <body id="top" role="document" class="file">
22
+ <nav role="navigation">
23
+ <div id="project-navigation">
24
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
25
+ <h2>
26
+ <a href="./index.html" rel="home">Home</a>
27
+ </h2>
28
+
29
+ <div id="table-of-contents-navigation">
30
+ <a href="./table_of_contents.html#pages">Pages</a>
31
+ <a href="./table_of_contents.html#classes">Classes</a>
32
+ <a href="./table_of_contents.html#methods">Methods</a>
33
+ </div>
34
+ </div>
35
+
36
+ <div id="search-section" role="search" class="project-section initially-hidden">
37
+ <form action="#" method="get" accept-charset="utf-8">
38
+ <div id="search-field-wrapper">
39
+ <input id="search-field" role="combobox" aria-label="Search"
40
+ aria-autocomplete="list" aria-controls="search-results"
41
+ type="text" name="search" placeholder="Search" spellcheck="false"
42
+ title="Type to search, Up and Down to navigate, Enter to load">
43
+ </div>
44
+
45
+ <ul id="search-results" aria-label="Search Results"
46
+ aria-busy="false" aria-expanded="false"
47
+ aria-atomic="false" class="initially-hidden"></ul>
48
+ </form>
49
+ </div>
50
+
51
+ </div>
52
+
53
+
54
+
55
+ <div id="project-metadata">
56
+ <div id="fileindex-section" class="nav-section">
57
+ <h3>Pages</h3>
58
+
59
+ <ul class="link-list">
60
+
61
+ <li><a href="./Gemfile.html">Gemfile</a>
62
+
63
+ <li><a href="./Gemfile_lock.html">Gemfile.lock</a>
64
+
65
+ <li><a href="./README_rdoc.html">README</a>
66
+
67
+ <li><a href="./Rakefile.html">Rakefile</a>
68
+
69
+ <li><a href="./doro_gemspec.html">doro.gemspec</a>
70
+
71
+ <li><a href="./doro_rdoc.html">doro</a>
72
+
73
+ <li><a href="./features/doro_feature.html">doro.feature</a>
74
+
75
+ </ul>
76
+ </div>
77
+
78
+ </div>
79
+ </nav>
80
+
81
+ <main role="main" aria-label="Page Rakefile">
82
+
83
+ <p>require &#39;rake/clean&#39; require &#39;rubygems&#39; require
84
+ &#39;rubygems/package_task&#39; require &#39;rdoc/task&#39; require
85
+ &#39;cucumber&#39; require &#39;cucumber/rake/task&#39; Rake::RDocTask.new
86
+ do |rd|</p>
87
+
88
+ <pre class="ruby"><span class="ruby-identifier">rd</span>.<span class="ruby-identifier">main</span> = <span class="ruby-string">&quot;README.rdoc&quot;</span>
89
+ <span class="ruby-identifier">rd</span>.<span class="ruby-identifier">rdoc_files</span>.<span class="ruby-identifier">include</span>(<span class="ruby-string">&quot;README.rdoc&quot;</span>,<span class="ruby-string">&quot;lib /*.rb&quot;</span>,<span class="ruby-string">&quot;bin/ *&quot;</span>)
90
+ <span class="ruby-identifier">rd</span>.<span class="ruby-identifier">title</span> = <span class="ruby-string">&#39;Your application title&#39;</span>
91
+ </pre>
92
+
93
+ <p>end</p>
94
+
95
+ <p>spec = eval(File.read(&#39;doro.gemspec&#39;))</p>
96
+
97
+ <p>Gem::PackageTask.new(spec) do |pkg| end CUKE_RESULTS =
98
+ &#39;results.html&#39; CLEAN &lt;&lt; CUKE_RESULTS desc &#39;Run
99
+ features&#39; Cucumber::Rake::Task.new(:features) do |t|</p>
100
+
101
+ <pre class="ruby"><span class="ruby-identifier">opts</span> = <span class="ruby-node">&quot;features --format html -o #{CUKE_RESULTS} --format progress -x&quot;</span>
102
+ <span class="ruby-identifier">opts</span> <span class="ruby-operator">+=</span> <span class="ruby-node">&quot; --tags #{ENV[&#39;TAGS&#39;]}&quot;</span> <span class="ruby-keyword">if</span> <span class="ruby-constant">ENV</span>[<span class="ruby-string">&#39;TAGS&#39;</span>]
103
+ <span class="ruby-identifier">t</span>.<span class="ruby-identifier">cucumber_opts</span> = <span class="ruby-identifier">opts</span>
104
+ <span class="ruby-identifier">t</span>.<span class="ruby-identifier">fork</span> = <span class="ruby-keyword">false</span>
105
+ </pre>
106
+
107
+ <p>end</p>
108
+
109
+ <p>desc &#39;Run features tagged as work-in-progress (@wip)&#39;
110
+ Cucumber::Rake::Task.new(&#39;features:wip&#39;) do |t|</p>
111
+
112
+ <pre class="ruby"><span class="ruby-identifier">tag_opts</span> = <span class="ruby-string">&#39; --tags ~@pending&#39;</span>
113
+ <span class="ruby-identifier">tag_opts</span> = <span class="ruby-string">&#39; --tags @wip&#39;</span>
114
+ <span class="ruby-identifier">t</span>.<span class="ruby-identifier">cucumber_opts</span> = <span class="ruby-node">&quot;features --format html -o #{CUKE_RESULTS} --format pretty -x -s#{tag_opts}&quot;</span>
115
+ <span class="ruby-identifier">t</span>.<span class="ruby-identifier">fork</span> = <span class="ruby-keyword">false</span>
116
+ </pre>
117
+
118
+ <p>end</p>
119
+
120
+ <p>task :cucumber =&gt; :features task &#39;cucumber:wip&#39; =&gt;
121
+ &#39;features:wip&#39; task :wip =&gt; &#39;features:wip&#39; require
122
+ &#39;rake/testtask&#39; Rake::TestTask.new do |t|</p>
123
+
124
+ <pre class="ruby"><span class="ruby-identifier">t</span>.<span class="ruby-identifier">libs</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-string">&quot;test&quot;</span>
125
+ <span class="ruby-identifier">t</span>.<span class="ruby-identifier">test_files</span> = <span class="ruby-constant">FileList</span>[<span class="ruby-string">&#39;test/*_test.rb&#39;</span>]
126
+ </pre>
127
+
128
+ <p>end</p>
129
+
130
+ <p>task :default =&gt; [:test,:features]</p>
131
+ </main>
132
+
133
+
134
+
135
+ <footer id="validator-badges" role="contentinfo">
136
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
137
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.2.
138
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
139
+ </footer>
140
+
@@ -0,0 +1,95 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>module Test - RDoc Documentation</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "./";
11
+ </script>
12
+
13
+ <script src="./js/jquery.js"></script>
14
+ <script src="./js/darkfish.js"></script>
15
+
16
+ <link href="./css/fonts.css" rel="stylesheet">
17
+ <link href="./css/rdoc.css" rel="stylesheet">
18
+
19
+
20
+
21
+ <body id="top" role="document" class="module">
22
+ <nav role="navigation">
23
+ <div id="project-navigation">
24
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
25
+ <h2>
26
+ <a href="./index.html" rel="home">Home</a>
27
+ </h2>
28
+
29
+ <div id="table-of-contents-navigation">
30
+ <a href="./table_of_contents.html#pages">Pages</a>
31
+ <a href="./table_of_contents.html#classes">Classes</a>
32
+ <a href="./table_of_contents.html#methods">Methods</a>
33
+ </div>
34
+ </div>
35
+
36
+ <div id="search-section" role="search" class="project-section initially-hidden">
37
+ <form action="#" method="get" accept-charset="utf-8">
38
+ <div id="search-field-wrapper">
39
+ <input id="search-field" role="combobox" aria-label="Search"
40
+ aria-autocomplete="list" aria-controls="search-results"
41
+ type="text" name="search" placeholder="Search" spellcheck="false"
42
+ title="Type to search, Up and Down to navigate, Enter to load">
43
+ </div>
44
+
45
+ <ul id="search-results" aria-label="Search Results"
46
+ aria-busy="false" aria-expanded="false"
47
+ aria-atomic="false" class="initially-hidden"></ul>
48
+ </form>
49
+ </div>
50
+
51
+ </div>
52
+
53
+
54
+
55
+ <div id="class-metadata">
56
+
57
+
58
+
59
+
60
+
61
+ </div>
62
+ </nav>
63
+
64
+ <main role="main" aria-labelledby="module-Test">
65
+ <h1 id="module-Test" class="module">
66
+ module Test
67
+ </h1>
68
+
69
+ <section class="description">
70
+
71
+ </section>
72
+
73
+
74
+
75
+
76
+ <section id="5Buntitled-5D" class="documentation-section">
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+ </section>
87
+ </main>
88
+
89
+
90
+ <footer id="validator-badges" role="contentinfo">
91
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
92
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.2.
93
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
94
+ </footer>
95
+