-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactive-profiling.gemspec
More file actions
29 lines (24 loc) · 869 Bytes
/
active-profiling.gemspec
File metadata and controls
29 lines (24 loc) · 869 Bytes
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 File.expand_path('lib/active-profiling/version', __dir__)
Gem::Specification.new do |s|
s.name = 'active-profiling'
s.version = ActiveProfiling::VERSION
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
s.required_ruby_version = '>= 3.0'
s.authors = ['J Smith']
s.description = 'A Rails profiling suite.'
s.summary = s.description
s.email = 'dark.panda@gmail.com'
s.license = 'MIT'
s.extra_rdoc_files = [
'README.rdoc'
]
s.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
s.executables = s.files.grep(%r{^bin/}).map { |f| File.basename(f) }
s.homepage = 'https://github.com/dark-panda/active-profiling'
s.require_paths = ['lib']
s.add_dependency('rails', ['>= 6.0'])
s.metadata = {
'rubygems_mfa_required' => 'true'
}
end