README.rdoc in simplificator-withings-0.6.5 vs README.rdoc in simplificator-withings-0.6.6

- old
+ new

@@ -1,10 +1,15 @@ = simplificator-withings This is a ruby implementation for the Withings API. Description of the API can be found here: http://www.withings.com/en/api == Versions == + +=== 0.6.6 === + +Added list_notifications method to user. + === 0.6.3 === Fixed escaping for parameters. === 0.6.2 === @@ -105,9 +110,12 @@ Specify what devices you are interested user.subscribe_notification('http://foo.bar.com', 'test subscription', Withings::SCALE, Withings::BLOOD_PRESSURE_MONITOR) user.describe_notification('http://foo.bar.com') user.revoke_notification('http://foo.bar.com') + +List notifications is now possible + user.list_notifications And finally you can get measurements, after all this is what it's for user.measurement_groups(:per_page => 10, :page => 1, :end_at => Time.now) user.measurement_groups(:category => MeasurementGroup::CATEGORY_TARGET) user.measurement_groups(:last_updated_at => Time.at(12345))