File: rspec-memory.gemspec

package info (click to toggle)
ruby-rspec-memory 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 132 kB
  • sloc: ruby: 246; makefile: 4
file content (20 lines) | stat: -rw-r--r-- 535 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

require_relative "lib/rspec/memory/version"

Gem::Specification.new do |spec|
	spec.name = "rspec-memory"
	spec.version = RSpec::Memory::VERSION
	
	spec.summary = "RSpec helpers for checking memory allocations."
	spec.authors = ["Samuel Williams"]
	spec.license = "MIT"
	
	spec.homepage = "https://github.com/socketry/rspec-memory"
	
	spec.files = Dir.glob('{lib}/**/*', File::FNM_DOTMATCH, base: __dir__)
	
	spec.add_dependency "rspec", "~> 3.0"
	
	spec.add_development_dependency "rake", "~> 10.0"
end