Skip to content

Instantly share code, notes, and snippets.

@delano
Created August 20, 2008 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delano/6435 to your computer and use it in GitHub Desktop.
Save delano/6435 to your computer and use it in GitHub Desktop.
# where args is a hash of URI parameters
def initialize(args = {})
unless args.empty?
# I want to avoid doing this
#self.title = args[:title]
#self.uri = args[:uri]
# and check the parameters names dynamically
args.each do |n,v|
# here I want to call self.somemethod
# where somemethod is the value of 'n'
# i.e. if n == 'title' I want to call self.title = v
end
end
self.clean!
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment