Sha256: 1587b0817d434343d975033587f6a62d8190878d91c29d79a33186deb32d8001

Contents?: true

Size: 1.54 KB

Versions: 1

Compression:

Stored size: 1.54 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'taric/version'

Gem::Specification.new do |spec|
  spec.name          = "taric"
  spec.version       = Taric::VERSION
  spec.authors       = ["Joseph Yi"]
  spec.email         = ["dissonance@gmail.com"]
  #
  # if spec.respond_to?(:metadata)
  #   spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com' to prevent pushes to rubygems.org, or delete to allow pushes to any server."
  # end

  spec.summary       = %q{Riot Games LoL Api Client}
  spec.description   = %q{Riot Games LoL Api Client.}
  spec.homepage      = "http://github.com/crapg"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.files += Dir.glob("lib/**/*.rb")
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.8"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency 'webmock', '~> 1.20'
  spec.add_development_dependency 'rspec', '~> 3.2'

  spec.add_dependency 'faraday', "~> 0.9"
  spec.add_dependency 'typhoeus', "~> 0.3"
  spec.add_runtime_dependency 'memoist', '~> 0.11'
  spec.add_runtime_dependency('addressable', '~> 2.3')
  spec.add_runtime_dependency('faraday_middleware', '~> 0.9')
  spec.add_runtime_dependency('hashie',  '~> 3.4')
  spec.add_runtime_dependency('multi_json',  '~> 1.1')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
taric-0.1.0 taric.gemspec