toadstool 0.0.0.1 → 0.0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/bin/toadstool +80 -33
- data/lib/stylesheets/_toadstool-styleguide.scss +33 -0
- data/lib/stylesheets/toadstool/_buttons.scss +22 -0
- data/lib/stylesheets/toadstool/_config.scss +228 -0
- data/lib/stylesheets/toadstool/_design.scss +55 -0
- data/lib/stylesheets/toadstool/_forms.scss +18 -0
- data/lib/stylesheets/toadstool/_grids.scss +48 -0
- data/lib/stylesheets/toadstool/_modules.scss +3 -0
- data/{sass → lib/stylesheets/toadstool}/_typography.scss +43 -11
- data/lib/stylesheets/toadstool/_ui_patterns.scss +3 -0
- data/lib/stylesheets/toadstool/_web_fonts.scss +11 -0
- data/lib/stylesheets/toadstool/modules/_footer.scss +7 -0
- data/lib/stylesheets/toadstool/modules/_header.scss +41 -0
- data/lib/stylesheets/toadstool/modules/_main_nav.scss +49 -0
- data/lib/stylesheets/toadstool/ui_patterns/_color_grid.scss +220 -0
- data/lib/stylesheets/toadstool/ui_patterns/_emBox.scss +16 -0
- data/lib/stylesheets/toadstool/ui_patterns/_prettify.scss +136 -0
- data/lib/templates/module/sass/_example_module.scss +4 -0
- data/{sass/modules/example_module → lib/templates/module/sass}/_extends.scss +0 -0
- data/{sass/modules/example_module → lib/templates/module/sass}/_mixins.scss +0 -0
- data/{views/modules/example_module → lib/templates/module/views}/module.erb +0 -0
- data/{views/modules/example_module → lib/templates/module/views}/module.js +0 -0
- data/{views/modules/example_module → lib/templates/module/views}/view.erb +0 -0
- data/{Gemfile → lib/templates/project/Gemfile} +1 -3
- data/lib/templates/project/Rakefile +21 -0
- data/{config.rb → lib/templates/project/config.rb} +5 -3
- data/lib/templates/project/config.ru +8 -0
- data/{doc-src → lib/templates/project/doc-src}/SASS-Guidelines.md +0 -0
- data/lib/templates/project/doc-src/changelog.md +22 -0
- data/{doc-src → lib/templates/project/doc-src}/mit_license.md +0 -0
- data/{sass/modules/example_module/readme.md → lib/templates/project/doc-src/module-sass-readme.md} +0 -0
- data/{public → lib/templates/project/public}/images/toadstool-logo.png +0 -0
- data/{public → lib/templates/project/public}/javascripts/application.js +12 -1
- data/lib/templates/project/public/javascripts/jquery-1.8.3.min.js +2 -0
- data/{public → lib/templates/project/public}/javascripts/lang-css.js +0 -0
- data/{public → lib/templates/project/public}/javascripts/lang-yaml.js +0 -0
- data/lib/templates/project/public/javascripts/modernizr-2.6.1.js +1384 -0
- data/{public → lib/templates/project/public}/javascripts/modernizr.mods.js +0 -0
- data/{public → lib/templates/project/public}/javascripts/prettify.js +0 -0
- data/lib/templates/project/readme.md +79 -0
- data/lib/templates/project/sass/_buttons.scss +37 -0
- data/{sass → lib/templates/project/sass}/_config.scss +81 -74
- data/{sass → lib/templates/project/sass}/_design.scss +0 -0
- data/lib/templates/project/sass/_forms.scss +41 -0
- data/{sass → lib/templates/project/sass}/_reset.scss +0 -0
- data/lib/templates/project/sass/_typography.scss +98 -0
- data/lib/templates/project/sass/buttons/_extends.scss +3 -0
- data/lib/templates/project/sass/buttons/_mixins.scss +2 -0
- data/lib/templates/project/sass/color/_color_defaults.scss +98 -0
- data/{sass → lib/templates/project/sass}/color/_color_math.scss +1 -1
- data/lib/templates/project/sass/color/_extends.scss +109 -0
- data/{sass → lib/templates/project/sass}/color/_grayscale_math.scss +0 -0
- data/lib/templates/project/sass/color/readme.md +63 -0
- data/lib/templates/project/sass/forms/_extends.scss +3 -0
- data/lib/templates/project/sass/forms/_mixins.scss +3 -0
- data/{sass/_ui_patterns.scss → lib/templates/project/sass/layouts/_example_layout.scss} +0 -0
- data/lib/templates/project/sass/readme.md +142 -0
- data/{sass → lib/templates/project/sass}/style.scss +6 -10
- data/{sass → lib/templates/project/sass}/toadstool.scss +1 -1
- data/lib/templates/project/sass/typography/_extends.scss +13 -0
- data/lib/templates/project/sass/typography/_mixins.scss +2 -0
- data/{sass → lib/templates/project/sass/typography}/_web_fonts.scss +2 -5
- data/lib/templates/project/toadstool.rb +94 -0
- data/lib/templates/project/views/color_palettes.erb +371 -0
- data/lib/templates/project/views/forms.erb +40 -0
- data/lib/templates/project/views/forms/disabled_button.erb +18 -0
- data/lib/templates/project/views/forms/password_input.erb +22 -0
- data/lib/templates/project/views/forms/primary_button.erb +18 -0
- data/lib/templates/project/views/forms/readme.md +2 -0
- data/{views → lib/templates/project/views}/forms/username_input.erb +0 -0
- data/{views → lib/templates/project/views}/grid.erb +0 -0
- data/{views → lib/templates/project/views}/grid24.erb +0 -0
- data/{views → lib/templates/project/views}/grids/grid_arguments.erb +0 -0
- data/{views → lib/templates/project/views}/grids/use_definition.erb +0 -0
- data/{views → lib/templates/project/views}/layout.erb +2 -2
- data/{views/modules/example_module → lib/templates/project/views/modules}/readme.md +6 -4
- data/lib/templates/project/views/shared/_code_toggle.erb +10 -0
- data/lib/templates/project/views/shared/_html_example.erb +5 -0
- data/{views → lib/templates/project/views}/shared/_main_footer.erb +0 -0
- data/{views → lib/templates/project/views}/shared/_main_header.erb +0 -0
- data/{views → lib/templates/project/views}/shared/_main_nav.erb +0 -0
- data/{views → lib/templates/project/views}/shared/_toadstool_subheader.erb +0 -0
- data/lib/templates/project/views/typography.erb +35 -0
- data/lib/templates/project/views/typography/body_copy.erb +2 -0
- data/{views → lib/templates/project/views}/typography/body_links.erb +0 -0
- data/{sass/ui_patterns/_example.scss → lib/templates/project/views/typography/general_typography.erb} +0 -0
- data/{views → lib/templates/project/views}/typography/headings.erb +0 -0
- data/{views → lib/templates/project/views}/typography/vertical_rhythm.erb +0 -0
- data/{views → lib/templates/project/views}/typography/web_fonts.erb +0 -0
- data/lib/templates/project/views/ui_patterns/forms/primary_buttons.erb +8 -0
- data/lib/templates/project/views/ui_patterns/forms/text_input.erb +11 -0
- data/lib/templates/project/views/ui_patterns/forms/text_input_error.erb +11 -0
- data/{views → lib/templates/project/views}/ui_patterns/readme.md +4 -3
- data/lib/templates/project/views/ui_patterns/typography/_body_copy.erb +2 -0
- data/lib/templates/project/views/ui_patterns/typography/_headings.erb +6 -0
- data/lib/templates/ui_pattern/sass/_example_pattern.scss +4 -0
- data/lib/templates/ui_pattern/sass/_extends.scss +0 -0
- data/lib/templates/ui_pattern/sass/_mixins.scss +0 -0
- data/{views/ui_patterns → lib/templates/ui_pattern/views}/example.erb +0 -0
- data/lib/toadstool.rb +4 -0
- data/lib/toadstool/version.rb +3 -0
- metadata +120 -109
- data/Rakefile +0 -4
- data/config.ru +0 -6
- data/doc-src/What-Is-Toadstool.md +0 -44
- data/doc-src/changelog.md +0 -29
- data/doc-src/config.md +0 -18
- data/doc-src/mixin_directory.md +0 -17
- data/doc-src/sass.md +0 -4
- data/lib/RackServer.rb +0 -93
- data/public/fonts/fontawesome-webfont.eot +0 -0
- data/public/fonts/fontawesome-webfont.svg +0 -255
- data/public/fonts/fontawesome-webfont.ttf +0 -0
- data/public/fonts/fontawesome-webfont.woff +0 -0
- data/public/fonts/zocial-regular-webfont.eot +0 -0
- data/public/fonts/zocial-regular-webfont.svg +0 -138
- data/public/fonts/zocial-regular-webfont.ttf +0 -0
- data/public/fonts/zocial-regular-webfont.woff +0 -0
- data/public/javascripts/css_browser_selector.js +0 -8
- data/public/javascripts/lang-apollo.js +0 -2
- data/public/javascripts/lang-clj.js +0 -18
- data/public/javascripts/lang-go.js +0 -1
- data/public/javascripts/lang-hs.js +0 -2
- data/public/javascripts/lang-lisp.js +0 -3
- data/public/javascripts/lang-lua.js +0 -2
- data/public/javascripts/lang-ml.js +0 -2
- data/public/javascripts/lang-n.js +0 -4
- data/public/javascripts/lang-proto.js +0 -1
- data/public/javascripts/lang-scala.js +0 -2
- data/public/javascripts/lang-sql.js +0 -2
- data/public/javascripts/lang-tex.js +0 -1
- data/public/javascripts/lang-vb.js +0 -2
- data/public/javascripts/lang-vhdl.js +0 -3
- data/public/javascripts/lang-wiki.js +0 -2
- data/public/javascripts/lang-xq.js +0 -3
- data/public/javascripts/selectivizr-min.js +0 -5
- data/public/stylesheets/style.css +0 -615
- data/public/stylesheets/toadstool.css +0 -1643
- data/readme.md +0 -37
- data/sass/_buttons.scss +0 -20
- data/sass/_forms.scss +0 -18
- data/sass/_modules.scss +0 -12
- data/sass/buttons/_cupid_config.scss +0 -20
- data/sass/buttons/_minimal_config.scss +0 -15
- data/sass/color/_extends.scss +0 -291
- data/sass/ui_patterns/_color_grid.scss +0 -286
- data/toadstool.rb +0 -84
- data/views/abstract_colors.erb +0 -1
- data/views/alerts.erb +0 -1
- data/views/buttons.erb +0 -1
- data/views/color_palettes.erb +0 -221
- data/views/forms.erb +0 -24
- data/views/forms/disabled_button.erb +0 -18
- data/views/forms/password_input.erb +0 -22
- data/views/forms/primary_button.erb +0 -18
- data/views/modules/readme.md +0 -10
- data/views/semantic_colors.erb +0 -1
- data/views/shared/_html_example.erb +0 -31
- data/views/shared/_sass_example.erb +0 -10
- data/views/typography.erb +0 -17
- data/views/typography/body_copy.erb +0 -19
- data/views/typography/general_typography.erb +0 -19
- data/views/ui_patterns/forms/text_input.erb +0 -10
@@ -0,0 +1,40 @@
|
|
1
|
+
<header class="toadstool_header">
|
2
|
+
<h1>form</h1>
|
3
|
+
</header>
|
4
|
+
|
5
|
+
<section id="text_input">
|
6
|
+
<%= partial :'shared/_toadstool_subheader', :locals => {
|
7
|
+
:header => 'text inputs', :text => 'The following form input text types are supported <code>input[type=email]</code>, <code>input[type=password]</code>, <code>input[type=text]</code> and <code>input[type=number]</code>'
|
8
|
+
} %>
|
9
|
+
<%= html_example 'ui_patterns/forms/text_input' %>
|
10
|
+
<%= sass_example '_forms' %>
|
11
|
+
</section>
|
12
|
+
|
13
|
+
<section id="text_input_error">
|
14
|
+
<%= partial :'shared/_toadstool_subheader', :locals => {
|
15
|
+
:header => 'text inputs w/errors', :text => 'The following form input text types are supported <code>input[type=email]</code>, <code>input[type=password]</code>, <code>input[type=text]</code> and <code>input[type=number]</code>'
|
16
|
+
} %>
|
17
|
+
<%= html_example 'ui_patterns/forms/text_input_error' %>
|
18
|
+
<%= sass_example '_forms' %>
|
19
|
+
</section>
|
20
|
+
|
21
|
+
<section id="primary_buttons">
|
22
|
+
<%= partial :'shared/_toadstool_subheader', :locals => {
|
23
|
+
:header => 'Primary buttons', :text => 'Use defualt semantic HTML to create the following buttons.'
|
24
|
+
} %>
|
25
|
+
<%= html_example 'ui_patterns/forms/primary_buttons' %>
|
26
|
+
<%= sass_example '_buttons' %>
|
27
|
+
<%= sass_example 'buttons/_mixins' %>
|
28
|
+
<%= sass_example 'buttons/_extends' %>
|
29
|
+
</section>
|
30
|
+
|
31
|
+
|
32
|
+
<%# all depricated partial calls %>
|
33
|
+
<%#= partial :"forms/username_input" %>
|
34
|
+
<%#= partial :"forms/password_input" %>
|
35
|
+
<%#= partial :"forms/primary_button" %>
|
36
|
+
<%#= partial :"forms/disabled_button" %>
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
<footer class="toadstool_footer"></footer>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<section id="disabled_button">
|
2
|
+
<header class="toadstool_subheader">
|
3
|
+
<h2>disabled button</h2>
|
4
|
+
<article>
|
5
|
+
<p>Copy goes here about how form inputs work</p>
|
6
|
+
<!-- <p><a href="#" class="click_more_typography">Read more ...</a></p> -->
|
7
|
+
</article>
|
8
|
+
<article class="read_more_inputs hidden"></article>
|
9
|
+
</header>
|
10
|
+
|
11
|
+
<article class="element_example">
|
12
|
+
<form>
|
13
|
+
<fieldset>
|
14
|
+
<button disabled>Sign in</button>
|
15
|
+
</fieldset>
|
16
|
+
</form>
|
17
|
+
</article>
|
18
|
+
</section>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<section id="password_inputs">
|
2
|
+
<header class="toadstool_subheader">
|
3
|
+
<h2>password inputs</h2>
|
4
|
+
<article>
|
5
|
+
<p>Copy goes here about how form inputs work</p>
|
6
|
+
<!-- <p><a href="#" class="click_more_typography">Read more ...</a></p> -->
|
7
|
+
</article>
|
8
|
+
<article class="read_more_inputs hidden"></article>
|
9
|
+
</header>
|
10
|
+
|
11
|
+
<article class="element_example">
|
12
|
+
<form>
|
13
|
+
<fieldset>
|
14
|
+
<ol>
|
15
|
+
<li>
|
16
|
+
<label for="login_password">Password</label>
|
17
|
+
<input type="password" name="password" id="login_password" placeholder="password" tabindex="2" />
|
18
|
+
</li>
|
19
|
+
</ol>
|
20
|
+
</form>
|
21
|
+
</article>
|
22
|
+
</section>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<section id="primary_button">
|
2
|
+
<header class="toadstool_subheader">
|
3
|
+
<h2>primary button</h2>
|
4
|
+
<article>
|
5
|
+
<p>Copy goes here about how form inputs work</p>
|
6
|
+
<!-- <p><a href="#" class="click_more_typography">Read more ...</a></p> -->
|
7
|
+
</article>
|
8
|
+
<article class="read_more_inputs hidden"></article>
|
9
|
+
</header>
|
10
|
+
|
11
|
+
<article class="element_example">
|
12
|
+
<form>
|
13
|
+
<fieldset>
|
14
|
+
<button>Sign in</button>
|
15
|
+
</fieldset>
|
16
|
+
</form>
|
17
|
+
</article>
|
18
|
+
</section>
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -27,8 +27,8 @@
|
|
27
27
|
<!--[if lte IE 8]>
|
28
28
|
<link rel="stylesheet" media="all" href="/styles/ie.css"/><![endif]-->
|
29
29
|
|
30
|
-
<script src="
|
31
|
-
<script src="
|
30
|
+
<script src="/javascripts/jquery-1.8.3.min.js"></script>
|
31
|
+
<script src="/javascripts/modernizr-2.6.1.js"></script>
|
32
32
|
<script src="/javascripts/modernizr.mods.js"></script>
|
33
33
|
<script src="/javascripts/prettify.js"></script>
|
34
34
|
<script src="/javascripts/application.js"></script>
|
@@ -1,16 +1,18 @@
|
|
1
|
-
#Build a module
|
1
|
+
# Build a module
|
2
2
|
|
3
3
|
One of the core concepts of Toadstool is the law of abstraction. The Achilles heel of UI dev is the lack of abstraction of code from the visual application. We have been trained over the years that content and UI has a single application and any re-work will require editing of the markup. But the latest techniques and technologies have shown us otherwise.
|
4
4
|
|
5
|
-
##Definition a module
|
5
|
+
## Definition a module
|
6
6
|
A module is a single UI element that serves the purpose of either delivering content and/or interaction. A module is a self-contained series of design elements and possibly UI patterns. Regardless of fixed, fluid or responsive experience, the module itself does not have a defined space. It should always take up 100% width and it's height dictated by the content continued within.
|
7
7
|
|
8
8
|
When developers subscribe to this engineering method, then the application of module to a view should never require any additional coding. The structure of the view will dictate placement via a grid system.
|
9
9
|
|
10
|
-
##Know when you are doing it wrong
|
10
|
+
## Know when you are doing it wrong
|
11
11
|
If you find yourself coding elemental and/or UI patterns within a module, this should be a smell to refactor.
|
12
12
|
|
13
|
-
###Here is a simple example of a reusable module
|
13
|
+
### Here is a simple example of a reusable module ###
|
14
|
+
|
15
|
+
|
14
16
|
```html
|
15
17
|
<article class="information_panels">
|
16
18
|
<h2>Salvia high life sartorial</h2>
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,35 @@
|
|
1
|
+
<header class="toadstool_header">
|
2
|
+
<h1>typography</h1>
|
3
|
+
</header>
|
4
|
+
|
5
|
+
<%#= partial :"typography/general_typography" %>
|
6
|
+
<section id="generalTypography">
|
7
|
+
<%= partial :'shared/_toadstool_subheader', :locals => {
|
8
|
+
:header => 'general typography', :text => "Toadstool's typograhy is mainly maintained via the <code>_config.scss</code> file. For more detailed information, see <a href='http://goo.gl/Hl8po' target='_blank'>Stipe's typography documentation.</a>"
|
9
|
+
} %>
|
10
|
+
<%= html_example 'ui_patterns/typography/_body_copy' %>
|
11
|
+
<%= sass_example '_typography' %>
|
12
|
+
<%= sass_example '_config' %>
|
13
|
+
</section>
|
14
|
+
|
15
|
+
<section id="headings">
|
16
|
+
<%= partial :'shared/_toadstool_subheader', :locals => {
|
17
|
+
:header => 'headings', :text => "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 appropriate semantic markup or class as needed."
|
18
|
+
} %>
|
19
|
+
<%= html_example 'ui_patterns/typography/_headings' %>
|
20
|
+
<%#= sass_example '_typography' %>
|
21
|
+
<%#= sass_example '_config' %>
|
22
|
+
</section>
|
23
|
+
|
24
|
+
|
25
|
+
<%#= partial :"typography/web_fonts" %>
|
26
|
+
|
27
|
+
<%#= partial :"typography/headings" %>
|
28
|
+
|
29
|
+
<%#= partial :"typography/vertical_rhythm" %>
|
30
|
+
|
31
|
+
<%#= partial :"typography/body_copy" %>
|
32
|
+
|
33
|
+
<%#= partial :"typography/body_links" %>
|
34
|
+
|
35
|
+
<footer class="toadstool_footer"></footer>
|
@@ -0,0 +1,2 @@
|
|
1
|
+
<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>
|
2
|
+
<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>
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<form>
|
2
|
+
<fieldset>
|
3
|
+
<ol>
|
4
|
+
<li>
|
5
|
+
<label for="general_text">General text input<span>(optional)</span></label>
|
6
|
+
<input type="text" name="general_text" id="general_text" placeholder="general text" />
|
7
|
+
<p class="instructional">We think that you need help with this one, so ...</p>
|
8
|
+
</li>
|
9
|
+
</ol>
|
10
|
+
</fieldset>
|
11
|
+
</form>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<form>
|
2
|
+
<fieldset>
|
3
|
+
<ol>
|
4
|
+
<li class="fail">
|
5
|
+
<label for="general_text">General text input<span>(optional)</span></label>
|
6
|
+
<input type="text" name="general_text" id="general_text" placeholder="general text" />
|
7
|
+
<p class="inline_alert">WOW! Did you screw that up! Wanna try that again?</p>
|
8
|
+
</li>
|
9
|
+
</ol>
|
10
|
+
</fieldset>
|
11
|
+
</form>
|
@@ -1,6 +1,6 @@
|
|
1
|
-
#What is a UI pattern?
|
1
|
+
# What is a UI pattern?
|
2
2
|
|
3
|
-
In Toadstool
|
3
|
+
In Toadstool, the module is the single most important thing 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—it's the destination.
|
4
4
|
|
5
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
6
|
|
@@ -8,7 +8,8 @@ The UI pattern fits in between the element and the module. The module could be t
|
|
8
8
|
|
9
9
|
The idea behind the UI pattern is keeping your code DRY.
|
10
10
|
|
11
|
-
##Refactoring is the KEY!
|
11
|
+
## Refactoring is the KEY!
|
12
|
+
|
12
13
|
Modules are easy to discover while UI patterns are more elusive. It is my suggestion that you don't go chasing perfection.
|
13
14
|
|
14
15
|
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.
|
@@ -0,0 +1,2 @@
|
|
1
|
+
<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>
|
2
|
+
<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>
|
File without changes
|
File without changes
|
File without changes
|
data/lib/toadstool.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: toadstool
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.0.
|
4
|
+
version: 0.0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: lib/bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2013-02-21 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: sinatra
|
@@ -51,7 +51,7 @@ dependencies:
|
|
51
51
|
requirements:
|
52
52
|
- - ! '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '0.
|
54
|
+
version: '0.12'
|
55
55
|
type: :runtime
|
56
56
|
prerelease: false
|
57
57
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,7 @@ dependencies:
|
|
59
59
|
requirements:
|
60
60
|
- - ! '>='
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: '0.
|
62
|
+
version: '0.12'
|
63
63
|
- !ruby/object:Gem::Dependency
|
64
64
|
name: sass
|
65
65
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,6 +76,22 @@ dependencies:
|
|
76
76
|
- - ! '>='
|
77
77
|
- !ruby/object:Gem::Version
|
78
78
|
version: 3.2.1
|
79
|
+
- !ruby/object:Gem::Dependency
|
80
|
+
name: stipe
|
81
|
+
requirement: !ruby/object:Gem::Requirement
|
82
|
+
none: false
|
83
|
+
requirements:
|
84
|
+
- - ! '>='
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: 0.0.5.7.4
|
87
|
+
type: :runtime
|
88
|
+
prerelease: false
|
89
|
+
version_requirements: !ruby/object:Gem::Requirement
|
90
|
+
none: false
|
91
|
+
requirements:
|
92
|
+
- - ! '>='
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: 0.0.5.7.4
|
79
95
|
description: Toadstool styleguide app.
|
80
96
|
email: dale.sande@gmail.com
|
81
97
|
executables:
|
@@ -83,112 +99,107 @@ executables:
|
|
83
99
|
extensions: []
|
84
100
|
extra_rdoc_files: []
|
85
101
|
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
102
|
- lib/bin/toadstool
|
97
|
-
- lib/
|
98
|
-
-
|
99
|
-
-
|
100
|
-
-
|
101
|
-
-
|
102
|
-
-
|
103
|
-
-
|
104
|
-
-
|
105
|
-
-
|
106
|
-
-
|
107
|
-
-
|
108
|
-
-
|
109
|
-
-
|
110
|
-
-
|
111
|
-
-
|
112
|
-
-
|
113
|
-
-
|
114
|
-
-
|
115
|
-
-
|
116
|
-
-
|
117
|
-
-
|
118
|
-
-
|
119
|
-
-
|
120
|
-
-
|
121
|
-
-
|
122
|
-
-
|
123
|
-
-
|
124
|
-
-
|
125
|
-
-
|
126
|
-
- public/
|
127
|
-
- public/javascripts/
|
128
|
-
- public/javascripts/
|
129
|
-
- public/javascripts/
|
130
|
-
- public/
|
131
|
-
- public/
|
132
|
-
-
|
133
|
-
-
|
134
|
-
-
|
135
|
-
-
|
136
|
-
- sass/
|
137
|
-
- sass/
|
138
|
-
- sass/
|
139
|
-
- sass/
|
140
|
-
- sass/
|
141
|
-
- sass/
|
142
|
-
- sass/
|
143
|
-
- sass/buttons/
|
144
|
-
- sass/
|
145
|
-
- sass/color/_color_math.scss
|
146
|
-
- sass/color/_extends.scss
|
147
|
-
- sass/color/_grayscale_math.scss
|
148
|
-
- sass/
|
149
|
-
- sass/
|
150
|
-
- sass/
|
151
|
-
- sass/
|
152
|
-
- sass/
|
153
|
-
- sass/
|
154
|
-
- sass/
|
155
|
-
-
|
156
|
-
-
|
157
|
-
-
|
158
|
-
-
|
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/
|
164
|
-
- views/forms.erb
|
165
|
-
- views/
|
166
|
-
- views/
|
167
|
-
- views/
|
168
|
-
- views/grids/
|
169
|
-
- views/
|
170
|
-
-
|
171
|
-
- views/modules/
|
172
|
-
- views/
|
173
|
-
- views/
|
174
|
-
- views/
|
175
|
-
- views/
|
176
|
-
- views/shared/
|
177
|
-
- views/shared/
|
178
|
-
- views/
|
179
|
-
- views/
|
180
|
-
- views/
|
181
|
-
- views/
|
182
|
-
- views/typography/
|
183
|
-
- views/typography/
|
184
|
-
- views/typography
|
185
|
-
- views/
|
186
|
-
- views/
|
187
|
-
- views/
|
188
|
-
- views/
|
189
|
-
- views/ui_patterns/
|
190
|
-
- views/ui_patterns/
|
191
|
-
-
|
103
|
+
- lib/stylesheets/_toadstool-styleguide.scss
|
104
|
+
- lib/stylesheets/toadstool/_buttons.scss
|
105
|
+
- lib/stylesheets/toadstool/_config.scss
|
106
|
+
- lib/stylesheets/toadstool/_design.scss
|
107
|
+
- lib/stylesheets/toadstool/_forms.scss
|
108
|
+
- lib/stylesheets/toadstool/_grids.scss
|
109
|
+
- lib/stylesheets/toadstool/_modules.scss
|
110
|
+
- lib/stylesheets/toadstool/_typography.scss
|
111
|
+
- lib/stylesheets/toadstool/_ui_patterns.scss
|
112
|
+
- lib/stylesheets/toadstool/_web_fonts.scss
|
113
|
+
- lib/stylesheets/toadstool/modules/_footer.scss
|
114
|
+
- lib/stylesheets/toadstool/modules/_header.scss
|
115
|
+
- lib/stylesheets/toadstool/modules/_main_nav.scss
|
116
|
+
- lib/stylesheets/toadstool/ui_patterns/_color_grid.scss
|
117
|
+
- lib/stylesheets/toadstool/ui_patterns/_emBox.scss
|
118
|
+
- lib/stylesheets/toadstool/ui_patterns/_prettify.scss
|
119
|
+
- lib/templates/module/sass/_example_module.scss
|
120
|
+
- lib/templates/module/sass/_extends.scss
|
121
|
+
- lib/templates/module/sass/_mixins.scss
|
122
|
+
- lib/templates/module/views/module.erb
|
123
|
+
- lib/templates/module/views/module.js
|
124
|
+
- lib/templates/module/views/view.erb
|
125
|
+
- lib/templates/project/config.rb
|
126
|
+
- lib/templates/project/config.ru
|
127
|
+
- lib/templates/project/doc-src/changelog.md
|
128
|
+
- lib/templates/project/doc-src/mit_license.md
|
129
|
+
- lib/templates/project/doc-src/module-sass-readme.md
|
130
|
+
- lib/templates/project/doc-src/SASS-Guidelines.md
|
131
|
+
- lib/templates/project/Gemfile
|
132
|
+
- lib/templates/project/public/images/toadstool-logo.png
|
133
|
+
- lib/templates/project/public/javascripts/application.js
|
134
|
+
- lib/templates/project/public/javascripts/jquery-1.8.3.min.js
|
135
|
+
- lib/templates/project/public/javascripts/lang-css.js
|
136
|
+
- lib/templates/project/public/javascripts/lang-yaml.js
|
137
|
+
- lib/templates/project/public/javascripts/modernizr-2.6.1.js
|
138
|
+
- lib/templates/project/public/javascripts/modernizr.mods.js
|
139
|
+
- lib/templates/project/public/javascripts/prettify.js
|
140
|
+
- lib/templates/project/Rakefile
|
141
|
+
- lib/templates/project/readme.md
|
142
|
+
- lib/templates/project/sass/_buttons.scss
|
143
|
+
- lib/templates/project/sass/_config.scss
|
144
|
+
- lib/templates/project/sass/_design.scss
|
145
|
+
- lib/templates/project/sass/_forms.scss
|
146
|
+
- lib/templates/project/sass/_reset.scss
|
147
|
+
- lib/templates/project/sass/_typography.scss
|
148
|
+
- lib/templates/project/sass/buttons/_extends.scss
|
149
|
+
- lib/templates/project/sass/buttons/_mixins.scss
|
150
|
+
- lib/templates/project/sass/color/_color_defaults.scss
|
151
|
+
- lib/templates/project/sass/color/_color_math.scss
|
152
|
+
- lib/templates/project/sass/color/_extends.scss
|
153
|
+
- lib/templates/project/sass/color/_grayscale_math.scss
|
154
|
+
- lib/templates/project/sass/color/readme.md
|
155
|
+
- lib/templates/project/sass/forms/_extends.scss
|
156
|
+
- lib/templates/project/sass/forms/_mixins.scss
|
157
|
+
- lib/templates/project/sass/layouts/_example_layout.scss
|
158
|
+
- lib/templates/project/sass/readme.md
|
159
|
+
- lib/templates/project/sass/style.scss
|
160
|
+
- lib/templates/project/sass/toadstool.scss
|
161
|
+
- lib/templates/project/sass/typography/_extends.scss
|
162
|
+
- lib/templates/project/sass/typography/_mixins.scss
|
163
|
+
- lib/templates/project/sass/typography/_web_fonts.scss
|
164
|
+
- lib/templates/project/toadstool.rb
|
165
|
+
- lib/templates/project/views/color_palettes.erb
|
166
|
+
- lib/templates/project/views/forms/disabled_button.erb
|
167
|
+
- lib/templates/project/views/forms/password_input.erb
|
168
|
+
- lib/templates/project/views/forms/primary_button.erb
|
169
|
+
- lib/templates/project/views/forms/readme.md
|
170
|
+
- lib/templates/project/views/forms/username_input.erb
|
171
|
+
- lib/templates/project/views/forms.erb
|
172
|
+
- lib/templates/project/views/grid.erb
|
173
|
+
- lib/templates/project/views/grid24.erb
|
174
|
+
- lib/templates/project/views/grids/grid_arguments.erb
|
175
|
+
- lib/templates/project/views/grids/use_definition.erb
|
176
|
+
- lib/templates/project/views/layout.erb
|
177
|
+
- lib/templates/project/views/modules/readme.md
|
178
|
+
- lib/templates/project/views/shared/_code_toggle.erb
|
179
|
+
- lib/templates/project/views/shared/_html_example.erb
|
180
|
+
- lib/templates/project/views/shared/_main_footer.erb
|
181
|
+
- lib/templates/project/views/shared/_main_header.erb
|
182
|
+
- lib/templates/project/views/shared/_main_nav.erb
|
183
|
+
- lib/templates/project/views/shared/_toadstool_subheader.erb
|
184
|
+
- lib/templates/project/views/typography/body_copy.erb
|
185
|
+
- lib/templates/project/views/typography/body_links.erb
|
186
|
+
- lib/templates/project/views/typography/general_typography.erb
|
187
|
+
- lib/templates/project/views/typography/headings.erb
|
188
|
+
- lib/templates/project/views/typography/vertical_rhythm.erb
|
189
|
+
- lib/templates/project/views/typography/web_fonts.erb
|
190
|
+
- lib/templates/project/views/typography.erb
|
191
|
+
- lib/templates/project/views/ui_patterns/forms/primary_buttons.erb
|
192
|
+
- lib/templates/project/views/ui_patterns/forms/text_input.erb
|
193
|
+
- lib/templates/project/views/ui_patterns/forms/text_input_error.erb
|
194
|
+
- lib/templates/project/views/ui_patterns/readme.md
|
195
|
+
- lib/templates/project/views/ui_patterns/typography/_body_copy.erb
|
196
|
+
- lib/templates/project/views/ui_patterns/typography/_headings.erb
|
197
|
+
- lib/templates/ui_pattern/sass/_example_pattern.scss
|
198
|
+
- lib/templates/ui_pattern/sass/_extends.scss
|
199
|
+
- lib/templates/ui_pattern/sass/_mixins.scss
|
200
|
+
- lib/templates/ui_pattern/views/example.erb
|
201
|
+
- lib/toadstool/version.rb
|
202
|
+
- lib/toadstool.rb
|
192
203
|
homepage: https://github.com/Anotheruiguy/toadstool
|
193
204
|
licenses: []
|
194
205
|
post_install_message:
|