# File lib/twitter/client/account.rb, line 15 def account_info(type = :rate_limit_status) connection = create_http_connection connection.start do |connection| response = http_connect do |conn| create_http_get_request(@@ACCOUNT_URIS[type]) end bless_models(Twitter::RateLimitStatus.unmarshal(response.body)) end end