Commit 96f66caf6670ce2f7e0fd775228bac5bc8e98868

Authored by Evandro Junior
1 parent 7fd65142
Exists in master

new tweeter token added

tweeter_stream/config/twurlrc_mariajoseopinto 0 → 100644
... ... @@ -0,0 +1,13 @@
  1 +---
  2 +profiles:
  3 + evandro:
  4 + c7dZNecaM2gF5Jx0bRHxocLmv:
  5 + token: 8601482-SnlTsySr3ULpnWgjhlCys2s4RzfIu1dgxxiNHKS4Lr
  6 + consumer_key: c7dZNecaM2gF5Jx0bRHxocLmv
  7 + username: evandro
  8 + consumer_secret: uDIuSmCJaCgDMk1uuumaibzBQk4imlw4g9IdpVtC7Xo3Jj6mog
  9 + secret: adEJxbubtrGPsrU7VRIO7pv3ebvnYURsAytNMF2BtexVt
  10 +configuration:
  11 + default_profile:
  12 + - evandro
  13 + - c7dZNecaM2gF5Jx0bRHxocLmv
... ...
tweeter_stream/lib/twurl/request_controller.rb
... ... @@ -16,7 +16,7 @@ module Twurl
16 16 def perform_request
17 17 client.perform_request_from_options(options) { |response|
18 18 chunk_begining = ""
19   - puts "Connecting to tweeter stream : " + response.inspect
  19 + puts "Connecting to tweeter stream: " + response.inspect
20 20 response.read_body { |chunk|
21 21 chunk = chunk_begining + chunk
22 22 chunk_complete = false
... ...