ya2yaml 0.24 → 0.25

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.
Files changed (3) hide show
  1. data/README +1 -0
  2. data/lib/ya2yaml.rb +2 -2
  3. metadata +2 -2
data/README CHANGED
@@ -42,6 +42,7 @@ as YAML generic types:
42
42
  - TrueClass
43
43
  - FalseClass
44
44
  - Fixnum
45
+ - Bignum
45
46
  - Float
46
47
  - Date
47
48
  - Time
data/lib/ya2yaml.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- # $Id: ya2yaml.rb,v 0.24 2006-11-06 01:15:07+09 funai Exp funai $
3
+ # $Id: ya2yaml.rb,v 0.25 2007-01-12 19:24:34+09 funai Exp funai $
4
4
  #
5
5
  # Author:: Akira FUNAI
6
6
  # Copyright:: Copyright (c) 2006 Akira FUNAI
@@ -75,7 +75,7 @@ class Ya2YAML
75
75
  emit_string(obj,level)
76
76
  when 'TrueClass','FalseClass'
77
77
  obj.to_s
78
- when 'Fixnum','Float'
78
+ when 'Fixnum','Bignum','Float'
79
79
  obj.to_s
80
80
  when 'Date'
81
81
  obj.to_s
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: ya2yaml
5
5
  version: !ruby/object:Gem::Version
6
- version: "0.24"
7
- date: 2006-11-06 00:00:00 +09:00
6
+ version: "0.25"
7
+ date: 2007-01-12 00:00:00 +09:00
8
8
  summary: An UTF8 safe YAML dumper.
9
9
  require_paths:
10
10
  - lib