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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 43d86ae65ada6b57dc4199e4f9549b229d948a97
4
- data.tar.gz: 0d4ae59a191fae5b3bdab842b98daeec19aaa4ac
3
+ metadata.gz: 2db315f6ccc7866e71fc3f7ab83be131c962134f
4
+ data.tar.gz: eb90f3a6b16eb651455622eaf4697b62ca17c736
5
5
  SHA512:
6
- metadata.gz: 77f6e678d9ccec64f3f78ed65e0b5d740ab729b65f4cdd375a49f998e147c9481dcf0c5e92a47f174ff6d2e800937b236cf6a627e0277b0cde92c0ce92664ac1
7
- data.tar.gz: ae21995c6b87813c4ed406e984daecbf0d6043c38c98089e0761b4a67d0fef884ddbde627f71ad614685d9196bfce6ea9b6a265e0121f3325797defa09f89c7b
6
+ metadata.gz: 9b6d90b74ae60fc931cab972e42e07ca90d0d10074505dee572b097884e1dda5514a82f6fb0d91447d92d1a6ad9ec3d2fe04075c115c1c4df0b69fdbf98f9b97
7
+ data.tar.gz: 33af79209a3d7606c8c82ebfb3922fe9e19530361b2d98b0bfa56c10b5823cb15602ad01cd9d0b1a08b7981da0eb7272362aa8948e9521268691591e7e1fb900
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.4.5
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
@@ -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.5
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