lib/totter/client/configuration.rb in totter-0.2.14 vs lib/totter/client/configuration.rb in totter-0.3.0
- old
+ new
@@ -6,19 +6,19 @@
#
# @return [Hashie::Mash] A hash of configuration data.
# @example
# Totter.configuration
def configuration
- get 'configuration'
+ get('configuration').body
end
# Get the featured timelines and users for Explore.
#
# @return [Hashie::Mash] A hash of timelines and users data.
# @example
# Totter.explore
def explore
- get 'explore'
+ get('explore').body
end
end
end
end