find_single(scope, options)
Find a single resource from the default URL
# File activeresource/lib/active_resource/base.rb, line 473 def find_single(scope, options) prefix_options, query_options = split_options(options[:params]) path = element_path(scope, prefix_options, query_options) instantiate_record(connection.get(path, headers), prefix_options) end