Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
mirisuzanne committed Apr 25, 2017
1 parent 67fd193 commit e19e16f
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ task :record_version do
open(FileList["VERSION"].first, "w") do |f|
f.write(spec.version.to_s)
end
sh "git add VERSION bower.json"
sh "git add ."
sh %Q{git commit -am "Bump version to #{spec.version}."}
end
end
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0.alpha.5
3.0.0.alpha.6
2 changes: 1 addition & 1 deletion docs/a-config.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>susy Documentation</title><link href="assets/img/favicon.ico" rel="shortcut icon"><link rel="stylesheet" href="assets/css/main.css"><link rel="stylesheet" href="assets/css/theme.css"></head><body><div data-sassdoc-region="app"><header role="banner" data-sassdoc-region="banner"><h1 data-sassdoc="project-title"><a href="index.html" rel="home" data-sassdoc="project-name">susy</a> <span data-sassdoc="project-version">3.0.0-alpha.5</span></h1></header><div data-sassdoc-region="container"><nav role="navigation" data-sassdoc-region="nav"><h2 data-sassdoc="nav-title"><a href="index.html" rel="home" data-sassdoc-nav="is-not-active">StyleGuide</a></h2><a href="a-config.html" data-sassdoc-nav="is-active">Configuration</a> <a href="api.html" data-sassdoc-nav="is-not-active">Main API</a> <a href="math.html" data-sassdoc-nav="is-not-active">Core Math</a> <a href="plugin-helpers.html" data-sassdoc-nav="is-not-active">Plugin Helpers</a> <a href="plugin_svg-grid.html" data-sassdoc-nav="is-not-active">[Plugin] SVG Grid Image</a></nav><main role="main" data-sassdoc-region="main" data-sassdoc-page="a-config"><h2 data-sassdoc="page-title">Configuration</h2><section data-sassdoc-item="function" id="function--susy-repeat"><h3 data-sassdoc="item-title"><span data-sassdoc="item-name">susy-repeat()</span> <span data-sassdoc="item-type">function</span></h3><div data-sassdoc="item-description"><p></p><p>Similar to the <code>repeat(&lt;count&gt;, &lt;value&gt;)</code> function that is available in CSS Grid templates, repeats any value a given number of times — a useful shortcut for defining symetrical static grids</p><p></p></div><pre data-sassdoc="hljs"><code class="lang-scss">@function susy-repeat(
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>susy Documentation</title><link href="assets/img/favicon.ico" rel="shortcut icon"><link rel="stylesheet" href="assets/css/main.css"><link rel="stylesheet" href="assets/css/theme.css"></head><body><div data-sassdoc-region="app"><header role="banner" data-sassdoc-region="banner"><h1 data-sassdoc="project-title"><a href="index.html" rel="home" data-sassdoc="project-name">susy</a> <span data-sassdoc="project-version">3.0.0-alpha.6</span></h1></header><div data-sassdoc-region="container"><nav role="navigation" data-sassdoc-region="nav"><h2 data-sassdoc="nav-title"><a href="index.html" rel="home" data-sassdoc-nav="is-not-active">StyleGuide</a></h2><a href="a-config.html" data-sassdoc-nav="is-active">Configuration</a> <a href="api.html" data-sassdoc-nav="is-not-active">Main API</a> <a href="math.html" data-sassdoc-nav="is-not-active">Core Math</a> <a href="plugin-helpers.html" data-sassdoc-nav="is-not-active">Plugin Helpers</a> <a href="plugin_svg-grid.html" data-sassdoc-nav="is-not-active">[Plugin] SVG Grid Image</a></nav><main role="main" data-sassdoc-region="main" data-sassdoc-page="a-config"><h2 data-sassdoc="page-title">Configuration</h2><section data-sassdoc-item="function" id="function--susy-repeat"><h3 data-sassdoc="item-title"><span data-sassdoc="item-name">susy-repeat()</span> <span data-sassdoc="item-type">function</span></h3><div data-sassdoc="item-description"><p></p><p>Similar to the <code>repeat(&lt;count&gt;, &lt;value&gt;)</code> function that is available in CSS Grid templates, repeats any value a given number of times — a useful shortcut for defining symetrical static grids</p><p></p></div><pre data-sassdoc="hljs"><code class="lang-scss">@function susy-repeat(
$count,
$value
) { /* ... */ }</code></pre><div data-sassdoc-display="parameter"><h5 class="item-subtitle">Parameters</h5><table data-sassdoc-table="parameter"><thead><tr scope="row"><th scope="col">name</th><th scope="col">description</th><th scope="col">type</th><th scope="col">default</th></tr></thead><tbody><tr data-sassdoc="parameter-item"><td scope="row" data-label="name"><code>$count</code></td><td data-label="desc"><p>The number of repetitions</p></td><td data-label="type"><code>Integer</code></td><td data-label="default">&mdash;<span class="visually-hidden"> none</span></td></tr><tr data-sassdoc="parameter-item"><td scope="row" data-label="name"><code>$value</code></td><td data-label="desc"><p>Any value can be repeated</p></td><td data-label="type"><code>Any</code></td><td data-label="default">&mdash;<span class="visually-hidden"> none</span></td></tr></tbody></table></div></section><section data-sassdoc-item="function" id="function--susy-settings"><h3 data-sassdoc="item-title"><span data-sassdoc="item-name">susy-settings()</span> <span data-sassdoc="item-type">function</span></h3><div data-sassdoc="item-description"><p></p><p>Return a combined map of Susy settings</p><p></p></div><pre data-sassdoc="hljs"><code class="lang-scss">@function susy-settings(
Expand Down
2 changes: 1 addition & 1 deletion docs/api.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>susy Documentation</title><link href="assets/img/favicon.ico" rel="shortcut icon"><link rel="stylesheet" href="assets/css/main.css"><link rel="stylesheet" href="assets/css/theme.css"></head><body><div data-sassdoc-region="app"><header role="banner" data-sassdoc-region="banner"><h1 data-sassdoc="project-title"><a href="index.html" rel="home" data-sassdoc="project-name">susy</a> <span data-sassdoc="project-version">3.0.0-alpha.5</span></h1></header><div data-sassdoc-region="container"><nav role="navigation" data-sassdoc-region="nav"><h2 data-sassdoc="nav-title"><a href="index.html" rel="home" data-sassdoc-nav="is-not-active">StyleGuide</a></h2><a href="a-config.html" data-sassdoc-nav="is-not-active">Configuration</a> <a href="api.html" data-sassdoc-nav="is-active">Main API</a> <a href="math.html" data-sassdoc-nav="is-not-active">Core Math</a> <a href="plugin-helpers.html" data-sassdoc-nav="is-not-active">Plugin Helpers</a> <a href="plugin_svg-grid.html" data-sassdoc-nav="is-not-active">[Plugin] SVG Grid Image</a></nav><main role="main" data-sassdoc-region="main" data-sassdoc-page="api"><h2 data-sassdoc="page-title">Main API</h2><section data-sassdoc-item="function" id="function--susy-span"><h3 data-sassdoc="item-title"><span data-sassdoc="item-name">susy-span()</span> <span data-sassdoc="item-type">function</span></h3><div data-sassdoc="item-description"><p></p><p>This is the primary function in Susy — used to return the width of any grid-span — such as the <code>width</code> property of grid elements, or <code>margin</code> and <code>padding</code> to push, pull, and pad your elements (un-prefixed alias <code>span()</code> is available unless you import <code>susy/prefix</code> explicitly)</p><p></p></div><pre data-sassdoc="hljs"><code class="lang-scss">@function susy-span(
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>susy Documentation</title><link href="assets/img/favicon.ico" rel="shortcut icon"><link rel="stylesheet" href="assets/css/main.css"><link rel="stylesheet" href="assets/css/theme.css"></head><body><div data-sassdoc-region="app"><header role="banner" data-sassdoc-region="banner"><h1 data-sassdoc="project-title"><a href="index.html" rel="home" data-sassdoc="project-name">susy</a> <span data-sassdoc="project-version">3.0.0-alpha.6</span></h1></header><div data-sassdoc-region="container"><nav role="navigation" data-sassdoc-region="nav"><h2 data-sassdoc="nav-title"><a href="index.html" rel="home" data-sassdoc-nav="is-not-active">StyleGuide</a></h2><a href="a-config.html" data-sassdoc-nav="is-not-active">Configuration</a> <a href="api.html" data-sassdoc-nav="is-active">Main API</a> <a href="math.html" data-sassdoc-nav="is-not-active">Core Math</a> <a href="plugin-helpers.html" data-sassdoc-nav="is-not-active">Plugin Helpers</a> <a href="plugin_svg-grid.html" data-sassdoc-nav="is-not-active">[Plugin] SVG Grid Image</a></nav><main role="main" data-sassdoc-region="main" data-sassdoc-page="api"><h2 data-sassdoc="page-title">Main API</h2><section data-sassdoc-item="function" id="function--susy-span"><h3 data-sassdoc="item-title"><span data-sassdoc="item-name">susy-span()</span> <span data-sassdoc="item-type">function</span></h3><div data-sassdoc="item-description"><p></p><p>This is the primary function in Susy — used to return the width of any grid-span — such as the <code>width</code> property of grid elements, or <code>margin</code> and <code>padding</code> to push, pull, and pad your elements (un-prefixed alias <code>span()</code> is available unless you import <code>susy/prefix</code> explicitly)</p><p></p></div><pre data-sassdoc="hljs"><code class="lang-scss">@function susy-span(
$span,
$config: ()
) { /* ... */ }</code></pre><div data-sassdoc-display="parameter"><h5 class="item-subtitle">Parameters</h5><table data-sassdoc-table="parameter"><thead><tr scope="row"><th scope="col">name</th><th scope="col">description</th><th scope="col">type</th><th scope="col">default</th></tr></thead><tbody><tr data-sassdoc="parameter-item"><td scope="row" data-label="name"><code>$span</code></td><td data-label="desc"><p>Shorthand expression to define the width of the span, optionally containing:</p><ul><li>a count, length, or column-list span;</li><li><code>at $n</code>, <code>first</code>, or <code>last</code> location on asymmetrical grids;</li><li><code>narrow</code>, <code>wide</code>, or <code>wider</code> for optionally spreading across adjacent gutters;</li><li><code>of $n &lt;spread&gt;</code> for available grid columns and spread of the container;</li><li>and <code>set-gutters $n</code> to override global gutter settings</li></ul></td><td data-label="type"><code>List</code></td><td data-label="default">&mdash;<span class="visually-hidden"> none</span></td></tr><tr data-sassdoc="parameter-item"><td scope="row" data-label="name"><code>$config</code></td><td data-label="desc"><p>Optional map of Susy grid configuration settings</p></td><td data-label="type"><code>Map</code></td><td data-label="default"><code>()</code></td></tr></tbody></table></div><div data-sassdoc-display="require description"><h5 class="item-subtitle">Requires</h5><ul><li data-sassdoc="requires-item"><code>[function]</code> <a href="plugin-helpers.html#function--susy-compile"><code>susy-compile</code></a></li><li data-sassdoc="requires-item"><code>[function]</code> <a href="plugin-helpers.html#function--susy-call"><code>susy-call</code></a></li></ul></div><div data-sassdoc-example="simple"><div data-sassdoc="example-tabs"><span data-sassdoc="example-tab-solo">scss</span></div><div data-sassdoc-example-panel="scss"><pre data-sassdoc="hljs"><code class="lang-scss">.foo
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>susy Documentation</title><link href="assets/img/favicon.ico" rel="shortcut icon"><link rel="stylesheet" href="assets/css/main.css"><link rel="stylesheet" href="assets/css/theme.css"></head><body><div data-sassdoc-region="app"><header role="banner" data-sassdoc-region="banner"><h1 data-sassdoc="project-title"><a href="index.html" rel="home" data-sassdoc="project-name">susy</a> <span data-sassdoc="project-version">3.0.0-alpha.5</span></h1></header><div data-sassdoc-region="container"><nav role="navigation" data-sassdoc-region="nav"><h2 data-sassdoc="nav-title"><a href="index.html" rel="home" data-sassdoc-nav="is-active">StyleGuide</a></h2><a href="a-config.html" data-sassdoc-nav="is-not-active">Configuration</a> <a href="api.html" data-sassdoc-nav="is-not-active">Main API</a> <a href="math.html" data-sassdoc-nav="is-not-active">Core Math</a> <a href="plugin-helpers.html" data-sassdoc-nav="is-not-active">Plugin Helpers</a> <a href="plugin_svg-grid.html" data-sassdoc-nav="is-not-active">[Plugin] SVG Grid Image</a></nav><main role="main" data-sassdoc-region="main" data-sassdoc-page="index"><h1 id="power-tools-for-the-web">Power Tools For The Web</h1><p><a href="https://travis-ci.org/oddbird/susy"><img src="https://travis-ci.org/oddbird/susy.png?branch=threeish" alt="Build Status"></a></p><p>Susy is an agnostic set of tools for creating powerful, custom layouts. We didn&#39;t want another grid system full of rules and restrictions — we wanted a power tool for building our own damn systems.</p><p>Version Three is trimmed down to it&#39;s most basic components — functions that can be used to build any grid system. This is truely a grids-on-demand approach, where you build your own system, and we handle the math.</p><h2 id="getting-started">Getting Started</h2><p>You can install Susy as a rubygem, npm module, bower package, or git repo.</p><pre><code>npm install susy@pre
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>susy Documentation</title><link href="assets/img/favicon.ico" rel="shortcut icon"><link rel="stylesheet" href="assets/css/main.css"><link rel="stylesheet" href="assets/css/theme.css"></head><body><div data-sassdoc-region="app"><header role="banner" data-sassdoc-region="banner"><h1 data-sassdoc="project-title"><a href="index.html" rel="home" data-sassdoc="project-name">susy</a> <span data-sassdoc="project-version">3.0.0-alpha.6</span></h1></header><div data-sassdoc-region="container"><nav role="navigation" data-sassdoc-region="nav"><h2 data-sassdoc="nav-title"><a href="index.html" rel="home" data-sassdoc-nav="is-active">StyleGuide</a></h2><a href="a-config.html" data-sassdoc-nav="is-not-active">Configuration</a> <a href="api.html" data-sassdoc-nav="is-not-active">Main API</a> <a href="math.html" data-sassdoc-nav="is-not-active">Core Math</a> <a href="plugin-helpers.html" data-sassdoc-nav="is-not-active">Plugin Helpers</a> <a href="plugin_svg-grid.html" data-sassdoc-nav="is-not-active">[Plugin] SVG Grid Image</a></nav><main role="main" data-sassdoc-region="main" data-sassdoc-page="index"><h1 id="power-tools-for-the-web">Power Tools For The Web</h1><p><a href="https://travis-ci.org/oddbird/susy"><img src="https://travis-ci.org/oddbird/susy.png?branch=threeish" alt="Build Status"></a></p><p>Susy is an agnostic set of tools for creating powerful, custom layouts. We didn&#39;t want another grid system full of rules and restrictions — we wanted a power tool for building our own damn systems.</p><p>Version Three is trimmed down to it&#39;s most basic components — functions that can be used to build any grid system. This is truely a grids-on-demand approach, where you build your own system, and we handle the math.</p><h2 id="getting-started">Getting Started</h2><p>You can install Susy as a rubygem, npm module, bower package, or git repo.</p><pre><code>npm install susy@pre
</code></pre><p>There are two imports to choose from. The default <code>sass/susy</code> comes with un-prefixed versions of the core API functions. If you want Susy to be name-spaced, import <code>sass/prefix</code> instead.</p><pre><code class="lang-scss">// un-prefixed api functions
@import &#39;&lt;path-to&gt;/susy/sass/susy&#39;;

Expand Down
2 changes: 1 addition & 1 deletion docs/math.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>susy Documentation</title><link href="assets/img/favicon.ico" rel="shortcut icon"><link rel="stylesheet" href="assets/css/main.css"><link rel="stylesheet" href="assets/css/theme.css"></head><body><div data-sassdoc-region="app"><header role="banner" data-sassdoc-region="banner"><h1 data-sassdoc="project-title"><a href="index.html" rel="home" data-sassdoc="project-name">susy</a> <span data-sassdoc="project-version">3.0.0-alpha.5</span></h1></header><div data-sassdoc-region="container"><nav role="navigation" data-sassdoc-region="nav"><h2 data-sassdoc="nav-title"><a href="index.html" rel="home" data-sassdoc-nav="is-not-active">StyleGuide</a></h2><a href="a-config.html" data-sassdoc-nav="is-not-active">Configuration</a> <a href="api.html" data-sassdoc-nav="is-not-active">Main API</a> <a href="math.html" data-sassdoc-nav="is-active">Core Math</a> <a href="plugin-helpers.html" data-sassdoc-nav="is-not-active">Plugin Helpers</a> <a href="plugin_svg-grid.html" data-sassdoc-nav="is-not-active">[Plugin] SVG Grid Image</a></nav><main role="main" data-sassdoc-region="main" data-sassdoc-page="math"><h2 data-sassdoc="page-title">Core Math</h2><section data-sassdoc-item="function" id="function--su-span"><h3 data-sassdoc="item-title"><span data-sassdoc="item-name">su-span()</span> <span data-sassdoc="item-type">function</span></h3><div data-sassdoc="item-description"><p></p><p>Return a usable span width in either relative or static units</p><p></p></div><pre data-sassdoc="hljs"><code class="lang-scss">@function su-span(
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>susy Documentation</title><link href="assets/img/favicon.ico" rel="shortcut icon"><link rel="stylesheet" href="assets/css/main.css"><link rel="stylesheet" href="assets/css/theme.css"></head><body><div data-sassdoc-region="app"><header role="banner" data-sassdoc-region="banner"><h1 data-sassdoc="project-title"><a href="index.html" rel="home" data-sassdoc="project-name">susy</a> <span data-sassdoc="project-version">3.0.0-alpha.6</span></h1></header><div data-sassdoc-region="container"><nav role="navigation" data-sassdoc-region="nav"><h2 data-sassdoc="nav-title"><a href="index.html" rel="home" data-sassdoc-nav="is-not-active">StyleGuide</a></h2><a href="a-config.html" data-sassdoc-nav="is-not-active">Configuration</a> <a href="api.html" data-sassdoc-nav="is-not-active">Main API</a> <a href="math.html" data-sassdoc-nav="is-active">Core Math</a> <a href="plugin-helpers.html" data-sassdoc-nav="is-not-active">Plugin Helpers</a> <a href="plugin_svg-grid.html" data-sassdoc-nav="is-not-active">[Plugin] SVG Grid Image</a></nav><main role="main" data-sassdoc-region="main" data-sassdoc-page="math"><h2 data-sassdoc="page-title">Core Math</h2><section data-sassdoc-item="function" id="function--su-span"><h3 data-sassdoc="item-title"><span data-sassdoc="item-name">su-span()</span> <span data-sassdoc="item-type">function</span></h3><div data-sassdoc="item-description"><p></p><p>Return a usable span width in either relative or static units</p><p></p></div><pre data-sassdoc="hljs"><code class="lang-scss">@function su-span(
$span,
$columns,
$gutters,
Expand Down

0 comments on commit e19e16f

Please sign in to comment.