transparent_nil 0.1.20 → 0.1.21

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.
data/Manifest.txt CHANGED
@@ -8,8 +8,8 @@ Rakefile.rb
8
8
  README.rdoc
9
9
  version.rb
10
10
  lib/transparent_nil.rb
11
+ lib/transparent_nil/_test_all.rb
11
12
  lib/transparent_nil/nil.rb
12
13
  lib/transparent_nil/numeric.rb
13
14
  lib/transparent_nil/object.rb
14
- test/_start_all.rb
15
15
  test/test_nil.rb
@@ -0,0 +1,11 @@
1
+ # ruby encoding: utf-8
2
+ #
3
+ # Führt alle Tests aus
4
+ #
5
+
6
+ require 'drumherum'
7
+ smart_init
8
+ Dir["#{File.join(Drumherum::directory_main, 'test')}/test_*.rb"].sort.each { |t| require t }
9
+
10
+
11
+
data/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  module TransparentNil
3
3
 
4
- VERSION = '0.1.20'
4
+ VERSION = '0.1.21'
5
5
 
6
6
  end
7
7
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: transparent_nil
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.20
4
+ version: 0.1.21
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-13 00:00:00.000000000 Z
12
+ date: 2012-11-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rdoc
@@ -97,10 +97,10 @@ files:
97
97
  - README.rdoc
98
98
  - version.rb
99
99
  - lib/transparent_nil.rb
100
+ - lib/transparent_nil/_test_all.rb
100
101
  - lib/transparent_nil/nil.rb
101
102
  - lib/transparent_nil/numeric.rb
102
103
  - lib/transparent_nil/object.rb
103
- - test/_start_all.rb
104
104
  - test/test_nil.rb
105
105
  - .gemtest
106
106
  homepage: http://bklippstein.github.com/transparent_nil/frames.html
data/test/_start_all.rb DELETED
@@ -1,10 +0,0 @@
1
- # ruby encoding: utf-8
2
- #
3
- # Führt alle Tests aus
4
- #
5
-
6
- test_verzeichnis = File.expand_path(File.dirname(__FILE__) )
7
- Dir["#{File.join(test_verzeichnis)}/test_*.rb"].sort.each { |t| require t }
8
-
9
-
10
-