Sha256: b9b211b2999398740df6aed0545893040b4304930a56e07b835c3dab1a121a25

Contents?: true

Size: 1.32 KB

Versions: 6

Compression:

Stored size: 1.32 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'rest-api-client'
  spec.version       = RestApiClient::VERSION
  spec.authors       = ['Victor']
  spec.email         = ['vcarvalho0402@gmail.com']

  spec.summary       = 'rest-api-client'
  spec.description   = 'Common classes and methods to handle rest communication'
  spec.homepage      = 'https://github.com/victor0402/rest-api-client'
  spec.license       = 'MIT'

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

  spec.add_runtime_dependency 'rest-client', '~> 1.8.0'
  spec.add_runtime_dependency 'redis', '~> 3.2.1'
  spec.add_runtime_dependency 'virtus'
  spec.add_runtime_dependency 'activemodel'
  spec.add_runtime_dependency 'addressable'

  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.2.0'
  spec.add_development_dependency 'factory_girl'
  spec.add_development_dependency 'webmock'
  spec.add_development_dependency 'simplecov'
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rest-api-client-0.1.11 rest-api-client.gemspec
rest-api-client-0.1.10 rest-api-client.gemspec
rest-api-client-0.1.9 rest-api-client.gemspec
rest-api-client-0.1.8 rest-api-client.gemspec
rest-api-client-0.1.7 rest-api-client.gemspec
rest-api-client-0.1.6 rest-api-client.gemspec