RubyApp 0.0.82 → 0.0.83

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- RubyApp (0.0.82)
4
+ RubyApp (0.0.83)
5
5
  BlueCloth
6
6
  chronic
7
7
  chronic_duration
@@ -31,8 +31,6 @@ module RubyApp
31
31
  end
32
32
  end
33
33
  @document.symbolize_keys!
34
- require 'pp'
35
- pp @document
36
34
  end
37
35
 
38
36
  end
@@ -26,9 +26,11 @@ class Hash
26
26
  copy=self.dup
27
27
  self.clear
28
28
  copy.each do |name, value|
29
+ puts "name=#{name.inspect} value.class=#{value.class}"
29
30
  if value.is_a?(Hash)
30
31
  value.symbolize_keys!
31
32
  end
33
+ puts "self[#{name.to_sym.inspect}] = #{value.class}"
32
34
  self[name.to_sym] = value
33
35
  end
34
36
  self
@@ -1,4 +1,4 @@
1
1
  module RubyApp
2
- VERSION = "0.0.82"
2
+ VERSION = "0.0.83"
3
3
  ROOT = File.expand_path(File.dirname(__FILE__))
4
4
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: RubyApp
3
3
  version: !ruby/object:Gem::Version
4
- hash: 187
4
+ hash: 185
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 82
10
- version: 0.0.82
9
+ - 83
10
+ version: 0.0.83
11
11
  platform: ruby
12
12
  authors:
13
13
  - Frank G. Ficnar