lib/stratify-gowalla/collector.rb in stratify-gowalla-0.1.3 vs lib/stratify-gowalla/collector.rb in stratify-gowalla-0.1.4
- old
+ new
@@ -1,20 +1,22 @@
-require 'stratify-gowalla/query'
-
module Stratify
module Gowalla
class Collector < Stratify::Collector
source "Gowalla"
configuration_fields :username => {:type => :string},
:password => {:type => :password}
- def activities
- query.activities
- end
+ configuration_instructions %q[
+ Gowalla shut down on March 11, 2012. As such, there is longer any checkin data to be collected.
- def query
- Stratify::Gowalla::Query.new(username, password)
+ This collector remains a part of Stratify soley for the purpose of accessing historical checkins collected while Gowalla was still active.
+
+ If you're a Foursquare user, be sure to take a look at the Foursquare collector for capturing your checkin data.
+ ]
+
+ def activities
+ []
end
end
end
end