SassyIcons 0.0.9 → 0.0.10
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.
- checksums.yaml +4 -4
- data/README.md +6 -0
- data/lib/SassyIcons.rb +1 -1
- data/stylesheets/icons/_icon-single.scss +2 -0
- data/stylesheets/icons/_icon.scss +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10e92bd647200dba94cad0c3dff8cbc8b8294573
|
4
|
+
data.tar.gz: f4a6cf6ea8a8c1e7603545473d16671187896c96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 866eadb6b258f1dfafeffab20aac77c5844866b3c6090e8a4234e3f6b563b413e493b4a4b9c433d7b524fe7abaa6c686d616b53f1c0f2701f67fb797ff4263ad
|
7
|
+
data.tar.gz: 6acd1406ac4acc9336f1cd062d61ea82ff997986d7e943d8ebb3c63bc5371abb519d61b352c2c39e1dd2208dfbe566963829ce4ad2bb3afec5df72b59632e174
|
data/README.md
CHANGED
@@ -105,6 +105,12 @@ npm install sassyicons --save
|
|
105
105
|
bower install SassyIcons --save
|
106
106
|
```
|
107
107
|
|
108
|
+
#### Compass extension
|
109
|
+
|
110
|
+
1. `bundle install SassyIcons` or `gem install SassyIcons`
|
111
|
+
2. Add `require 'SassyIcons'` to your `config.rb`
|
112
|
+
3. Import it in your stylesheets with `@import 'SassyIcons'`
|
113
|
+
|
108
114
|
|
109
115
|
## Usage
|
110
116
|
|
data/lib/SassyIcons.rb
CHANGED
@@ -6,7 +6,7 @@ Compass::Frameworks.register('SassyIcons', :path => extension_path)
|
|
6
6
|
# Version is a number. If a version contains alphas, it will be created as a prerelease version
|
7
7
|
# Date is in the form of YYYY-MM-DD
|
8
8
|
module SassyIcons
|
9
|
-
VERSION = "0.0.
|
9
|
+
VERSION = "0.0.10"
|
10
10
|
DATE = "2014-06-09"
|
11
11
|
end
|
12
12
|
|