1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00

moar fixes

This commit is contained in:
Thomas Reynolds 2011-09-16 10:16:23 -07:00
parent 61d7e8abed
commit e125fc67b3
7 changed files with 12 additions and 17 deletions

View file

@ -1,3 +1,10 @@
2.0.9
=====
- Added --glob option to build which only builds matching files
- Allow data/ files to be in JSON format as well
- Enabled Liquid {% include %} tag
- RubyInstaller-specific gem
2.0.8
=====
- Support accessing variables and data objects in ERb Sprockets files (library.js.coffee.erb)

View file

@ -12,7 +12,7 @@ module Middleman
destination = args.first || source
# source = File.expand_path(find_in_source_paths(source.to_s))
context = instance_eval('binding')
# context = instance_eval('binding')
request_path = destination.sub(/^#{SHARED_SERVER.build_dir}/, "")

View file

@ -1,2 +0,0 @@
require 'middleman'
run Middleman.server

View file

@ -76,6 +76,7 @@ module Middleman::CoreExtensions::Compass
build_root = File.basename(self.build_dir)
config.css_dir = File.join(build_root, self.css_dir)
config.images_dir = File.join(build_root, self.images_dir)
config.fonts_dir = File.join(build_root, self.fonts_dir)
end
end

View file

@ -1,11 +0,0 @@
module Middleman::Features::TinySrc
class << self
def registered(app)
app.register_asset_handler :tiny_src do |path, prefix, request|
original_output = app.before_asset_handler(:tiny_src, path, prefix, request)
"http://i.tinysrc.mobi/#{original_output}"
end
end
alias :included :registered
end
end