dohruby 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/CHANGELOG CHANGED
@@ -67,3 +67,5 @@
67
67
  * implemented more readable to_s method for Array, Set, and Hash
68
68
  *0.1.20* (May 27th, 2008)
69
69
  * fix bug in DohLogger::Formatter when no Exception object is given
70
+ *0.1.21* (May 27th, 2008)
71
+ * rollback to_s changes to Array, Set, and Hash
data/lib/doh/core.rb CHANGED
@@ -1,8 +1,5 @@
1
- require 'doh/core/array'
2
1
  require 'doh/core/bigdecimal'
3
2
  require 'doh/core/date'
4
3
  require 'doh/core/dir'
5
- require 'doh/core/hash'
6
- require 'doh/core/set'
7
4
  require 'doh/core/string'
8
5
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dohruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.20
4
+ version: 0.1.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Makani & Kem Mason
@@ -37,12 +37,9 @@ files:
37
37
  - bin/run_tests.rb
38
38
  - lib/doh
39
39
  - lib/doh/core
40
- - lib/doh/core/array.rb
41
40
  - lib/doh/core/bigdecimal.rb
42
41
  - lib/doh/core/date.rb
43
42
  - lib/doh/core/dir.rb
44
- - lib/doh/core/hash.rb
45
- - lib/doh/core/set.rb
46
43
  - lib/doh/core/string.rb
47
44
  - lib/doh/core.rb
48
45
  - lib/doh/data
@@ -1,6 +0,0 @@
1
- class Array
2
- alias :_doh_original_to_s :to_s
3
- def to_s
4
- inspect
5
- end
6
- end
data/lib/doh/core/hash.rb DELETED
@@ -1,6 +0,0 @@
1
- class Hash
2
- alias :_doh_original_to_s :to_s
3
- def to_s
4
- inspect
5
- end
6
- end
data/lib/doh/core/set.rb DELETED
@@ -1,13 +0,0 @@
1
- require 'set'
2
-
3
- class Set
4
- alias :_doh_original_inspect :inspect
5
- def inspect
6
- "{#{to_a.join(', ')}}"
7
- end
8
-
9
- alias :_doh_original_to_s :to_s
10
- def to_s
11
- inspect
12
- end
13
- end