chriseppstein-compass 0.8.4 → 0.8.5

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.markdown CHANGED
@@ -1,6 +1,12 @@
1
1
  COMPASS CHANGELOG
2
2
  =================
3
3
 
4
+ 0.8.5 (July 06, 2009)
5
+ ---------------------
6
+
7
+ The Compass::TestCase class now inherits from ActiveSupport::TestCase if it exists.
8
+ [Commit](http://github.com/chriseppstein/compass/commit/71d5ae8544d1c5ae49e28dcd6b3768fc39d7f01c)
9
+
4
10
  0.8.4 (July 06, 2009)
5
11
  ---------------------
6
12
 
data/REVISION CHANGED
@@ -1 +1 @@
1
- cbc90aace45b6f75187a17d5519b650734ab1632
1
+ cf604fac4e249afcc527cef446b8438297bd8a73
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
- :patch: 4
2
+ :patch: 5
3
3
  :major: 0
4
4
  :minor: 8
@@ -15,8 +15,10 @@ module Compass
15
15
  # Dir.glob(File.expand_path(File.join(File.dirname(__FILE__), "../..", "app/stylesheets/**/[^_]*.sass")))
16
16
  # end
17
17
  # end
18
- class TestCase < Test::Unit::TestCase
18
+ class TestCase < (defined?(ActiveSupport::TestCase) ? ActiveSupport::TestCase : Test::Unit::TestCase)
19
+
19
20
  def setup
21
+ super
20
22
  @last_compile = nil
21
23
  end
22
24
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chriseppstein-compass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.4
4
+ version: 0.8.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Eppstein