File: rspec-files.gemspec

package info (click to toggle)
ruby-rspec-files 1.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 152 kB
  • sloc: ruby: 114; makefile: 4
file content (20 lines) | stat: -rw-r--r-- 614 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/files/version"

Gem::Specification.new do |spec|
	spec.name = "rspec-files"
	spec.version = RSpec::Files::VERSION
	
	spec.summary = "RSpec helpers for buffering and detecting file descriptor leaks."
	spec.authors = ["Samuel Williams", "Scott Tadman", "Cyril Roelandt", "Gleb Sinyavskiy", "Olle Jonsson"]
	spec.license = "MIT"
	
	spec.cert_chain  = ['release.cert']
	
	spec.homepage = "https://github.com/socketry/rspec-files"
	
	spec.files = Dir.glob(['{lib}/**/*', '*.md'], File::FNM_DOTMATCH, base: __dir__)
	
	spec.add_dependency "rspec", "~> 3.0"
end