-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpower_assert.gemspec
24 lines (22 loc) · 1014 Bytes
/
power_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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'power_assert/version'
Gem::Specification.new do |s|
s.name = 'power_assert'
s.version = PowerAssert::VERSION
s.authors = ['Kazuki Tsujimoto']
s.email = ['[email protected]']
s.homepage = 'https://github.com/ruby/power_assert'
s.summary = "Power Assert for Ruby"
s.description = "Power Assert shows each value of variables and method calls in the expression. It is useful for testing, providing which value wasn't correct when the condition is not satisfied."
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{\A(?:test|spec|features|benchmark|bin)/})
end
s.bindir = 'exe'
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ['lib']
s.extra_rdoc_files = ['README.md']
s.rdoc_options = ['--main', 'README.md']
s.licenses = ['BSD-2-Clause', "Ruby"]
end