summaryrefslogtreecommitdiff
path: root/lib/json/add
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2011-07-08 17:25:17 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2011-07-08 17:25:17 +0900
commit24f84d63beef15eafd2e59df3d809f1928774d00 (patch)
treed6f214810ad4799af45b8b780ad13c076d80995d /lib/json/add
parent10c6bfba2f03577ad3a5b7b1abff31a35378f45e (diff)
downloadjson-24f84d63beef15eafd2e59df3d809f1928774d00.tar.gz
remove trailing spaces.
Diffstat (limited to 'lib/json/add')
-rw-r--r--lib/json/add/core.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/json/add/core.rb b/lib/json/add/core.rb
index 9c06a9b..e9850af 100644
--- a/lib/json/add/core.rb
+++ b/lib/json/add/core.rb
@@ -21,7 +21,7 @@ class Symbol
def to_json(*a)
as_json.to_json(*a)
end
-
+
# Deserializes JSON string by converting the <tt>string</tt> value stored in the object to a Symbol
def self.json_create(o)
o['s'].to_sym
@@ -52,7 +52,7 @@ class Time
'n' => respond_to?(:tv_nsec) ? tv_nsec : tv_usec * 1000
}
end
-
+
# Stores class name (Time) with number of seconds since epoch and number of
# microseconds for Time as JSON string
def to_json(*args)
@@ -62,7 +62,7 @@ end
# Date serialization/deserialization
class Date
-
+
# Deserializes JSON string by converting Julian year <tt>y</tt>, month
# <tt>m</tt>, day <tt>d</tt> and Day of Calendar Reform <tt>sg</tt> to Date.
def self.json_create(object)
@@ -80,7 +80,7 @@ class Date
'm' => month,
'd' => day,
'sg' => start,
- }
+ }
end
# Stores class name (Date) with Julian year <tt>y</tt>, month <tt>m</tt>, day
@@ -123,7 +123,7 @@ class DateTime
'S' => sec,
'of' => offset.to_s,
'sg' => start,
- }
+ }
end
# Stores class name (DateTime) with Julian year <tt>y</tt>, month <tt>m</tt>,
@@ -136,7 +136,7 @@ end
# Range serialization/deserialization
class Range
-
+
# Deserializes JSON string by constructing new Range object with arguments
# <tt>a</tt> serialized by <tt>to_json</tt>.
def self.json_create(object)
@@ -162,7 +162,7 @@ end
# Struct serialization/deserialization
class Struct
-
+
# Deserializes JSON string by constructing new Struct object with values
# <tt>v</tt> serialized by <tt>to_json</tt>.
def self.json_create(object)