lib/locomotive/steam/monkey_patches/mounter.rb in locomotivecms_steam-0.1.0 vs lib/locomotive/steam/monkey_patches/mounter.rb in locomotivecms_steam-0.1.1
- old
+ new
@@ -1,5 +1,7 @@
+require 'locomotive/mounter'
+
module Locomotive
module Mounter
module Models
class Page
@@ -25,8 +27,28 @@
::Liquid::Template.parse(self.template.raw_source, options)
end
end
end
+ end
+
+ module Reader
+ module FileSystem
+ class Runner
+
+ def new_mounting_point(host)
+ self.mounting_point
+ end
+
+ end
+ end
+ end
+
+ class MountingPoint
+
+ def assets_path
+ File.join(self.path, 'public')
+ end
+
end
end
end
\ No newline at end of file