stylus-source 0.35.0 → 0.35.1

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: f529f272251fe4933949d17d43dc78c934a749ca
4
- data.tar.gz: b263f5924ccf9b15a4e6da4f7fec63dfd7b50692
3
+ metadata.gz: 4e37d71d320fa2f35f1500cadc5d638e0be5c4da
4
+ data.tar.gz: f9d7a2730fd5b97bfaa07392461a972cfe28e608
5
5
  SHA512:
6
- metadata.gz: 25a354b7515a3f36860a7b5d1854a012238a184a14c5e9b9a3f29257cefbde3909b8cf20a3483646e5b87456379b39688827b9a428a49928b62a462ab0c199e8
7
- data.tar.gz: be0c2a162b859ff4805c3cc73aeb3014a4f32b6282b104cef748777d29d5a675c36669aa0166d9697bb177fcafabd08426c8015f3d25a4acad105fa898644a93
6
+ metadata.gz: 926ea4254b1308b835cc20d77b033b0c046720f6143e9f8c0910d7d866b07ab801e710d3a771c1d6910788d6b7fa858c9df37e7246d73c78573a224c69583f7f
7
+ data.tar.gz: f9ea326bcd1a14a5f4ce54300e978372104426b63acfa04939c35f1eeb1b0565f0277ac22be72111db8311487f156bd97e22741b2f188c267e02fa5576be5e0d
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.35.0
1
+ 0.35.1
@@ -115,7 +115,8 @@ Image.prototype.size = function(){
115
115
  while (offset < this.length) {
116
116
  offset += blockSize;
117
117
  if (offset >= this.length || 0xff != buf[offset]) break;
118
- if (0xc0 == buf[offset + 1]) {
118
+ // SOF0 or SOF2 (progressive)
119
+ if (0xc0 == buf[offset + 1] || 0xc2 == buf[offset + 1]) {
119
120
  height = buf[offset + 5] << 8 | buf[offset + 6];
120
121
  width = buf[offset + 7] << 8 | buf[offset + 8];
121
122
  } else {
@@ -37,5 +37,9 @@
37
37
  "url": "https://github.com/isaacs/sigmund/issues"
38
38
  },
39
39
  "_id": "sigmund@1.0.0",
40
- "_from": "sigmund@~1.0.0"
40
+ "dist": {
41
+ "shasum": "8b342a413c9a7c2c3b82a0f2ea4c56343bc4cb13"
42
+ },
43
+ "_from": "sigmund@~1.0.0",
44
+ "_resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.0.tgz"
41
45
  }
@@ -55,9 +55,5 @@
55
55
  "url": "https://github.com/visionmedia/mocha/issues"
56
56
  },
57
57
  "_id": "mocha@1.13.0",
58
- "dist": {
59
- "shasum": "029732288999afe458136028f26b6a84bf3cfffb"
60
- },
61
- "_from": "mocha@*",
62
- "_resolved": "https://registry.npmjs.org/mocha/-/mocha-1.13.0.tgz"
58
+ "_from": "mocha@*"
63
59
  }
@@ -60,9 +60,5 @@
60
60
  "url": "https://github.com/isaacs/sax-js/issues"
61
61
  },
62
62
  "_id": "sax@0.5.5",
63
- "dist": {
64
- "shasum": "8081a9f5048fea14208e3be7c10890e822ca100d"
65
- },
66
- "_from": "sax@0.5.x",
67
- "_resolved": "https://registry.npmjs.org/sax/-/sax-0.5.5.tgz"
63
+ "_from": "sax@0.5.x"
68
64
  }
@@ -38,9 +38,5 @@
38
38
  "url": "https://github.com/visionmedia/should.js/issues"
39
39
  },
40
40
  "_id": "should@2.0.1",
41
- "dist": {
42
- "shasum": "d244c90bb919f3e51dca472ef7d93c244eb7b79a"
43
- },
44
- "_from": "should@*",
45
- "_resolved": "https://registry.npmjs.org/should/-/should-2.0.1.tgz"
41
+ "_from": "should@*"
46
42
  }
data/vendor/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  { "name": "stylus"
2
2
  , "description": "Robust, expressive, and feature-rich CSS superset"
3
- , "version": "0.35.0"
3
+ , "version": "0.35.1"
4
4
  , "author": "TJ Holowaychuk <tj@vision-media.ca>"
5
5
  , "keywords": ["css", "parser", "style", "stylesheets", "jade", "language"]
6
6
  , "repository": "git://github.com/LearnBoost/stylus"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stylus-source
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.35.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk