Skip to content

Commit 6748781

Browse files
committed
Fixed ENABLE_NIL_PARSER assignment for Ruby 1.9.2+ using const_set
1 parent a2ebf83 commit 6748781

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ruby-client/pyapns/lib/pyapns.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
require 'xmlrpc/client'
66

77
XMLRPC::Config.module_eval {
8-
remove_const(:ENABLE_NIL_PARSER) # so that we're not warned about reassigning to a constant
9-
ENABLE_NIL_PARSER = true # so that we don't get "RuntimeError: wrong/unknown XML-RPC type 'nil'"
8+
remove_const(:ENABLE_NIL_PARSER) # so that we're not warned about reassigning to a constant
9+
const_set(:ENABLE_NIL_PARSER, true) # so that we don't get "RuntimeError: wrong/unknown XML-RPC type 'nil'"
1010
}
1111

1212
module PYAPNS

0 commit comments

Comments
 (0)