-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathjit.gemspec
More file actions
22 lines (19 loc) · 722 Bytes
/
Copy pathjit.gemspec
File metadata and controls
22 lines (19 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require_relative 'lib/jit/version'
Gem::Specification.new do |spec|
spec.name = 'jit'
spec.version = JIT::VERSION
spec.authors = ['Takashi Kokubun']
spec.email = ['takashikkbn@gmail.com']
spec.summary = 'Ruby JIT Challenge'
spec.description = 'Ruby JIT Challenge'
spec.homepage = 'https://github.com/k0kubun/ruby-jit-challenge'
spec.required_ruby_version = '>= 3.3.0.dev'
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|circleci)|appveyor)})
end
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
end