middleman 0.10.12 → 0.10.13

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.10.12
1
+ 0.10.13
@@ -4,7 +4,8 @@ class Middleman::Base
4
4
  after_feature_init do
5
5
  ::Compass.configuration do |config|
6
6
  config.asset_cache_buster do |path, real_path|
7
- # real_path = real_path.gsub(self.build_dir, self.public)
7
+ real_path = real_path.path if real_path.is_a? File
8
+ real_path = real_path.gsub(File.join(self.root, self.build_dir), self.public)
8
9
  if File.readable?(real_path)
9
10
  File.mtime(real_path).strftime("%s")
10
11
  else
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{middleman}
8
- s.version = "0.10.12"
8
+ s.version = "0.10.13"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Thomas Reynolds"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.12
4
+ version: 0.10.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Reynolds