Sha256: 46744d6f8c5bc48b490776de2f10c258bc2a1aa934e00de6abc3a41ac87e868f
Contents?: true
Size: 1.07 KB
Versions: 4
Compression:
Stored size: 1.07 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'iwoca/version' Gem::Specification.new do |spec| spec.name = 'iwoca' spec.version = Iwoca::VERSION spec.authors = ['rikas'] spec.email = ['oterosantos@gmail.com'] spec.summary = 'Iwoca API wrapper' spec.description = spec.summary spec.homepage = 'https://www.iwoca.com' spec.metadata['homepage_uri'] = spec.homepage # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |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_dependency 'addressable' spec.add_dependency 'faraday', '~> 2.7' spec.add_dependency 'rainbow' spec.add_dependency 'json-schema' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
iwoca-1.1.3 | iwoca.gemspec |
iwoca-1.1.2 | iwoca.gemspec |
iwoca-1.1.1 | iwoca.gemspec |
iwoca-1.1.0 | iwoca.gemspec |