Sha256: 969f2cbb8a576037acaf4702bc2265de69ad98568212a024f6461de640930e01

Contents?: true

Size: 1.13 KB

Versions: 1

Compression:

Stored size: 1.13 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'devrant'
  spec.version       = Devrant::VERSION
  spec.authors       = ['Alex Dovzhanyn']
  spec.email         = ['dovzhanyn.alex@gmail.com']

  spec.summary       = 'The Unofficial devRant ruby API client'
  spec.description   = 'Connects to the devRant API and provides convinient methods for communicating with the devRant servers'
  spec.homepage      = 'https://github.com/alexdovzhanyn/devrant'
  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.15'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.0'
  spec.add_runtime_dependency 'httparty'
  spec.add_runtime_dependency 'json'
  spec.add_runtime_dependency 'ostruct'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
devrant-0.0.1 devrant.gemspec