power_assert 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e119019e6ff63c30a7d70942bfc554915bfeefd5
4
- data.tar.gz: 7b06c77145a97c59f99b88fcdd926fcb24360138
3
+ metadata.gz: 684759080498a0613ab5fb1ef612779f8febc158
4
+ data.tar.gz: 13c829bcc4741384b7563b8ede818ae2a21880fd
5
5
  SHA512:
6
- metadata.gz: 7a7b1d0f33ab25403d60820f9bdfd9fb4005a0e3653eb783c2c4a7a705fbec5b3efa6c7a6740416c26255c02981e848f3484c448de5236f9e71a1e089a5a16ba
7
- data.tar.gz: 9a3cb5c8ecffa00c64e02f5edc7477f6af41fc196aec082946b6f155ff63fd5bdc1e7027184c95cfdd49e0705afc0163c492903da08f5f65e1d87c41c22b313c
6
+ metadata.gz: 320a144a00e75cb536f4ec4725c8f36e3e143a4899a27878a7d0f5bc46403aab46cf824c7f956b19a108fa10c1e8c7f2f49a5cb8aef3b1566110d47a433181ed
7
+ data.tar.gz: bafb11bdf504694f8bc79d3ba6664d1797d2c92d1e0458ab220a92b624709f291039f9ae91f2e738de7779e0c1f130934d49e9616b3e12c2670af05531955633
@@ -2,6 +2,9 @@
2
2
  == About
3
3
  Power Assert for Ruby.
4
4
 
5
+ Power Assert shows each value of variables and method calls in the expression.
6
+ It is useful for testing, providing which value wasn't correct when the condition is not satisfied.
7
+
5
8
  == Related Projects
6
9
  * {test-unit}[https://github.com/test-unit/test-unit](>= 3.0.0)
7
10
  * {test-unit-power_assert}[https://github.com/k-tsj/test-unit-power_assert]
@@ -57,7 +57,7 @@ module PowerAssert
57
57
  private
58
58
 
59
59
  def ignored_file?(file)
60
- IGNORED_LIB_DIRS[Byebug] = lib_dir(Byebug, :load_settings, 2) if defined?(Byebug) and ! IGNORED_LIB_DIRS[Byebug]
60
+ IGNORED_LIB_DIRS[Byebug] = lib_dir(Byebug, :attach, 2) if defined?(Byebug) and ! IGNORED_LIB_DIRS[Byebug]
61
61
  IGNORED_LIB_DIRS[PryByebug] = lib_dir(Pry, :start_with_pry_byebug, 2) if defined?(PryByebug) and ! IGNORED_LIB_DIRS[PryByebug]
62
62
  IGNORED_LIB_DIRS.find do |_, dir|
63
63
  file.start_with?(dir)
@@ -1,4 +1,4 @@
1
- warn 'power_assert/colorize are experimental'
1
+ warn 'power_assert/colorize is experimental'
2
2
 
3
3
  require 'power_assert/configuration'
4
4
 
@@ -1,3 +1,3 @@
1
1
  module PowerAssert
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
@@ -9,8 +9,8 @@ Gem::Specification.new do |s|
9
9
  s.authors = ['Kazuki Tsujimoto']
10
10
  s.email = ['kazuki@callcc.net']
11
11
  s.homepage = 'https://github.com/k-tsj/power_assert'
12
- s.summary = %q{Power Assert for Ruby}
13
- s.description = %q{Power Assert for Ruby. 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.}
12
+ s.summary = "Power Assert for Ruby"
13
+ s.description = "Power Assert for Ruby. 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."
14
14
 
15
15
  s.files = `git ls-files -z`.split("\x0").reject do |f|
16
16
  f.match(%r{^(test|spec|features|benchmarks)/})
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: power_assert
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuki Tsujimoto
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-01-28 00:00:00.000000000 Z
11
+ date: 2017-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-unit