-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathgauge-ruby.gemspec
More file actions
26 lines (24 loc) · 1.03 KB
/
gauge-ruby.gemspec
File metadata and controls
26 lines (24 loc) · 1.03 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
require 'json'
Gem::Specification.new do |s|
s.name = "gauge-ruby"
s.version = JSON.parse(File.read('ruby.json'))['version']
s.authors = ["Gauge Team"]
s.email = ["getgauge@googlegroups.com"]
s.license = "Apache-2.0"
s.metadata = {
"bug_tracker_uri" => "https://github.com/getgauge/gauge-ruby/issues",
"documentation_uri" => "https://docs.gauge.org/",
"homepage_uri" => "https://gauge.org/",
"mailing_list_uri" => "https://github.com/getgauge/gauge/discussions",
"source_code_uri" => "https://github.com/getgauge/gauge-ruby"
}
s.summary = "Ruby support for Gauge"
s.description = "Adds Ruby support into Gauge tests"
s.homepage = "https://gauge.org"
s.files = Dir.glob("lib/**/*.rb")
s.add_runtime_dependency 'parser', '~> 3.2'
s.add_runtime_dependency 'unparser', '>= 0.6.15'
s.add_runtime_dependency 'grpc', '~> 1.74'
s.add_development_dependency 'grpc-tools', '~> 1.10'
s.required_ruby_version = '>= 3.3'
end