Sha256: f0353ba2cf34e89aa153fec82f5645cedc5937e0e69170924837c89d59fce6f5
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'strava/version' Gem::Specification.new do |spec| spec.name = "strava" spec.version = Strava::VERSION spec.authors = ["Paul Hoffer"] spec.email = ["git@paulhoffer.com"] spec.summary = %q{Friendly client for Strava's V3 API.} spec.description = %q{Client for Strava's V3 API, with a friendly object oriented approach to Strava resources.} spec.homepage = "https://github.com/phoffer/strava" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.14" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" spec.add_dependency "httparty", ">= 0.14.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
strava-0.1.0 | strava.gemspec |