Sha256: db0c554b3c9115debb3819967113f4f243e4caf2e755b7ec5295e88d80b01ccd
Contents?: true
Size: 1.16 KB
Versions: 3
Compression:
Stored size: 1.16 KB
Contents
lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "oauth2_api_client/version" Gem::Specification.new do |spec| spec.name = "oauth2_api_client" spec.version = Oauth2ApiClient::VERSION spec.authors = ["Benjamin Vetter"] spec.email = ["vetter@flakks.com"] spec.description = "Small but powerful client around oauth2 and http-rb to interact with APIs" spec.summary = "Small but powerful client around oauth2 and http-rb to interact with APIs" spec.homepage = "https://github.com/mrkamel/oauth2_api_client" spec.license = "MIT" spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler" spec.add_development_dependency "rspec" spec.add_development_dependency "rubocop" spec.add_development_dependency "timecop" spec.add_development_dependency "webmock" spec.add_dependency "activesupport" spec.add_dependency "http" spec.add_dependency "oauth2", ">= 1.4.2" spec.add_dependency "ruby2_keywords" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
oauth2_api_client-3.3.0 | oauth2_api_client.gemspec |
oauth2_api_client-3.2.1 | oauth2_api_client.gemspec |
oauth2_api_client-3.2.0 | oauth2_api_client.gemspec |