Sha256: 45117a9f0a1bbded00162823345917806cd817a38ab6efd26ebf4f7956e01e87
Contents?: true
Size: 1.6 KB
Versions: 6
Compression:
Stored size: 1.6 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'youlend/version' Gem::Specification.new do |spec| spec.name = 'youlend' spec.version = Youlend::VERSION spec.authors = ['rikas'] spec.email = ['oterosantos@gmail.com'] spec.summary = 'Youlend API wrapper' spec.description = spec.summary spec.homepage = 'https://youlend.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' spec.add_dependency 'faraday_middleware' spec.add_dependency 'multi_json' spec.add_dependency 'rainbow' spec.add_development_dependency 'bundler' spec.add_development_dependency 'dotenv' spec.add_development_dependency 'faker' spec.add_development_dependency 'pry-byebug' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'rubocop' spec.add_development_dependency 'rubocop-rspec' spec.add_development_dependency 'simplecov' spec.add_development_dependency 'vcr' spec.add_development_dependency 'webmock' end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
youlend-1.1.3 | youlend.gemspec |
youlend-1.1.2 | youlend.gemspec |
youlend-1.1.1 | youlend.gemspec |
youlend-1.0.2 | youlend.gemspec |
youlend-1.0.1 | youlend.gemspec |
youlend-1.0.0 | youlend.gemspec |