forked from christopherstyles/ngp_van
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathngp_van.gemspec
More file actions
27 lines (24 loc) · 989 Bytes
/
ngp_van.gemspec
File metadata and controls
27 lines (24 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# encoding: UTF-8
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ngp_van/version'
Gem::Specification.new do |spec|
spec.authors = ['Christopher Styles']
spec.cert_chain = ['certs/christopherstyles.pem']
spec.description = 'An unofficial Ruby wrapper for the NGP VAN API'
spec.email = ['christopherstyles@gmail.com']
spec.files = `git ls-files lib spec README.md`.split($INPUT_RECORD_SEPARATOR)
spec.homepage = 'https://github.com/christopherstyles/ngp_van'
spec.licenses = ['MIT']
spec.name = 'ngp_van'
spec.platform = Gem::Platform::RUBY
spec.require_paths = %w(lib)
spec.required_ruby_version = ['>= 3.3', '< 5.0']
if $PROGRAM_NAME.end_with?('gem')
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
end
spec.summary = 'Ruby wrapper for the NGP VAN API'
spec.version = NgpVan::VERSION.dup
spec.add_dependency 'faraday', '>= 2.0', '< 3.0'
end