-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtijuana_client.gemspec
More file actions
38 lines (30 loc) · 1.44 KB
/
tijuana_client.gemspec
File metadata and controls
38 lines (30 loc) · 1.44 KB
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
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'tijuana_client'
spec.version = File.read(File.expand_path('VERSION', __dir__)).strip
spec.authors = ['Nathan Woodhull', 'Owens Ehimen', 'Diego Marcet', 'Grey Moore']
spec.email = ['talk@controlshiftlabs.com']
spec.summary = 'API client for Tijuana'
spec.description = 'An API client for the code that runs Getup.org.au'
spec.homepage = 'https://github.com/controlshift/tijuana_client'
spec.license = 'MIT'
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.require_paths = ['lib']
spec.required_ruby_version = ['>= 3.3', '< 5.0']
# Runtime dependencies
spec.add_runtime_dependency 'vertebrae', '~> 1.0'
spec.add_runtime_dependency 'faraday', '~> 2.0'
# Development dependencies
spec.add_development_dependency 'bundler', '>= 2.0', '< 5.0'
spec.add_development_dependency 'pry', '~> 0.14'
spec.add_development_dependency 'pry-byebug', '~> 3.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 1.0'
spec.add_development_dependency 'webmock', '~> 3.0'
spec.metadata['rubygems_mfa_required'] = 'true'
end