-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzephyr_ruby.gemspec
28 lines (23 loc) · 966 Bytes
/
zephyr_ruby.gemspec
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
# frozen_string_literal: true
require_relative 'lib/zephyr_ruby/version'
Gem::Specification.new do |spec|
spec.name = 'zephyr_ruby'
spec.version = ZephyrRuby::VERSION
spec.authors = ['Chris Davis']
spec.summary = 'Zephyr REST API Client for Ruby'
spec.description = "Allows users to use Zephyr's REST API"
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.0'
spec.homepage = 'https://github.com/cdavis-personal/zephyr_ruby'
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
end
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'faraday', '~> 1.7', '>= 1.7.0'
spec.add_dependency 'json', '~> 2.3', '>= 2.3.0'
spec.add_dependency 'rspec', '~> 3.7', '>= 3.7.0'
end