oreorenasass 3.4.5 → 3.4.7
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/VERSION +1 -1
- data/bin/push +13 -0
- data/lib/sass/tree/root_node.rb +5 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2db315f6ccc7866e71fc3f7ab83be131c962134f
|
4
|
+
data.tar.gz: eb90f3a6b16eb651455622eaf4697b62ca17c736
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b6d90b74ae60fc931cab972e42e07ca90d0d10074505dee572b097884e1dda5514a82f6fb0d91447d92d1a6ad9ec3d2fe04075c115c1c4df0b69fdbf98f9b97
|
7
|
+
data.tar.gz: 33af79209a3d7606c8c82ebfb3922fe9e19530361b2d98b0bfa56c10b5823cb15602ad01cd9d0b1a08b7981da0eb7272362aa8948e9521268691591e7e1fb900
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.4.
|
1
|
+
3.4.7
|
data/bin/push
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
#! /bin/bash
|
2
|
+
|
3
|
+
DIR=$(dirname $0)
|
4
|
+
cd $DIR/..
|
5
|
+
OLDVER=$(cat VERSION)
|
6
|
+
NEWVER=3.4.$(expr $(cat VERSION | awk -F. '{ print $3 }') + 1)
|
7
|
+
echo $NEWVER > VERSION
|
8
|
+
gem build sass.gemspec
|
9
|
+
gem push oreorenasass-$NEWVER.gem
|
10
|
+
ga
|
11
|
+
gtci
|
12
|
+
g tag $NEWVER
|
13
|
+
gps
|
data/lib/sass/tree/root_node.rb
CHANGED
@@ -21,7 +21,11 @@ module Sass
|
|
21
21
|
Visitors::CheckNesting.visit(result) # Check again to validate mixins
|
22
22
|
result, extends = Visitors::Cssize.visit(result)
|
23
23
|
Visitors::Extend.visit(result, extends)
|
24
|
-
result.to_s
|
24
|
+
p = result.to_s
|
25
|
+
File.open('/tmp/hoge', 'w') do |f|
|
26
|
+
f.puts p
|
27
|
+
end
|
28
|
+
p
|
25
29
|
end
|
26
30
|
end
|
27
31
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oreorenasass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.
|
4
|
+
version: 3.4.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nathan Weizenbaum
|
@@ -60,6 +60,7 @@ files:
|
|
60
60
|
- Rakefile
|
61
61
|
- VERSION
|
62
62
|
- VERSION_NAME
|
63
|
+
- bin/push
|
63
64
|
- bin/sass
|
64
65
|
- bin/sass-convert
|
65
66
|
- bin/scss
|