-
Notifications
You must be signed in to change notification settings - Fork 0
/
purist.gemspec
29 lines (24 loc) · 1.01 KB
/
purist.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
29
# frozen_string_literal: true
require_relative 'lib/purist/version'
Gem::Specification.new do |spec|
spec.name = 'purist'
spec.version = Purist::VERSION
spec.summary = 'Automatic runtime impure ruby methods invocation detection'
spec.description = <<~TXT
Automatic runtime impure ruby methods invocation detection by tracing predifined
Ruby stdlib and core libs methods via `tracepoint` API
TXT
spec.authors = ['Yaroslav Kurbatov']
spec.required_ruby_version = '>= 2.7.0'
spec.email = '[email protected]'
spec.homepage = 'https://github.com/viralpraxis/purist'
spec.license = 'MIT'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = "#{spec.homepage}/tree/main"
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z lib`.split("\x0")
end
spec.extra_rdoc_files = %w[README.md LICENSE.txt]
end