respondsass 0.0.2 → 0.0.3
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.
- data/README.md +34 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -21,7 +21,40 @@ Using rems with pixel fallbacks is a future friendly way to implement sizing for
|
|
21
21
|
Getting started
|
22
22
|
---------------
|
23
23
|
|
24
|
-
|
24
|
+
The easiest way to get started is to install as a Ruby gem. First make sure you have Sass and Compass installed, go to the command line (don't freak out at the command line like I used to do) and type:
|
25
|
+
|
26
|
+
sass -version
|
27
|
+
|
28
|
+
and
|
29
|
+
|
30
|
+
compass -v
|
31
|
+
|
32
|
+
If you get something like:
|
33
|
+
|
34
|
+
Sass 3.2.5 (Media Mark)
|
35
|
+
|
36
|
+
and
|
37
|
+
|
38
|
+
Compass 0.12.2 (Alnilam)
|
39
|
+
Copyright (c) 2008-2013 Chris Eppstein
|
40
|
+
Released under the MIT License.
|
41
|
+
Compass is charityware., Please make a tax deductable donation for a worthy cause: http://umdf.org/compass"
|
42
|
+
|
43
|
+
then you are all set. If not you'll need to install one or both of them. When you do have them installed getting Respondsass is as simple as this:
|
44
|
+
|
45
|
+
sudo gem install respondsass
|
46
|
+
|
47
|
+
This will install the ruby gem, now all we need is to create a project and require the respondsass framework, again this is easy. Navigate to the folder you want your project folder to be created in for example:
|
48
|
+
|
49
|
+
cd Desktop
|
50
|
+
|
51
|
+
Then simply put this (where my_project is the name of your project folder)
|
52
|
+
|
53
|
+
compass create my_project -r respondsass --using respondsass
|
54
|
+
|
55
|
+
Now your all set either just set compass of watching the folder:
|
56
|
+
|
57
|
+
compass watch my_project
|
25
58
|
|
26
59
|
Creating the grid
|
27
60
|
-----------------
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: respondsass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 3
|
10
|
+
version: 0.0.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Matt Walker
|