Sha256: 78c45b6eab9968d53fd65f562919ba9daa49b52415d00e8f6ef387f930d35ee2
Contents?: true
Size: 1014 Bytes
Versions: 3
Compression:
Stored size: 1014 Bytes
Contents
# 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 = ['kazuki@callcc.net'] 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
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
es_cli-0.1.0 | vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/power_assert.gemspec |
power_assert-2.0.5 | power_assert.gemspec |
power_assert-2.0.4 | power_assert.gemspec |