-
Notifications
You must be signed in to change notification settings - Fork 1
/
assert.gemspec
31 lines (24 loc) · 1.1 KB
/
assert.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
30
31
# -*- encoding: utf-8 -*-
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "assert/version"
Gem::Specification.new do |gem|
gem.name = "assert"
gem.version = Assert::VERSION
gem.authors = ["Kelly Redding", "Collin Redding"]
gem.email = ["[email protected]", "[email protected]"]
gem.summary = "Assertion style testing framework."
gem.description = "Assertion style testing framework."
gem.homepage = "http://github.com/redding/assert"
gem.license = "MIT"
gem.files = `git ls-files | grep "^[^.]"`.split($INPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 2.5"
gem.add_development_dependency("much-style-guide", ["~> 0.6.7"])
gem.add_dependency("much-factory", ["~> 0.2.3"])
gem.add_dependency("much-not-given", ["~> 0.1.3"])
gem.add_dependency("much-stub", ["~> 0.1.10"])
end