diff options
author | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-02-04 19:39:15 +0000 |
---|---|---|
committer | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-02-04 19:39:15 +0000 |
commit | 53bc349069de17584e20aeef601b407d5ef74794 (patch) | |
tree | eef8fedb5d76eee14ec4eeec0fadb2150531d694 | |
parent | f691d4a55468485b848120ff3edbd127791783ca (diff) |
* ext/json/lib/json.rb: Move module overview definition for rdoc
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39046 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ext/json/lib/json.rb | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Tue Feb 5 04:40:00 2013 Zachary Scott <zachary@zacharyscott.net> + + * ext/json/lib/json.rb: Move module overview definition for rdoc + Tue Feb 5 03:00:00 2013 Zachary Scott <zachary@zacharyscott.net> * lib/tracer.rb: Move class overview definition and reformat diff --git a/ext/json/lib/json.rb b/ext/json/lib/json.rb index 00fe4cae84..24aa385c91 100644 --- a/ext/json/lib/json.rb +++ b/ext/json/lib/json.rb @@ -1,3 +1,5 @@ +require 'json/common' + ## # = JavaScript Object Notation (JSON) # @@ -49,8 +51,6 @@ # # 1.to_json => "1" # - -require 'json/common' module JSON require 'json/version' |