Sha256: 793f92d820b1a77b36a6bc35ea5a6c5076cebda1a0a45fd2198f669ab59b8d95

Contents?: true

Size: 1.92 KB

Versions: 4

Compression:

Stored size: 1.92 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'rents'
  spec.version       = Rents::VERSION
  spec.authors       = ['Ilton Garcia']
  spec.email         = ['ilton_unb@hotmail.com']
  spec.summary       = 'Rent$ payment Gateway & Intermediary ruby gem'
  spec.description   = 'Ruby gem for Rent$ payment Gateway & Intermediary'
  spec.homepage      = 'http://pagerents.github.io/rents-sdk-ruby'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0")
  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']

  #================== GEMs to build it GEM, so its improve the development ==============================
  # Base GEMs to build it gem
  spec.add_development_dependency 'bundler', '~> 1.7'
  spec.add_development_dependency 'rake', '~> 10.3', '>= 10.3.2'

  # RSpec for tests
  spec.add_development_dependency 'rspec', '~> 3.1', '>= 3.1.0'
  # Coverage
  spec.add_development_dependency 'simplecov', '~> 0.7', '>= 0.7.1'
  # Create readable attrs values
  spec.add_development_dependency 'faker', '~> 1.4', '>= 1.4.2'
  # CPF/CNPJ fake it
  spec.add_development_dependency 'cpf_cnpj', '~> 0.2', '~> 0.2.1'

  #================== GEMs to be used when it is called on a project ====================================
  # For real user operator IP (4GeoLoc)
  spec.add_dependency 'curb', '~> 0.8', '>= 0.8.6'
  # HTTP REST Client
  spec.add_dependency 'rest-client', '~> 1.7', '>= 1.7.2'
  # Easy JSON create
  spec.add_dependency 'multi_json', '~> 1.10', '>= 1.10.1'
  # To pretty print on console
  spec.add_dependency 'colorize', '~> 0.7.3', '>= 0.7.3'
  # To work with the Rails Numeric for currency
  spec.add_dependency 'bigdecimal', '~> 1.2.5', '>= 1.2.5'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rents-1.0.8 rents.gemspec
rents-1.0.7 rents.gemspec
rents-1.0.6 rents.gemspec
rents-1.0.5 rents.gemspec