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 +6 -0
- data/REVISION +1 -1
- data/VERSION.yml +1 -1
- data/lib/compass/test_case.rb +3 -1
- metadata +1 -1
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
|
-
|
1
|
+
cf604fac4e249afcc527cef446b8438297bd8a73
|
data/VERSION.yml
CHANGED
data/lib/compass/test_case.rb
CHANGED
@@ -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
|
|