summaryrefslogtreecommitdiff
path: root/lib/json/ext.rb
diff options
context:
space:
mode:
authorFlorian Frank <flori@ping.de>2010-08-13 00:27:58 +0200
committerFlorian Frank <flori@ping.de>2010-08-18 03:42:57 +0200
commit2bc58ce2827fba8bd6890ad6d9085d54ba169c6a (patch)
tree777be0fded5c551e1323e5a79b995130950421bb /lib/json/ext.rb
parent6ed5e19ef82df3f33a358c676c344009ac59d7a2 (diff)
downloadjson-2bc58ce2827fba8bd6890ad6d9085d54ba169c6a.tar.gz
prepare new version
fixed some warnings wrote some rake tasks to build jruby extension
Diffstat (limited to 'lib/json/ext.rb')
-rw-r--r--lib/json/ext.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/json/ext.rb b/lib/json/ext.rb
index 719e560..a6b353d 100644
--- a/lib/json/ext.rb
+++ b/lib/json/ext.rb
@@ -6,7 +6,7 @@ module JSON
module Ext
require 'json/ext/parser'
require 'json/ext/generator'
- $DEBUG and warn "Using c extension for JSON."
+ $DEBUG and warn "Using Ext extension for JSON."
JSON.parser = Parser
JSON.generator = Generator
end