mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
5a45acf113
Conflicts: lib/haml/util.rb
72 lines
1.6 KiB
Ruby
72 lines
1.6 KiB
Ruby
require 'erb'
|
|
require 'set'
|
|
|
|
module Haml
|
|
module Util
|
|
class << self; include Haml::Util; end
|
|
|
|
RUBY_VERSION = ::RUBY_VERSION.split(".").map {|s| s.to_i}
|
|
|
|
def to_hash(arr)
|
|
arr.compact.inject({}) {|h, (k, v)| h[k] = v; h}
|
|
end
|
|
|
|
def map_keys(hash)
|
|
to_hash(hash.map {|k, v| [yield(k), v]})
|
|
end
|
|
|
|
def map_vals(hash)
|
|
to_hash(hash.map {|k, v| [k, yield(v)]})
|
|
end
|
|
|
|
def map_hash(hash, &block)
|
|
to_hash(hash.map(&block))
|
|
end
|
|
|
|
def powerset(arr)
|
|
arr.inject([Set.new].to_set) do |powerset, el|
|
|
new_powerset = Set.new
|
|
powerset.each do |subset|
|
|
new_powerset << subset
|
|
new_powerset << subset + [el]
|
|
end
|
|
new_powerset
|
|
end
|
|
end
|
|
|
|
def ruby1_8?
|
|
Haml::Util::RUBY_VERSION[0] == 1 && Haml::Util::RUBY_VERSION[1] < 9
|
|
end
|
|
|
|
def has?(attr, klass, method)
|
|
klass.send("#{attr}s").include?(ruby1_8? ? method.to_s : method.to_sym)
|
|
end
|
|
|
|
class StaticConditionalContext
|
|
def initialize(set)
|
|
@set = set
|
|
end
|
|
|
|
def method_missing(name, *args, &block)
|
|
super unless args.empty? && block.nil?
|
|
@set.include?(name)
|
|
end
|
|
end
|
|
|
|
def def_static_method(klass, name, args, *vars)
|
|
erb = vars.pop
|
|
powerset(vars).each do |set|
|
|
context = StaticConditionalContext.new(set).instance_eval {binding}
|
|
klass.class_eval(<<METHOD)
|
|
def #{static_method_name(name, *vars.map {|v| set.include?(v)})}(#{args.join(', ')})
|
|
#{ERB.new(erb).result(context)}
|
|
end
|
|
METHOD
|
|
end
|
|
end
|
|
|
|
def static_method_name(name, *vars)
|
|
"#{name}_#{vars.map {|v| !!v}.join('_')}"
|
|
end
|
|
end
|
|
end
|