Method: Meteor::ParserFactory#bind_str
- Defined in:
- lib/meteor.rb
#bind_str(type, relative_url, doc) ⇒ Meteor::Parser #bind_str(relative_url, doc) ⇒ Meteor::Parser Also known as: paraser_str
1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 |
# File 'lib/meteor.rb', line 1185 def bind_str(*args) case args.length when 2 bind_str_2(args[0],args[1]) when 3 bind_str_3(args[0],args[1],args[2]) else raise ArgumentError end end |