Sha256: 218ad19de06c15edbedd843c73faf86c1c72f37f72ff29e35abe7ac9c3548c21
Contents?: true
Size: 449 Bytes
Versions: 7
Compression:
Stored size: 449 Bytes
Contents
# frozen_string_literal: true module Strava module Api module Endpoints module Gears # # Returns an equipment using its identifier. # # @option options [String] :id # Gear id. # def gear(id_or_options, options = {}) id, options = parse_args(id_or_options, options) Strava::Models::Gear.new(get("gear/#{id}", options)) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems