class ADSL::Extract::Rails::MetaUnknown

Public Instance Methods

adsl_ast() click to toggle source
# File lib/adsl/extract/rails/other_meta.rb, line 27
def adsl_ast
  nil
end
method_missing(method, *args, &block) click to toggle source
# File lib/adsl/extract/rails/other_meta.rb, line 15
def method_missing(method, *args, &block)
  self
end
respond_to?(method_name, *args, &block) click to toggle source
# File lib/adsl/extract/rails/other_meta.rb, line 19
def respond_to?(method_name, *args, &block)
  return true unless method_name == :adsl_ast
end
to_s() click to toggle source
# File lib/adsl/extract/rails/other_meta.rb, line 23
def to_s
  self.class.name
end