# File lib/twitter/client/profile.rb, line 20 def profile(action, attributes) connection = create_http_connection connection.start do |connection| response = http_connect(attributes.to_http_str) do |conn| create_http_post_request(@@PROFILE_URIS[action]) end bless_models(Twitter::User.unmarshal(response.body)) end end