stipe 0.0.2.2 → 0.0.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/readme.md ADDED
@@ -0,0 +1,12 @@
1
+ #Stipe Compass Extension
2
+ Stipe is the life blood of the Toadstool style guide framework. Consisting of a series of mixins, extends and defaults that give Toadstool that 'instant on' experience.
3
+
4
+ [Stipe](https://rubygems.org/gems/stipe)
5
+
6
+ ##To install
7
+ `gem install stipe`
8
+
9
+ ##To use
10
+ To use the Stipe gem, using Bundler `gem 'stipe'`
11
+
12
+ Stipe is a Compass Extension, so Compass is set as a depdency. You will need to include `require 'stipe'` in your config.rb file.
@@ -1,8 +1,6 @@
1
1
  // Use "!optional" flag of silent extend is allowed to fail
2
2
  // example: "@extend %minimal !optional"
3
3
 
4
-
5
-
6
4
  //* Generic global UI objects */
7
5
  //* ------------------------- */
8
6
  %clearfix {
@@ -11,6 +11,7 @@
11
11
 
12
12
  // Following sequence will load the necessary Stipe libraries
13
13
  // ------------------------------------------------------------------------------
14
+ @import "stipe/media";
14
15
  @import "stipe/stipe";
15
16
  @import "stipe/media";
16
17
  @import "stipe/typography";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stipe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2.2
4
+ version: 0.0.2.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -50,7 +50,7 @@ executables: []
50
50
  extensions: []
51
51
  extra_rdoc_files: []
52
52
  files:
53
- - README.md
53
+ - readme.md
54
54
  - lib/stipe.rb
55
55
  - stylesheets/stipe/_stipe.scss
56
56
  - stylesheets/stipe/buttons/lib/_minimal.scss
data/README.md DELETED
@@ -1,13 +0,0 @@
1
- #Stipe Compass Extension
2
- While developing the Toadstool Styleguide framework I realized that we were beginning to build a core series of mixins. It is this core that is the constant between deployments of the Toadstool framework. To better manage this we are in the process of treating this library as a Compass extension and soon to be gem.
3
-
4
- ##Please don't mind the mess ...
5
- This is a work in progress, if you are following along at home, pull master a lot :D
6
-
7
- This project is in rapid development Stipe has not yet been processed into a Gem. Until such time, you need to clone the Stipe project into a sibling directory from the Toadstool project.
8
-
9
- projects
10
- -- stipe
11
- -- toadstool
12
-
13
- To make use of the Stipe gem in it's interim state, there is a secondary `Gemfile.local` file that contains a route to the in-development Stipe library. Using Bundler, run this command `bundle --gemfile Gemfile.local`