syclink 0.0.1

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.
Files changed (101) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +2 -0
  3. data/.rspec +1 -0
  4. data/Gemfile +2 -0
  5. data/Gemfile.lock +33 -0
  6. data/LICENSE +21 -0
  7. data/README.md +191 -0
  8. data/README.rdoc +9 -0
  9. data/Rakefile +5 -0
  10. data/bin/syclink +290 -0
  11. data/doc/Gemfile.html +109 -0
  12. data/doc/Gemfile_lock.html +147 -0
  13. data/doc/LICENSE.html +129 -0
  14. data/doc/Object.html +188 -0
  15. data/doc/README_md.html +322 -0
  16. data/doc/README_rdoc.html +171 -0
  17. data/doc/SycLink/Designer.html +560 -0
  18. data/doc/SycLink/Exporter.html +149 -0
  19. data/doc/SycLink/Formatter.html +416 -0
  20. data/doc/SycLink/Infrastructure.html +297 -0
  21. data/doc/SycLink/Link.html +296 -0
  22. data/doc/SycLink/Website.html +428 -0
  23. data/doc/SycLink.html +127 -0
  24. data/doc/created.rid +31 -0
  25. data/doc/css/fonts.css +167 -0
  26. data/doc/css/rdoc.css +590 -0
  27. data/doc/fonts/Lato-Light.ttf +0 -0
  28. data/doc/fonts/Lato-LightItalic.ttf +0 -0
  29. data/doc/fonts/Lato-Regular.ttf +0 -0
  30. data/doc/fonts/Lato-RegularItalic.ttf +0 -0
  31. data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
  32. data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
  33. data/doc/images/add.png +0 -0
  34. data/doc/images/arrow_up.png +0 -0
  35. data/doc/images/brick.png +0 -0
  36. data/doc/images/brick_link.png +0 -0
  37. data/doc/images/bug.png +0 -0
  38. data/doc/images/bullet_black.png +0 -0
  39. data/doc/images/bullet_toggle_minus.png +0 -0
  40. data/doc/images/bullet_toggle_plus.png +0 -0
  41. data/doc/images/date.png +0 -0
  42. data/doc/images/delete.png +0 -0
  43. data/doc/images/find.png +0 -0
  44. data/doc/images/loadingAnimation.gif +0 -0
  45. data/doc/images/macFFBgHack.png +0 -0
  46. data/doc/images/package.png +0 -0
  47. data/doc/images/page_green.png +0 -0
  48. data/doc/images/page_white_text.png +0 -0
  49. data/doc/images/page_white_width.png +0 -0
  50. data/doc/images/plugin.png +0 -0
  51. data/doc/images/ruby.png +0 -0
  52. data/doc/images/tag_blue.png +0 -0
  53. data/doc/images/tag_green.png +0 -0
  54. data/doc/images/transparent.png +0 -0
  55. data/doc/images/wrench.png +0 -0
  56. data/doc/images/wrench_orange.png +0 -0
  57. data/doc/images/zoom.png +0 -0
  58. data/doc/index.html +131 -0
  59. data/doc/js/darkfish.js +161 -0
  60. data/doc/js/jquery.js +4 -0
  61. data/doc/js/navigation.js +142 -0
  62. data/doc/js/navigation.js.gz +0 -0
  63. data/doc/js/search.js +109 -0
  64. data/doc/js/search_index.js +1 -0
  65. data/doc/js/search_index.js.gz +0 -0
  66. data/doc/js/searcher.js +228 -0
  67. data/doc/js/searcher.js.gz +0 -0
  68. data/doc/links_csv.html +113 -0
  69. data/doc/setup_md.html +192 -0
  70. data/doc/syclink_gemspec.html +133 -0
  71. data/doc/syclink_rdoc.html +154 -0
  72. data/doc/table_of_contents.html +336 -0
  73. data/doc/templates/example_html.html +399 -0
  74. data/doc/templates/links.html +116 -0
  75. data/doc/templates/stylesheets/style_css.html +170 -0
  76. data/doc/templates/stylesheets/style_css_map.html +111 -0
  77. data/doc/templates/stylesheets/style_css_scss.html +198 -0
  78. data/doc/templates/syc-link_html.html +235 -0
  79. data/lib/syclink/designer.rb +97 -0
  80. data/lib/syclink/designer_example.rb +9 -0
  81. data/lib/syclink/exporter.rb +17 -0
  82. data/lib/syclink/formatter.rb +70 -0
  83. data/lib/syclink/infrastructure.rb +44 -0
  84. data/lib/syclink/link.rb +62 -0
  85. data/lib/syclink/version.rb +7 -0
  86. data/lib/syclink/website.rb +62 -0
  87. data/lib/syclink/website_example.rb +68 -0
  88. data/lib/syclink.rb +7 -0
  89. data/setup.md +92 -0
  90. data/spec/syclink/designer_spec.rb +100 -0
  91. data/spec/syclink/link_spec.rb +47 -0
  92. data/spec/syclink/website_spec.rb +75 -0
  93. data/syclink.gemspec +23 -0
  94. data/syclink.rdoc +39 -0
  95. data/templates/links +4 -0
  96. data/templates/stylesheets/style.css +55 -0
  97. data/templates/stylesheets/style.css.map +7 -0
  98. data/templates/stylesheets/style.css.scss +76 -0
  99. data/templates/syc-link.html +123 -0
  100. data/templates/syclink.html.erb +63 -0
  101. metadata +193 -0
@@ -0,0 +1,147 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>Gemfile.lock - 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="./LICENSE.html">LICENSE</a>
66
+
67
+ <li><a href="./README_md.html">README</a>
68
+
69
+ <li><a href="./README_rdoc.html">README</a>
70
+
71
+ <li><a href="./links_csv.html">links.csv</a>
72
+
73
+ <li><a href="./setup_md.html">setup</a>
74
+
75
+ <li><a href="./syclink_gemspec.html">syclink.gemspec</a>
76
+
77
+ <li><a href="./syclink_rdoc.html">syclink</a>
78
+
79
+ <li><a href="./templates/example_html.html">example.html</a>
80
+
81
+ <li><a href="./templates/links.html">links</a>
82
+
83
+ <li><a href="./templates/stylesheets/style_css.html">style.css</a>
84
+
85
+ <li><a href="./templates/stylesheets/style_css_map.html">style.css.map</a>
86
+
87
+ <li><a href="./templates/stylesheets/style_css_scss.html">style.css.scss</a>
88
+
89
+ <li><a href="./templates/syc-link_html.html">syc-link.html</a>
90
+
91
+ </ul>
92
+ </div>
93
+
94
+ </div>
95
+ </nav>
96
+
97
+ <main role="main" aria-label="Page Gemfile.lock">
98
+
99
+ <p>PATH</p>
100
+
101
+ <pre>remote: .
102
+ specs:
103
+ syclink (0.0.1)
104
+ gli (= 2.13.1)</pre>
105
+
106
+ <p>GEM</p>
107
+
108
+ <pre>remote: https://rubygems.org/
109
+ specs:
110
+ diff-lcs (1.2.5)
111
+ gli (2.13.1)
112
+ rspec (3.3.0)
113
+ rspec-core (~&gt; 3.3.0)
114
+ rspec-expectations (~&gt; 3.3.0)
115
+ rspec-mocks (~&gt; 3.3.0)
116
+ rspec-core (3.3.1)
117
+ rspec-support (~&gt; 3.3.0)
118
+ rspec-expectations (3.3.0)
119
+ diff-lcs (&gt;= 1.2.0, &lt; 2.0)
120
+ rspec-support (~&gt; 3.3.0)
121
+ rspec-mocks (3.3.1)
122
+ diff-lcs (&gt;= 1.2.0, &lt; 2.0)
123
+ rspec-support (~&gt; 3.3.0)
124
+ rspec-support (3.3.0)
125
+ sass (3.4.15)</pre>
126
+
127
+ <p>PLATFORMS</p>
128
+
129
+ <pre class="ruby"><span class="ruby-identifier">ruby</span>
130
+ </pre>
131
+
132
+ <p>DEPENDENCIES</p>
133
+
134
+ <pre class="ruby"><span class="ruby-identifier">rspec</span>
135
+ <span class="ruby-identifier">sass</span>
136
+ <span class="ruby-identifier">syclink!</span>
137
+ </pre>
138
+ </main>
139
+
140
+
141
+
142
+ <footer id="validator-badges" role="contentinfo">
143
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
144
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
145
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
146
+ </footer>
147
+
data/doc/LICENSE.html ADDED
@@ -0,0 +1,129 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>LICENSE - 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="./LICENSE.html">LICENSE</a>
66
+
67
+ <li><a href="./README_md.html">README</a>
68
+
69
+ <li><a href="./README_rdoc.html">README</a>
70
+
71
+ <li><a href="./links_csv.html">links.csv</a>
72
+
73
+ <li><a href="./setup_md.html">setup</a>
74
+
75
+ <li><a href="./syclink_gemspec.html">syclink.gemspec</a>
76
+
77
+ <li><a href="./syclink_rdoc.html">syclink</a>
78
+
79
+ <li><a href="./templates/example_html.html">example.html</a>
80
+
81
+ <li><a href="./templates/links.html">links</a>
82
+
83
+ <li><a href="./templates/stylesheets/style_css.html">style.css</a>
84
+
85
+ <li><a href="./templates/stylesheets/style_css_map.html">style.css.map</a>
86
+
87
+ <li><a href="./templates/stylesheets/style_css_scss.html">style.css.scss</a>
88
+
89
+ <li><a href="./templates/syc-link_html.html">syc-link.html</a>
90
+
91
+ </ul>
92
+ </div>
93
+
94
+ </div>
95
+ </nav>
96
+
97
+ <main role="main" aria-label="Page LICENSE">
98
+
99
+ <p>The MIT License (MIT)</p>
100
+
101
+ <p>Copyright © 2015 sugaryourcoffee</p>
102
+
103
+ <p>Permission is hereby granted, free of charge, to any person obtaining a
104
+ copy of this software and associated documentation files (the “Software”),
105
+ to deal in the Software without restriction, including without limitation
106
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
107
+ and/or sell copies of the Software, and to permit persons to whom the
108
+ Software is furnished to do so, subject to the following conditions:</p>
109
+
110
+ <p>The above copyright notice and this permission notice shall be included in
111
+ all copies or substantial portions of the Software.</p>
112
+
113
+ <p>THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
114
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
115
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
116
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
117
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
118
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
119
+ DEALINGS IN THE SOFTWARE.</p>
120
+ </main>
121
+
122
+
123
+
124
+ <footer id="validator-badges" role="contentinfo">
125
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
126
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
127
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
128
+ </footer>
129
+
data/doc/Object.html ADDED
@@ -0,0 +1,188 @@
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
+
75
+ <li><a class="include" href="SycLink/Infrastructure.html">SycLink::Infrastructure</a>
76
+
77
+
78
+
79
+ <li><a class="include" href="SycLink/Formatter.html">SycLink::Formatter</a>
80
+
81
+
82
+ </ul>
83
+ </div>
84
+
85
+
86
+ <!-- Method Quickref -->
87
+ <div id="method-list-section" class="nav-section">
88
+ <h3>Methods</h3>
89
+
90
+ <ul class="link-list" role="directory">
91
+
92
+ <li ><a href="#method-i-print_links">#print_links</a>
93
+
94
+ </ul>
95
+ </div>
96
+
97
+ </div>
98
+ </nav>
99
+
100
+ <main role="main" aria-labelledby="class-Object">
101
+ <h1 id="class-Object" class="class">
102
+ class Object
103
+ </h1>
104
+
105
+ <section class="description">
106
+
107
+ </section>
108
+
109
+
110
+
111
+
112
+ <section id="5Buntitled-5D" class="documentation-section">
113
+
114
+
115
+
116
+
117
+
118
+ <section class="constants-list">
119
+ <header>
120
+ <h3>Constants</h3>
121
+ </header>
122
+ <dl>
123
+
124
+ <dt id="WEBSITE_COMMANDS">WEBSITE_COMMANDS
125
+
126
+ <dd><p>Commands that need to have a website and a designer object</p>
127
+
128
+
129
+ </dl>
130
+ </section>
131
+
132
+
133
+
134
+
135
+
136
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section">
137
+ <header>
138
+ <h3>Public Instance Methods</h3>
139
+ </header>
140
+
141
+
142
+ <div id="method-i-print_links" class="method-detail ">
143
+
144
+ <div class="method-heading">
145
+ <span class="method-name">print_links</span><span
146
+ class="method-args">(links, columns)</span>
147
+
148
+ <span class="method-click-advice">click to toggle source</span>
149
+
150
+ </div>
151
+
152
+
153
+ <div class="method-description">
154
+
155
+
156
+
157
+
158
+
159
+
160
+ <div class="method-source-code" id="print_links-source">
161
+ <pre><span class="ruby-comment"># File bin/syclink, line 284</span>
162
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">print_links</span>(<span class="ruby-identifier">links</span>, <span class="ruby-identifier">columns</span>)
163
+ <span class="ruby-identifier">allowed_cols</span> = <span class="ruby-node">%w{ url name description tag }</span>
164
+ <span class="ruby-identifier">cols</span> = <span class="ruby-identifier">columns</span>.<span class="ruby-identifier">delete</span>(<span class="ruby-string">&#39; &#39;</span>).<span class="ruby-identifier">downcase</span>.<span class="ruby-identifier">split</span>(<span class="ruby-string">&#39;,&#39;</span>) <span class="ruby-operator">&amp;</span> <span class="ruby-identifier">allowed_cols</span>
165
+ <span class="ruby-constant">SycLink</span><span class="ruby-operator">::</span><span class="ruby-constant">Formatter</span>.<span class="ruby-identifier">table</span>(<span class="ruby-identifier">links</span>, <span class="ruby-identifier">cols</span>)
166
+ <span class="ruby-keyword">end</span></pre>
167
+ </div>
168
+
169
+ </div>
170
+
171
+
172
+
173
+
174
+ </div>
175
+
176
+
177
+ </section>
178
+
179
+ </section>
180
+ </main>
181
+
182
+
183
+ <footer id="validator-badges" role="contentinfo">
184
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
185
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
186
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
187
+ </footer>
188
+