sass 3.3.0.alpha.212 → 3.3.0.alpha.213
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +12 -0
- data/REVISION +1 -1
- data/VERSION +1 -1
- data/VERSION_DATE +1 -1
- metadata +4 -5
- data/test/Gemfile +0 -3
data/README.md
CHANGED
@@ -171,6 +171,18 @@ When converting from CSS to Sass or SCSS,
|
|
171
171
|
nesting is applied where appropriate.
|
172
172
|
See `sass-convert --help` for further information and options.
|
173
173
|
|
174
|
+
### Running locally
|
175
|
+
|
176
|
+
To run the Sass executables from a source checkout instead of from rubygems:
|
177
|
+
|
178
|
+
```
|
179
|
+
$ cd <SASS_CHECKOUT_DIRECTORY>
|
180
|
+
$ bundle
|
181
|
+
$ bundle exec sass ...
|
182
|
+
$ bundle exec scss ...
|
183
|
+
$ bundle exec sass-convert ...
|
184
|
+
```
|
185
|
+
|
174
186
|
## Authors
|
175
187
|
|
176
188
|
Sass was envisioned by [Hampton Catlin](http://www.hamptoncatlin.com)
|
data/REVISION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
829c3f4b9d25e071cd3f0d101baa2bbc2608c9d5
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.3.0.alpha.
|
1
|
+
3.3.0.alpha.213
|
data/VERSION_DATE
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
26 July 2013 19:17:22 GMT
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 592302759
|
5
5
|
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 3
|
9
9
|
- 0
|
10
10
|
- alpha
|
11
|
-
-
|
12
|
-
version: 3.3.0.alpha.
|
11
|
+
- 213
|
12
|
+
version: 3.3.0.alpha.213
|
13
13
|
platform: ruby
|
14
14
|
authors:
|
15
15
|
- Nathan Weizenbaum
|
@@ -19,7 +19,7 @@ autorequire:
|
|
19
19
|
bindir: bin
|
20
20
|
cert_chain: []
|
21
21
|
|
22
|
-
date: 2013-07-
|
22
|
+
date: 2013-07-26 00:00:00 -04:00
|
23
23
|
default_executable:
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
@@ -199,7 +199,6 @@ files:
|
|
199
199
|
- bin/sass
|
200
200
|
- bin/sass-convert
|
201
201
|
- bin/scss
|
202
|
-
- test/Gemfile
|
203
202
|
- test/Gemfile.lock
|
204
203
|
- test/sass/cache_test.rb
|
205
204
|
- test/sass/callbacks_test.rb
|
data/test/Gemfile
DELETED