File: benchmark-memory.gemspec

package info (click to toggle)
ruby-benchmark-memory 0.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: ruby: 1,121; makefile: 7; sh: 4
file content (24 lines) | stat: -rw-r--r-- 804 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

require File.expand_path('lib/benchmark/memory/version', __dir__)

Gem::Specification.new do |spec|
  spec.name          = 'benchmark-memory'
  spec.version       = Benchmark::Memory::VERSION
  spec.authors       = ['Michael Herold']
  spec.email         = ['michael.j.herold@gmail.com']

  spec.summary       = 'Benchmark-style memory profiling'
  spec.description   = spec.summary
  spec.homepage      = 'https://github.com/michaelherold/benchmark-memory'
  spec.license       = 'MIT'

  spec.files = %w[CHANGELOG.md CONTRIBUTING.md LICENSE.md README.md Rakefile]
  spec.files += %w[benchmark-memory.gemspec]
  spec.files += Dir['lib/**/*.rb']
  spec.require_paths = ['lib']

  spec.required_ruby_version = '>= 2.5.0'

  spec.add_dependency 'memory_profiler', '~> 1'
end