Sha256: 3e793304ffa4c39cb16e15093e12c91dc33dde6722711b63a748da55005d3664

Contents?: true

Size: 1.22 KB

Versions: 5

Compression:

Stored size: 1.22 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.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  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"
  spec.add_dependency "ruby2_keywords"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
oauth2_api_client-3.1.0 oauth2_api_client.gemspec
oauth2_api_client-3.0.0 oauth2_api_client.gemspec
oauth2_api_client-2.1.0 oauth2_api_client.gemspec
oauth2_api_client-2.0.0 oauth2_api_client.gemspec
oauth2_api_client-1.0.0 oauth2_api_client.gemspec