compass 0.10.0.pre8 → 0.10.0.pre9
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.markdown +14 -0
- data/REVISION +1 -1
- data/Rakefile +3 -1
- data/VERSION.yml +1 -1
- data/frameworks/compass/stylesheets/compass/utilities/general/_min.sass +1 -1
- data/frameworks/compass/stylesheets/compass/utilities/lists/_inline_list.sass +1 -1
- data/lib/compass/sass_extensions/functions/image_size.rb +11 -6
- metadata +4 -4
data/CHANGELOG.markdown
CHANGED
@@ -1,6 +1,20 @@
|
|
1
1
|
COMPASS CHANGELOG
|
2
2
|
=================
|
3
3
|
|
4
|
+
0.10.0.pre9 (March 6, 2010)
|
5
|
+
---------------------------
|
6
|
+
|
7
|
+
* Fix a ruby 1.9 bug in the image_size helper functions for jpeg images.
|
8
|
+
* Silence a deprecation warning.
|
9
|
+
|
10
|
+
|
11
|
+
0.10.0.pre7 & 0.10.0.pre8 (February 23, 2010)
|
12
|
+
---------------------------------------------
|
13
|
+
|
14
|
+
* Rails 3 compatibility fixes
|
15
|
+
* Fix for rgba colors with the new gradient mixins
|
16
|
+
* A better error message if a color stop list is not passed in to the gradient mixins.
|
17
|
+
|
4
18
|
0.10.0.pre6 (February 22, 2010)
|
5
19
|
-------------------------------
|
6
20
|
|
data/REVISION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
f3eb23954dde3f016edcdb542ec2051ece3694a3
|
data/Rakefile
CHANGED
@@ -3,11 +3,13 @@ if ENV['RUN_CODE_RUN']
|
|
3
3
|
if File.directory?("haml")
|
4
4
|
Dir.chdir("haml") do
|
5
5
|
sh "git", "fetch"
|
6
|
-
sh "git", "reset", "--hard", "origin/stable"
|
7
6
|
end
|
8
7
|
else
|
9
8
|
sh "git", "clone", "git://github.com/nex3/haml.git"
|
10
9
|
end
|
10
|
+
Dir.chdir("haml") do
|
11
|
+
sh "git", "reset", "--hard", "origin/stable"
|
12
|
+
end
|
11
13
|
$LOAD_PATH.unshift "haml/lib"
|
12
14
|
end
|
13
15
|
|
data/VERSION.yml
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
padding: 0px
|
11
11
|
display: inline
|
12
12
|
|
13
|
-
// makes an
|
13
|
+
// makes an inline list that is comma delimited.
|
14
14
|
// use of this recipe is not recommended at this time due to browser support issues.
|
15
15
|
//
|
16
16
|
// use of :content and :after is not fully supported in all browsers.
|
@@ -68,19 +68,24 @@ private
|
|
68
68
|
|
69
69
|
private
|
70
70
|
def examine(io)
|
71
|
-
raise 'malformed JPEG' unless io.getc == 0xFF && io.getc == 0xD8 # SOI
|
72
|
-
|
73
71
|
class << io
|
74
|
-
|
72
|
+
unless method_defined?(:readbyte)
|
73
|
+
def readbyte
|
74
|
+
getc
|
75
|
+
end
|
76
|
+
end
|
77
|
+
def readint; (readbyte << 8) + readbyte; end
|
75
78
|
def readframe; read(readint - 2); end
|
76
|
-
def readsof; [readint,
|
79
|
+
def readsof; [readint, readbyte, readint, readint, readbyte]; end
|
77
80
|
def next
|
78
|
-
c =
|
79
|
-
c =
|
81
|
+
c = readbyte while c != 0xFF
|
82
|
+
c = readbyte while c == 0xFF
|
80
83
|
c
|
81
84
|
end
|
82
85
|
end
|
83
86
|
|
87
|
+
raise 'malformed JPEG!' unless io.readbyte == 0xFF && io.readbyte == 0xD8 # SOI
|
88
|
+
|
84
89
|
while marker = io.next
|
85
90
|
case marker
|
86
91
|
when 0xC0..0xC3, 0xC5..0xC7, 0xC9..0xCB, 0xCD..0xCF # SOF markers
|
metadata
CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
|
|
6
6
|
- 0
|
7
7
|
- 10
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.10.0.
|
9
|
+
- pre9
|
10
|
+
version: 0.10.0.pre9
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Chris Eppstein
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-03-06 00:00:00 -08:00
|
19
19
|
default_executable: compass
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -521,7 +521,7 @@ files:
|
|
521
521
|
- test/test_case_helper.rb
|
522
522
|
- test/test_helper.rb
|
523
523
|
- test/test_rails_helper.rb
|
524
|
-
has_rdoc:
|
524
|
+
has_rdoc: true
|
525
525
|
homepage: http://compass-style.org
|
526
526
|
licenses: []
|
527
527
|
|