Skip to content

Instantly share code, notes, and snippets.

@rhysd
Created July 8, 2012 17:14
Show Gist options
  • Save rhysd/3071840 to your computer and use it in GitHub Desktop.
Save rhysd/3071840 to your computer and use it in GitHub Desktop.
yield self から instance_eval に変えると
Twitter::configure do |config|
config.consumer_key = 'piyo'
config.consumer_secret = 'poyo'
config.oauth_token = 'foo'
config.oauth_token_secret = 'bar'
end
# と書いていたのが,
Twitter::configure do
consumer_key 'piyo'
consumer_secret 'poyo'
oauth_token 'foo'
oauth_token_secret 'bar'
end
# で良くなる.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment