Created
July 8, 2012 17:14
-
-
Save rhysd/3071840 to your computer and use it in GitHub Desktop.
yield self から instance_eval に変えると
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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