toadstool 0.0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. data/Gemfile +11 -0
  2. data/Rakefile +4 -0
  3. data/config.rb +42 -0
  4. data/config.ru +6 -0
  5. data/doc-src/SASS-Guidelines.md +222 -0
  6. data/doc-src/What-Is-Toadstool.md +44 -0
  7. data/doc-src/changelog.md +29 -0
  8. data/doc-src/config.md +18 -0
  9. data/doc-src/mit_license.md +7 -0
  10. data/doc-src/mixin_directory.md +17 -0
  11. data/doc-src/sass.md +4 -0
  12. data/lib/RackServer.rb +93 -0
  13. data/lib/bin/toadstool +99 -0
  14. data/public/fonts/fontawesome-webfont.eot +0 -0
  15. data/public/fonts/fontawesome-webfont.svg +255 -0
  16. data/public/fonts/fontawesome-webfont.ttf +0 -0
  17. data/public/fonts/fontawesome-webfont.woff +0 -0
  18. data/public/fonts/zocial-regular-webfont.eot +0 -0
  19. data/public/fonts/zocial-regular-webfont.svg +138 -0
  20. data/public/fonts/zocial-regular-webfont.ttf +0 -0
  21. data/public/fonts/zocial-regular-webfont.woff +0 -0
  22. data/public/images/toadstool-logo.png +0 -0
  23. data/public/javascripts/application.js +74 -0
  24. data/public/javascripts/css_browser_selector.js +8 -0
  25. data/public/javascripts/lang-apollo.js +2 -0
  26. data/public/javascripts/lang-clj.js +18 -0
  27. data/public/javascripts/lang-css.js +2 -0
  28. data/public/javascripts/lang-go.js +1 -0
  29. data/public/javascripts/lang-hs.js +2 -0
  30. data/public/javascripts/lang-lisp.js +3 -0
  31. data/public/javascripts/lang-lua.js +2 -0
  32. data/public/javascripts/lang-ml.js +2 -0
  33. data/public/javascripts/lang-n.js +4 -0
  34. data/public/javascripts/lang-proto.js +1 -0
  35. data/public/javascripts/lang-scala.js +2 -0
  36. data/public/javascripts/lang-sql.js +2 -0
  37. data/public/javascripts/lang-tex.js +1 -0
  38. data/public/javascripts/lang-vb.js +2 -0
  39. data/public/javascripts/lang-vhdl.js +3 -0
  40. data/public/javascripts/lang-wiki.js +2 -0
  41. data/public/javascripts/lang-xq.js +3 -0
  42. data/public/javascripts/lang-yaml.js +2 -0
  43. data/public/javascripts/modernizr.mods.js +22 -0
  44. data/public/javascripts/prettify.js +28 -0
  45. data/public/javascripts/selectivizr-min.js +5 -0
  46. data/public/stylesheets/style.css +615 -0
  47. data/public/stylesheets/toadstool.css +1643 -0
  48. data/readme.md +37 -0
  49. data/sass/_buttons.scss +20 -0
  50. data/sass/_config.scss +216 -0
  51. data/sass/_design.scss +6 -0
  52. data/sass/_forms.scss +18 -0
  53. data/sass/_modules.scss +12 -0
  54. data/sass/_reset.scss +5 -0
  55. data/sass/_typography.scss +93 -0
  56. data/sass/_ui_patterns.scss +0 -0
  57. data/sass/_web_fonts.scss +32 -0
  58. data/sass/buttons/_cupid_config.scss +20 -0
  59. data/sass/buttons/_minimal_config.scss +15 -0
  60. data/sass/color/_color_math.scss +63 -0
  61. data/sass/color/_extends.scss +291 -0
  62. data/sass/color/_grayscale_math.scss +10 -0
  63. data/sass/modules/example_module/_extends.scss +0 -0
  64. data/sass/modules/example_module/_mixins.scss +0 -0
  65. data/sass/modules/example_module/readme.md +96 -0
  66. data/sass/style.scss +45 -0
  67. data/sass/toadstool.scss +14 -0
  68. data/sass/ui_patterns/_color_grid.scss +286 -0
  69. data/sass/ui_patterns/_example.scss +0 -0
  70. data/toadstool.rb +84 -0
  71. data/views/abstract_colors.erb +1 -0
  72. data/views/alerts.erb +1 -0
  73. data/views/buttons.erb +1 -0
  74. data/views/color_palettes.erb +221 -0
  75. data/views/forms.erb +24 -0
  76. data/views/forms/disabled_button.erb +18 -0
  77. data/views/forms/password_input.erb +22 -0
  78. data/views/forms/primary_button.erb +18 -0
  79. data/views/forms/username_input.erb +23 -0
  80. data/views/grid.erb +127 -0
  81. data/views/grid24.erb +59 -0
  82. data/views/grids/grid_arguments.erb +22 -0
  83. data/views/grids/use_definition.erb +12 -0
  84. data/views/layout.erb +58 -0
  85. data/views/modules/example_module/module.erb +0 -0
  86. data/views/modules/example_module/module.js +0 -0
  87. data/views/modules/example_module/readme.md +29 -0
  88. data/views/modules/example_module/view.erb +0 -0
  89. data/views/modules/readme.md +10 -0
  90. data/views/semantic_colors.erb +1 -0
  91. data/views/shared/_html_example.erb +31 -0
  92. data/views/shared/_main_footer.erb +12 -0
  93. data/views/shared/_main_header.erb +4 -0
  94. data/views/shared/_main_nav.erb +16 -0
  95. data/views/shared/_sass_example.erb +10 -0
  96. data/views/shared/_toadstool_subheader.erb +6 -0
  97. data/views/typography.erb +17 -0
  98. data/views/typography/body_copy.erb +19 -0
  99. data/views/typography/body_links.erb +18 -0
  100. data/views/typography/general_typography.erb +19 -0
  101. data/views/typography/headings.erb +65 -0
  102. data/views/typography/vertical_rhythm.erb +13 -0
  103. data/views/typography/web_fonts.erb +11 -0
  104. data/views/ui_patterns/example.erb +1 -0
  105. data/views/ui_patterns/forms/text_input.erb +10 -0
  106. data/views/ui_patterns/readme.md +14 -0
  107. metadata +216 -0
@@ -0,0 +1 @@
1
+ <h1>semantic colors</h1>
@@ -0,0 +1,31 @@
1
+ <%# Returns the extension (the portion of file name in path after the period) %>
2
+ <% extname = File.extname(path) %>
3
+
4
+ <%# Returns components of the filename, + last component of the filename sans the extension %>
5
+ <% fullPath = File.dirname(path) + '/' + File.basename(path, extname)%>
6
+
7
+ <%# Returns components of the filename, + last component of the filename w/the extension %>
8
+ <% fullPathExtname = File.dirname(path) + '/' + File.basename(path)%>
9
+
10
+ <%# prepends path to fullPathExtname %>
11
+ <% mtime_path = 'views/' + fullPathExtname %>
12
+
13
+ <%# wrapps fullPathExtname for display in the view %>
14
+ <% file_path = '< File path: ' + fullPathExtname + ' ' + '>' %>
15
+
16
+ <%# ---------------------------------------------- %>
17
+
18
+ <article class="element_example">
19
+ <%= partial fullPath %>
20
+ </article>
21
+
22
+ <div class="example_code">
23
+ <p class="codeToggle"><a href="#">view</a></p>
24
+ <pre class="prettyprint linenums hidden">
25
+ <%= code partial fullPath %>
26
+ </pre>
27
+ <p><%= path %></p>
28
+ <p class="mtime">
29
+ Last modified: <%= File.mtime(mtime_path) %>
30
+ </p>
31
+ </div>
@@ -0,0 +1,12 @@
1
+ <footer class="toadstool_main_footer">
2
+ Toadstool &copy; 2012 -
3
+ <script type="text/javascript">
4
+ var currentDate = new Date()
5
+ //var day = currentDate.getDate()
6
+ //var month = currentDate.getMonth() + 1
7
+ var year = currentDate.getFullYear()
8
+ document.write(year)
9
+ </script>
10
+ <a href="https://twitter.com/anotheruiguy">@anotheruiguy</a> and <a href="https://twitter.com/jed_foster">@jed_foster</a>.
11
+ It is available for use and modification under the <a href="https://github.com/Anotheruiguy/toadstool/blob/master/doc-src/mit_license.md">MIT license</a>.
12
+ </footer>
@@ -0,0 +1,4 @@
1
+ <header class="toadstool_main_header">
2
+ <h1>logo here</h1>
3
+ <button class="nav_toggle"><span></span></button>
4
+ </header>
@@ -0,0 +1,16 @@
1
+ <nav class="toadstool_nav mobi_hidden">
2
+ <ol>
3
+ <li><%= link_to_unless_current '/', 'Typography' %> </li>
4
+ <li><%= link_to_unless_current '/grid', 'Grids' %> </li>
5
+ <li><%= link_to_unless_current '/color_palettes', 'Color palettes' %> </li>
6
+ <!-- <li><%#= link_to_unless_current '/semantic_colors', 'Semantic color palette' %> </li> -->
7
+
8
+ <!-- <li><%#= link_to_unless_current '/alerts', 'Alerts' %> </li> -->
9
+ <!-- <li><%#= link_to_unless_current '/buttons', 'Buttons' %> </li> -->
10
+ <li><%= link_to_unless_current '/forms', 'Forms' %> </li>
11
+ <!-- <li><%#= link_to_unless_current '/Patterns', 'Patterns' %> </li> -->
12
+ <!-- <li><%#= link_to_unless_current '/Modules', 'Modules' %> </li> -->
13
+ </ol>
14
+ </nav>
15
+
16
+
@@ -0,0 +1,10 @@
1
+ <div class="example_code sassView">
2
+ <p class="codeToggle"><a href="#">view</a></p>
3
+ <pre class="prettyprint linenums hidden">
4
+ <%= File.new(path).read() %>
5
+ </pre>
6
+ <p><%= path %></p>
7
+ <p class="mtime">
8
+ Last modified: <%= File.mtime(path) %>
9
+ </p>
10
+ </div>
@@ -0,0 +1,6 @@
1
+ <header class="toadstool_subheader">
2
+ <h2><%= header %></h2>
3
+ <article>
4
+ <p><%= text %></p>
5
+ </article>
6
+ </header>
@@ -0,0 +1,17 @@
1
+ <header class="toadstool_header">
2
+ <h1>typography</h1>
3
+ </header>
4
+
5
+ <%= partial :"typography/general_typography" %>
6
+
7
+ <%= partial :"typography/web_fonts" %>
8
+
9
+ <%= partial :"typography/headings" %>
10
+
11
+ <%= partial :"typography/vertical_rhythm" %>
12
+
13
+ <%= partial :"typography/body_copy" %>
14
+
15
+ <%= partial :"typography/body_links" %>
16
+
17
+ <footer class="toadstool_footer"></footer>
@@ -0,0 +1,19 @@
1
+ <section id="body_copy">
2
+ <header class="toadstool_subheader">
3
+ <h2>body copy</h2>
4
+ <p>Edit values in the <code>_config.scss</code> file to update standard body copy UI.</p>
5
+ </header>
6
+ <article class="element_example">
7
+ <p>Sapiente enim fingerstache, etsy single-origin coffee truffaut sriracha cupidatat viral hella eiusmod whatever. Salvia deserunt terry richardson nostrud irure marfa. Portland sapiente authentic swag. Anim narwhal exercitation consectetur butcher. Pork belly yr banksy occupy twee consectetur. Sustainable cupidatat eiusmod tumblr pour-over brooklyn keffiyeh, DIY 8-bit ex brunch single-origin coffee duis seitan. Mixtape ea 8-bit ennui, viral voluptate authentic culpa aesthetic occaecat art party.</p>
8
+ <p>Master cleanse swag officia selvage ea. Laborum fingerstache non quinoa cliche skateboard aliquip, irony portland. Fixie nihil godard, quis incididunt lomo locavore non quinoa iphone excepteur. Aute mollit food truck, voluptate occupy sed gastropub nostrud banh mi. Narwhal fugiat gluten-free, thundercats ennui lo-fi DIY kale chips nisi. Reprehenderit ea scenester, minim exercitation pork belly ut odd future iphone nostrud nihil. Ethical voluptate seitan high life.</p>
9
+ </article>
10
+
11
+ <div class="example_code">
12
+ <pre class="prettyprint">
13
+ &lt;p&gt;Sapiente enim fingerstache, etsy single-origin coffee truffaut sriracha cupidatat viral hella eiusmod whatever. Salvia deserunt terry richardson nostrud irure marfa.&lt;/p&gt;
14
+ </pre>
15
+ <p>example markup</p>
16
+ </div>
17
+
18
+
19
+ </section>
@@ -0,0 +1,18 @@
1
+ <section id="body_links">
2
+ <header class="toadstool_subheader">
3
+ <h2>body links</h2>
4
+ <p>Edit values in the <code>_config.scss</code> file to update standard links UI.</p>
5
+ </header>
6
+ <article class="element_example">
7
+ <p>Sapiente enim fingerstache, <a href="#">etsy single-origin</a> coffee truffaut sriracha cupidatat viral hella eiusmod whatever.</p>
8
+ </article>
9
+
10
+ <div class="example_code">
11
+ <pre class="prettyprint">
12
+ &lt;p&gt;Sapiente enim fingerstache, &lt;a href=&quot;#&quot;&gt;etsy single-origin&lt;/a&gt; coffee truffaut sriracha cupidatat viral hella eiusmod whatever.&lt;/p&gt;
13
+ </pre>
14
+ <p>example markup</p>
15
+ </div>
16
+
17
+
18
+ </section>
@@ -0,0 +1,19 @@
1
+ <section id="general_typography">
2
+ <header class="toadstool_subheader">
3
+ <h2>general typography</h2>
4
+ <article>
5
+ <p>Much of your Typography has already been addressed with Toadstool. Simply use Toadstool's config file to address your <code>$font_size, $heading_1 - 6, $small_point_size and $large_point_size</code>. As well designate your <code>$primary_font_family, $secondary_font_family and $heading_font_family</code> variables. </p>
6
+ <p>It should be noted that Toadstool DOES NOT USE PIXELS for any values. At any time you need use a width/height/size value, use Stipe's <a href="http://goo.gl/rK2Ae" target="_blank">em function</a>, for example: <code>font-size: em(12);</code>. </p>
7
+
8
+ <p class="click_more"><a href="#">Read more ...</a></p>
9
+
10
+ <div class="read_more hidden">
11
+ <p>Stipe's em function takes two arguments, <code>$target</code> and <code>$context</code>. By default <code>$context</code> is set to the <code>$font-size</code> you set in the your <a href="http://goo.gl/PqQSK" target="_blank">config.scss</a> file. The function will take the value of the argument, devide it by the context and convert that to an em vlaue for the final output. </p>
12
+ <p>But why the second argument? The gotcha of ems is it's parental relationship. If at any time you redefined the parent font size, you need to redefine the context of this function. For example, if the partent was changed to <code>font-size: em(18);</code> and you wanted a header inside to be 24px, by resetting the context you will get the correct em value, like so: <code>font-size: em(24, 18);</code>.</p>
13
+ <p>Stipe also has a rem funciton that works the same way, example: <code>font-size: rem(24);</code> whereas this function takes the initial argument and devides by the font-size set in the <code>&lt;html&gt;</code> selector. Read more on rem from <a href="http://goo.gl/85fhM">snook.ca</a>, but use with caution, no support for IE8 and below.</p>
14
+ </div>
15
+
16
+ </article>
17
+
18
+ </header>
19
+ </section>
@@ -0,0 +1,65 @@
1
+ <section id="headings">
2
+ <header class="toadstool_subheader">
3
+ <h2>headings</h2>
4
+ <article>
5
+ <p>In Toadstool, presentation is 100% separated from content and markup, this goes for typography too. Heading styles are not beholden to heading tags, but applied via slient classes to the appropiate semantic markup or class as needed. </p>
6
+
7
+ <p class="click_more"><a href="#">Read more ...</a></p>
8
+
9
+ <div class="read_more hidden">
10
+ <p>Heading styles, by default, use the settings that are formatted in Stipe's library. Semantic headings are styled using <a href="http://goo.gl/iJfy9" target="_blank">pre-made silent classes</a> from Stipe's <a href="http://goo.gl/V81v3" target="_blank">default typograhy</a>. To edit these defaults, use the <a href="http://goo.gl/d9yvC" target="_blank">typography.scss</a> file found in your Toadstool app.</p>
11
+ <p>The <a href="http://goo.gl/xdnQm" target="_blank">@mixin heading</a> allows for four arguments to be passed, <code>$heading_size, $heading_font_family, $heading_color, $heading_font_weight</code>. </p>
12
+ <p>Default values for headings are editable in <a href="http://goo.gl/PqQSK" target="_blank">Toadstool's config file</a>.</p>
13
+ </div>
14
+ </article>
15
+
16
+ </header>
17
+ <article class="element_example">
18
+ <h1>@extend %headings_1;</h1>
19
+ <h2>@extend %headings_2;</h2>
20
+ <h3>@extend %headings_3;</h3>
21
+ </article>
22
+
23
+
24
+
25
+ <div class="example_code">
26
+ <p class="codeToggle"><a href="#">view</a></p>
27
+ <pre class="prettyprint hidden">
28
+ &lt;h1&gt;@extend %headings_1;&lt;/h1&gt;
29
+ &lt;h2&gt;@extend %headings_2;&lt;/h2&gt;
30
+
31
+ &lt;article class=&quot;nested_article&quot;&gt;
32
+ &lt;h1&gt;This is a nested header&lt;/h1&gt;
33
+ &lt;/article&gt;
34
+
35
+ &lt;div&gt;Copy in here will look like the headings 1 style&lt;/div&gt;
36
+ </pre>
37
+ <p>example markup</p>
38
+ </div>
39
+
40
+ <div class="example_code">
41
+ <p class="codeToggle"><a href="#">view</a></p>
42
+ <pre class="prettyprint hidden">
43
+ // Here is a pretty standard example use
44
+ h1 {
45
+ @extend %headings_1;
46
+ }
47
+
48
+ h2 {
49
+ @extend %headings_2;
50
+ }
51
+
52
+ // There may be times when you want a heading style on another selector
53
+ .nested_article {
54
+ h1 {
55
+ @extend %headings_3;
56
+ }
57
+ }
58
+
59
+ div {
60
+ @extend %headings_1;
61
+ }
62
+ </pre>
63
+ <p>example SCSS</p>
64
+ </div>
65
+ </section>
@@ -0,0 +1,13 @@
1
+ <section id="vertical_rhythm">
2
+ <header class="toadstool_subheader">
3
+ <h2>vertical rhythm</h2>
4
+ <article>
5
+ <p>To the beat of the rhythm of the night <br>
6
+ Dance until the morning light <br>
7
+ Forget about the worries on your mind <br>
8
+ You can leave them all behind <br>
9
+ To the beat of the rhythm of the night <br>
10
+ Oh the rhythm of the night, oh yeah</p>
11
+ </article>
12
+ </header>
13
+ </section>
@@ -0,0 +1,11 @@
1
+ <section id="web_fonts">
2
+ <header class="toadstool_subheader">
3
+ <h2>web fonts</h2>
4
+ <article>
5
+ <p>You like web-fonts, well so do we. Toadstool and Stipe come fully equipped to support web fonts right out of the box. In Toadstool's public directory is a folder for fonts. Toadstool comes pre-loaded with <a href="#">Font Awesome</a> and <a href="#">Zocial</a>. </p>
6
+ </article>
7
+
8
+
9
+
10
+ </header>
11
+ </section>
@@ -0,0 +1 @@
1
+ example ui pattern to go here
@@ -0,0 +1,10 @@
1
+ <form>
2
+ <fieldset>
3
+ <ol>
4
+ <li>
5
+ <label for="general_text">General text input</label>
6
+ <input type="text" name="general_text" id="general_text" placeholder="general text" />
7
+ </li>
8
+ </ol>
9
+ </fieldset>
10
+ </form>
@@ -0,0 +1,14 @@
1
+ #What is a UI pattern?
2
+
3
+ In Toadstool's eyes, the module is the single most important things you can build. It is the final object that will be placed in the view to create the experience. But the module is not the starting point, but a destination.
4
+
5
+ Starting with the elemental building blocks of the UI, then depending on the size of the module you will either assemble the final module here or using a combination of elements and UI patterns will then assemble the module.
6
+
7
+ The UI pattern fits in between the element and the module. The module could be thought of as a complete experience within a widget of sorts while a UI pattern is simply a repeated UI element that is shared among multiple modules.
8
+
9
+ The idea behind the UI pattern is keeping your code DRY.
10
+
11
+ ##Refactoring is the KEY!
12
+ Modules are easy to discover while UI patterns are more elusive. It is my suggestion that you don't go chasing perfection.
13
+
14
+ UI patterns present themselves. It is when you have completed a module and start another that you may discover a similar pattern between the two. This directory is here so that you have a place to document the patterns.
metadata ADDED
@@ -0,0 +1,216 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: toadstool
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Dale Sande
9
+ - Jed Foster
10
+ autorequire:
11
+ bindir: lib/bin
12
+ cert_chain: []
13
+ date: 2012-11-06 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: sinatra
17
+ requirement: !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: '0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ! '>='
29
+ - !ruby/object:Gem::Version
30
+ version: '0'
31
+ - !ruby/object:Gem::Dependency
32
+ name: sinatra-partial
33
+ requirement: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ type: :runtime
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: compass
49
+ requirement: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0.11'
55
+ type: :runtime
56
+ prerelease: false
57
+ version_requirements: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ! '>='
61
+ - !ruby/object:Gem::Version
62
+ version: '0.11'
63
+ - !ruby/object:Gem::Dependency
64
+ name: sass
65
+ requirement: !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ! '>='
69
+ - !ruby/object:Gem::Version
70
+ version: 3.2.1
71
+ type: :runtime
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ! '>='
77
+ - !ruby/object:Gem::Version
78
+ version: 3.2.1
79
+ description: Toadstool styleguide app.
80
+ email: dale.sande@gmail.com
81
+ executables:
82
+ - toadstool
83
+ extensions: []
84
+ extra_rdoc_files: []
85
+ files:
86
+ - config.rb
87
+ - config.ru
88
+ - doc-src/changelog.md
89
+ - doc-src/config.md
90
+ - doc-src/mit_license.md
91
+ - doc-src/mixin_directory.md
92
+ - doc-src/SASS-Guidelines.md
93
+ - doc-src/sass.md
94
+ - doc-src/What-Is-Toadstool.md
95
+ - Gemfile
96
+ - lib/bin/toadstool
97
+ - lib/RackServer.rb
98
+ - public/fonts/fontawesome-webfont.eot
99
+ - public/fonts/fontawesome-webfont.svg
100
+ - public/fonts/fontawesome-webfont.ttf
101
+ - public/fonts/fontawesome-webfont.woff
102
+ - public/fonts/zocial-regular-webfont.eot
103
+ - public/fonts/zocial-regular-webfont.svg
104
+ - public/fonts/zocial-regular-webfont.ttf
105
+ - public/fonts/zocial-regular-webfont.woff
106
+ - public/images/toadstool-logo.png
107
+ - public/javascripts/application.js
108
+ - public/javascripts/css_browser_selector.js
109
+ - public/javascripts/lang-apollo.js
110
+ - public/javascripts/lang-clj.js
111
+ - public/javascripts/lang-css.js
112
+ - public/javascripts/lang-go.js
113
+ - public/javascripts/lang-hs.js
114
+ - public/javascripts/lang-lisp.js
115
+ - public/javascripts/lang-lua.js
116
+ - public/javascripts/lang-ml.js
117
+ - public/javascripts/lang-n.js
118
+ - public/javascripts/lang-proto.js
119
+ - public/javascripts/lang-scala.js
120
+ - public/javascripts/lang-sql.js
121
+ - public/javascripts/lang-tex.js
122
+ - public/javascripts/lang-vb.js
123
+ - public/javascripts/lang-vhdl.js
124
+ - public/javascripts/lang-wiki.js
125
+ - public/javascripts/lang-xq.js
126
+ - public/javascripts/lang-yaml.js
127
+ - public/javascripts/modernizr.mods.js
128
+ - public/javascripts/prettify.js
129
+ - public/javascripts/selectivizr-min.js
130
+ - public/stylesheets/style.css
131
+ - public/stylesheets/toadstool.css
132
+ - Rakefile
133
+ - readme.md
134
+ - sass/_buttons.scss
135
+ - sass/_config.scss
136
+ - sass/_design.scss
137
+ - sass/_forms.scss
138
+ - sass/_modules.scss
139
+ - sass/_reset.scss
140
+ - sass/_typography.scss
141
+ - sass/_ui_patterns.scss
142
+ - sass/_web_fonts.scss
143
+ - sass/buttons/_cupid_config.scss
144
+ - sass/buttons/_minimal_config.scss
145
+ - sass/color/_color_math.scss
146
+ - sass/color/_extends.scss
147
+ - sass/color/_grayscale_math.scss
148
+ - sass/modules/example_module/_extends.scss
149
+ - sass/modules/example_module/_mixins.scss
150
+ - sass/modules/example_module/readme.md
151
+ - sass/style.scss
152
+ - sass/toadstool.scss
153
+ - sass/ui_patterns/_color_grid.scss
154
+ - sass/ui_patterns/_example.scss
155
+ - toadstool.rb
156
+ - views/abstract_colors.erb
157
+ - views/alerts.erb
158
+ - views/buttons.erb
159
+ - views/color_palettes.erb
160
+ - views/forms/disabled_button.erb
161
+ - views/forms/password_input.erb
162
+ - views/forms/primary_button.erb
163
+ - views/forms/username_input.erb
164
+ - views/forms.erb
165
+ - views/grid.erb
166
+ - views/grid24.erb
167
+ - views/grids/grid_arguments.erb
168
+ - views/grids/use_definition.erb
169
+ - views/layout.erb
170
+ - views/modules/example_module/module.erb
171
+ - views/modules/example_module/module.js
172
+ - views/modules/example_module/readme.md
173
+ - views/modules/example_module/view.erb
174
+ - views/modules/readme.md
175
+ - views/semantic_colors.erb
176
+ - views/shared/_html_example.erb
177
+ - views/shared/_main_footer.erb
178
+ - views/shared/_main_header.erb
179
+ - views/shared/_main_nav.erb
180
+ - views/shared/_sass_example.erb
181
+ - views/shared/_toadstool_subheader.erb
182
+ - views/typography/body_copy.erb
183
+ - views/typography/body_links.erb
184
+ - views/typography/general_typography.erb
185
+ - views/typography/headings.erb
186
+ - views/typography/vertical_rhythm.erb
187
+ - views/typography/web_fonts.erb
188
+ - views/typography.erb
189
+ - views/ui_patterns/example.erb
190
+ - views/ui_patterns/forms/text_input.erb
191
+ - views/ui_patterns/readme.md
192
+ homepage: https://github.com/Anotheruiguy/toadstool
193
+ licenses: []
194
+ post_install_message:
195
+ rdoc_options: []
196
+ require_paths:
197
+ - lib
198
+ required_ruby_version: !ruby/object:Gem::Requirement
199
+ none: false
200
+ requirements:
201
+ - - ! '>='
202
+ - !ruby/object:Gem::Version
203
+ version: '0'
204
+ required_rubygems_version: !ruby/object:Gem::Requirement
205
+ none: false
206
+ requirements:
207
+ - - ! '>='
208
+ - !ruby/object:Gem::Version
209
+ version: '0'
210
+ requirements: []
211
+ rubyforge_project:
212
+ rubygems_version: 1.8.23
213
+ signing_key:
214
+ specification_version: 3
215
+ summary: Toadstool styleguide app
216
+ test_files: []