compass 0.10.0.pre8 → 0.10.0.pre9

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.
@@ -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
- 8327f633ea30490b9a21c1bc514e05ca3c1d4122
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
 
@@ -2,4 +2,4 @@
2
2
  :patch: 0
3
3
  :major: 0
4
4
  :minor: 10
5
- :build: pre8
5
+ :build: pre9
@@ -13,5 +13,5 @@
13
13
  // @private This mixin is not meant to be used directly.
14
14
  =hacked-minimum(!property, !value)
15
15
  min-#{!property}= !value
16
- +bang-hack(!property, !value, 'auto')
16
+ +bang-hack(!property, !value, "auto")
17
17
 
@@ -10,7 +10,7 @@
10
10
  padding: 0px
11
11
  display: inline
12
12
 
13
- // makes an inlin list that is comma delimited.
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
- def readint; (readchar << 8) + readchar; end
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, readchar, readint, readint, readchar]; end
79
+ def readsof; [readint, readbyte, readint, readint, readbyte]; end
77
80
  def next
78
- c = readchar while c != 0xFF
79
- c = readchar while c == 0xFF
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
- - pre8
10
- version: 0.10.0.pre8
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-02-23 00:00:00 -08:00
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: false
524
+ has_rdoc: true
525
525
  homepage: http://compass-style.org
526
526
  licenses: []
527
527