aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2016-05-08 21:16:46 +0900
committerKazuki Yamaguchi <k@rhe.jp>2016-05-08 22:02:50 +0900
commit57a2e245f6021c5e41610353c3c47c108a43d908 (patch)
tree36c6969738082f2053aaef056a978b40f6fd39d4
parent7be98b6090baf6d67be53977bcd0fc87d83737cb (diff)
downloadplum-57a2e245f6021c5e41610353c3c47c108a43d908.tar.gz
client: decoders: unfreeze Client::Decoders::DECODERS
User may add custom decoders.
-rw-r--r--lib/plum/client/decoders.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plum/client/decoders.rb b/lib/plum/client/decoders.rb
index d68f27b..a1578f9 100644
--- a/lib/plum/client/decoders.rb
+++ b/lib/plum/client/decoders.rb
@@ -46,6 +46,6 @@ module Plum
end
end
- DECODERS = { "gzip" => GZip, "deflate" => Deflate }.freeze
+ DECODERS = { "gzip" => GZip, "deflate" => Deflate }
end
end