Sha256: b2dbcfdf8e18686f0fe964d1256bd520cfa504be980ec6e921da39503919bd19
Contents?: true
Size: 1.47 KB
Versions: 1
Compression:
Stored size: 1.47 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'weese/version' Gem::Specification.new do |spec| spec.name = 'weese' spec.version = Weese::VERSION spec.authors = ['Emma K Alexandra'] spec.email = ['emma@emma.sh'] spec.summary = 'API Adapter for the WMATA API' spec.homepage = 'https://github.com/emma-k-alexandra/weese' spec.license = 'MIT' spec.metadata['allowed_push_host'] = 'https://rubygems.org' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/emma-k-alexandra/weese' spec.metadata['changelog_uri'] = 'https://github.com/emma-k-alexandra/weese/master/CHANGELOG.MD' # 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 'faraday', '~> 0.17.3' spec.add_development_dependency 'vcr', '~> 5.0.0' spec.add_development_dependency 'bundler', '~> 2.1.a' spec.add_development_dependency 'minitest', '~> 5.0' spec.add_development_dependency 'rake', '~> 12.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
weese-1.0.2 | weese.gemspec |