-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtest_bench.gemspec
More file actions
35 lines (24 loc) · 1 KB
/
test_bench.gemspec
File metadata and controls
35 lines (24 loc) · 1 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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |spec|
spec.name = 'test_bench'
spec.version = '3.0.0.0'
spec.summary = "Principled test framework for Ruby"
spec.description = <<~TEXT.each_line(chomp: true).map(&:strip).join(' ')
#{spec.summary}.
TEXT
spec.homepage = 'http://test-bench.software'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/test-bench-demo/test-bench'
allowed_push_host = ENV.fetch('RUBYGEMS_PUBLIC_AUTHORITY') { 'https://rubygems.org' }
spec.metadata['allowed_push_host'] = allowed_push_host
spec.metadata['namespace'] = 'TestBench'
spec.license = 'MIT'
spec.authors = ['Brightworks Digital']
spec.require_paths = ['lib']
spec.files = Dir.glob('lib/**/*')
spec.platform = Gem::Platform::RUBY
spec.add_runtime_dependency 'test_bench-fixture'
spec.add_runtime_dependency 'test_bench-executable'
spec.add_development_dependency 'test_bench-bootstrap'
end