sprockets 2.8.0 → 2.8.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sprockets might be problematic. Click here for more details.

data/README.md CHANGED
@@ -361,6 +361,10 @@ submit a pull request.
361
361
 
362
362
  ## Version History ##
363
363
 
364
+ **2.8.1** (October 31, 2012)
365
+
366
+ * Fixed Sass importer bug
367
+
364
368
  **2.8.0** (October 16, 2012)
365
369
 
366
370
  * Allow manifest location to be seperated from output directory
@@ -153,7 +153,6 @@ module Sprockets
153
153
  else
154
154
  # Write out as is
155
155
  f.write to_s
156
- f.close
157
156
  end
158
157
  end
159
158
 
@@ -13,7 +13,7 @@ module Sprockets
13
13
  def find_relative(*args)
14
14
  engine = super
15
15
  if engine && (filename = engine.options[:filename])
16
- @context.depend_on_asset(filename)
16
+ @context.depend_on(filename)
17
17
  end
18
18
  engine
19
19
  end
@@ -21,7 +21,7 @@ module Sprockets
21
21
  def find(*args)
22
22
  engine = super
23
23
  if engine && (filename = engine.options[:filename])
24
- @context.depend_on_asset(filename)
24
+ @context.depend_on(filename)
25
25
  end
26
26
  engine
27
27
  end
@@ -1,3 +1,3 @@
1
1
  module Sprockets
2
- VERSION = "2.8.0"
2
+ VERSION = "2.8.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sprockets
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.0
4
+ version: 2.8.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-10-16 00:00:00.000000000 Z
13
+ date: 2012-10-31 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: hike