-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbaseline.gemspec
25 lines (22 loc) · 888 Bytes
/
baseline.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
lib = File.expand_path("../lib", __FILE__)
unless $LOAD_PATH.include?(lib)
$LOAD_PATH.unshift(lib)
end
Gem::Specification.new do |gem|
files = `git ls-files`.split($/)
test_files = files.grep(%r(^spec/))
gem.name = "baseline"
gem.version = "1.0"
gem.platform = Gem::Platform::RUBY
gem.author = "Manuel Meurer"
gem.email = "manuel@meurer.io"
gem.summary = "Baseline"
gem.description = "Baseline"
gem.homepage = "https://github.com/manuelmeurer/baseline"
gem.license = "MIT"
gem.required_ruby_version = ">= 3.1"
gem.files = files - test_files
gem.executables = gem.files.grep(%r(\Abin/)).map(&File.method(:basename))
gem.test_files = test_files
gem.require_paths = ["lib"]
end