Sha256: c61ae8e6989d0cb5ac014425939a4a6d1f426449c9e91c0d2558dc6f9b475e6b

Contents?: true

Size: 1.1 KB

Versions: 6

Compression:

Stored size: 1.1 KB

Contents

module Strava
  module Api
    module Endpoints
      module Athletes
        #
        # Returns the currently authenticated athlete.
        #
        def athlete
          Strava::Models::Athlete.new(get('athlete'))
        end

        #
        # Returns the the authenticated athlete's heart rate and power zones.
        #
        def athlete_zones(options = {})
          Strava::Models::Zones.new(get('athlete/zones', options))
        end

        #
        # Returns the activity stats of an athlete.
        #
        # @option options [String] :id
        #   Athlete id.
        #
        def athlete_stats(id_or_options, options = {})
          id, options = parse_args(id_or_options, options)
          Strava::Models::ActivityStats.new(get("athletes/#{id}/stats", options))
        end

        #
        # Update the currently authenticated athlete.
        #
        # @option options [Float] :weight
        #   The weight of the athlete in kilograms.
        #
        def update_athlete(options = {})
          Strava::Models::Athlete.new(put('athlete', options))
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
strava-ruby-client-0.4.2 lib/strava/api/endpoints/athletes.rb
strava-ruby-client-0.4.1 lib/strava/api/endpoints/athletes.rb
strava-ruby-client-0.4.0 lib/strava/api/endpoints/athletes.rb
strava-ruby-client-0.3.2 lib/strava/api/endpoints/athletes.rb
strava-ruby-client-0.3.1 lib/strava/api/endpoints/athletes.rb
strava-ruby-client-0.3.0 lib/strava/api/endpoints/athletes.rb