assert 2.0.2 → 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -3,5 +3,5 @@ source "https://rubygems.org"
3
3
  # Specify dependencies in assert.gemspec
4
4
  gemspec
5
5
 
6
- gem 'bundler', '~>1.1'
7
- gem 'rake', '~>0.9.2'
6
+ gem 'rake'
7
+ gem 'pry'
@@ -1,3 +1,3 @@
1
1
  module Assert
2
- VERSION = "2.0.2"
2
+ VERSION = "2.0.3"
3
3
  end
File without changes
@@ -4,6 +4,9 @@
4
4
  # add the root dir to the load path
5
5
  $LOAD_PATH.unshift(File.expand_path("../..", __FILE__))
6
6
 
7
+ # require pry for debugging (`binding.pry`)
8
+ require 'pry'
9
+
7
10
  # Force tests to run without halting on failures (needed so all tests will run
8
11
  # properly). For halt on fail behavior testing, the context of those tests
9
12
  # configures Assert temporarily as needed.
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: assert
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 0
9
- - 2
10
- version: 2.0.2
9
+ - 3
10
+ version: 2.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Kelly Redding
@@ -16,12 +16,11 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2013-03-08 00:00:00 Z
19
+ date: 2013-03-31 00:00:00 Z
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  name: ansi
23
23
  prerelease: false
24
- type: :runtime
25
24
  requirement: &id001 !ruby/object:Gem::Requirement
26
25
  none: false
27
26
  requirements:
@@ -32,6 +31,7 @@ dependencies:
32
31
  - 1
33
32
  - 3
34
33
  version: "1.3"
34
+ type: :runtime
35
35
  version_requirements: *id001
36
36
  description: Test::Unit style testing framework, just better than Test::Unit.
37
37
  email:
@@ -69,6 +69,7 @@ files:
69
69
  - lib/assert/view/default_view.rb
70
70
  - lib/assert/view/helpers/ansi_styles.rb
71
71
  - lib/assert/view/helpers/common.rb
72
+ - log/.gitkeep
72
73
  - test/helper.rb
73
74
  - test/support/inherited_stuff.rb
74
75
  - test/system/running_tests.rb
@@ -96,6 +97,7 @@ files:
96
97
  - test/unit/suite_tests.rb
97
98
  - test/unit/test_tests.rb
98
99
  - test/unit/view_tests.rb
100
+ - tmp/.gitkeep
99
101
  homepage: http://github.com/redding/assert
100
102
  licenses: []
101
103
 
@@ -125,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
127
  requirements: []
126
128
 
127
129
  rubyforge_project:
128
- rubygems_version: 1.8.25
130
+ rubygems_version: 1.8.24
129
131
  signing_key:
130
132
  specification_version: 3
131
133
  summary: Test::Unit style testing framework, just better than Test::Unit.