assertions-eb 1.7.2 → 1.7.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,12 @@
1
+ === 1.7.3 / 2012-02-20
2
+ * add some files that were forgotten in 1.7.2
3
+
4
+ === 1.7.2 / 2012-02-17
5
+ * 1.9 compatibility improved
6
+ * Major refactor of tests
7
+ * Refactor gem layout
8
+ * available again as gem at rubygems.org as assertions-eb
9
+
1
10
  === 1.4.1 / 2010-01-15
2
11
  A couple minor changes were made.
3
12
  * Changes to gem specification.
@@ -0,0 +1,2 @@
1
+ #!ruby
2
+ require "assertions"
@@ -1,3 +1,3 @@
1
1
  module Assertions
2
- VERSION = "1.7.2"
2
+ VERSION = "1.7.3"
3
3
  end
@@ -1,6 +1,6 @@
1
1
  $LOAD_PATH.push(File.expand_path "../../test", __FILE__)
2
2
  require "test/unit"
3
- require "assertions"
3
+ require "assertions-eb"
4
4
 
5
5
  # 1.9 compatibility patch for test/unit
6
6
  module Test
metadata CHANGED
@@ -1,27 +1,37 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: assertions-eb
3
- version: !ruby/object:Gem::Version
4
- version: 1.7.2
3
+ version: !ruby/object:Gem::Version
4
+ hash: 13
5
5
  prerelease:
6
+ segments:
7
+ - 1
8
+ - 7
9
+ - 3
10
+ version: 1.7.3
6
11
  platform: ruby
7
- authors:
12
+ authors:
8
13
  - DesigningPatterns
9
14
  - Expected Behavior
10
15
  autorequire:
11
16
  bindir: bin
12
17
  cert_chain: []
13
- date: 2012-02-17 00:00:00.000000000 Z
18
+
19
+ date: 2012-02-20 00:00:00 -05:00
20
+ default_executable:
14
21
  dependencies: []
15
- description: This project adds some additional assertions to Test::Unit::Assertions,
16
- including assert_raise_message (allowing verification of error messages) and assert_greater_than.
17
- email:
22
+
23
+ description: This project adds some additional assertions to Test::Unit::Assertions, including assert_raise_message (allowing verification of error messages) and assert_greater_than.
24
+ email:
18
25
  - technical.inquiries@designingpatterns.com
19
26
  - joel@expectedbehavior.com
20
27
  - chris@monoclesoftware.com
21
28
  executables: []
29
+
22
30
  extensions: []
31
+
23
32
  extra_rdoc_files: []
24
- files:
33
+
34
+ files:
25
35
  - .gitignore
26
36
  - Gemfile
27
37
  - History.txt
@@ -32,6 +42,7 @@ files:
32
42
  - Rakefile
33
43
  - assertions.gemspec
34
44
  - examples/example.rb
45
+ - lib/assertions-eb.rb
35
46
  - lib/assertions.rb
36
47
  - lib/assertions/version.rb
37
48
  - test/assert_between_test.rb
@@ -51,31 +62,41 @@ files:
51
62
  - test/foo.rb
52
63
  - test/seahawk.rb
53
64
  - test/test_helper.rb
65
+ has_rdoc: true
54
66
  homepage: http://www.expectedbehavior.com
55
67
  licenses: []
68
+
56
69
  post_install_message:
57
70
  rdoc_options: []
58
- require_paths:
71
+
72
+ require_paths:
59
73
  - lib
60
- required_ruby_version: !ruby/object:Gem::Requirement
74
+ required_ruby_version: !ruby/object:Gem::Requirement
61
75
  none: false
62
- requirements:
63
- - - ! '>='
64
- - !ruby/object:Gem::Version
65
- version: '0'
66
- required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ hash: 3
80
+ segments:
81
+ - 0
82
+ version: "0"
83
+ required_rubygems_version: !ruby/object:Gem::Requirement
67
84
  none: false
68
- requirements:
69
- - - ! '>='
70
- - !ruby/object:Gem::Version
71
- version: '0'
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ hash: 3
89
+ segments:
90
+ - 0
91
+ version: "0"
72
92
  requirements: []
93
+
73
94
  rubyforge_project:
74
- rubygems_version: 1.8.10
95
+ rubygems_version: 1.5.3
75
96
  signing_key:
76
97
  specification_version: 3
77
98
  summary: More Assertions for Test::Unit::Assertions
78
- test_files:
99
+ test_files:
79
100
  - test/assert_between_test.rb
80
101
  - test/assert_fail_test.rb
81
102
  - test/assert_greater_than_or_equal_to_test.rb