Project

nike_plus

0.01
No commit activity in last 3 years
No release in over 3 years
Ruby library for accessing Nike+ data
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.1.3
~> 1.8.4
~> 3.12

Runtime

~> 1.2.0
~> 1.7.3
~> 2.5.1
 Project Readme

NikePlus

A Ruby library for accessing Nike+ data.

Installation

gem install nike_plus

Documentation

http://rdoc.info/gems/nike_plus

Usage Example

nike = NikePlus::Client.new( :email => 'test@nikeplus.com', :password => 'mypassword' )

list = nike.activities

list.each do |summary|
  activity = nike.activity( summary.activityId )

  puts "name      : #{ activity.name }"
  puts "distance  : #{ activity.miles } miles"
  puts "pace      : #{ activity.mpm } min/mile"
  puts "waypoints : #{ activity.geo.waypoints.size } points" if activity.geo.waypoints.any?
end

Contributing

In the spirit of free software, everyone is encouraged to help improve this project.

Here are some ways you can contribute:

  • by using alpha, beta, and prerelease versions
  • by reporting bugs
  • by suggesting new features
  • by writing or editing documentation
  • by writing specifications
  • by writing code (no patch is too small: fix typos, add comments, clean up inconsistent whitespace)
  • by refactoring code
  • by fixing issues
  • by reviewing patches

Copyright

Copyright (c) 2012 Adam Roth See LICENSE for details.