aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/gzip.rb
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-06-04 23:43:43 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-06-04 23:43:43 -0500
commit20ded911c0ce7647c73822491eaf8db10e615844 (patch)
treee2b1670c20e6b6e68de2e4987da7b32443739e3b /activesupport/lib/active_support/gzip.rb
parent4072de266a74edf4f432a200a322cf1ffd38d78e (diff)
downloadrails-20ded911c0ce7647c73822491eaf8db10e615844.tar.gz
rails-20ded911c0ce7647c73822491eaf8db10e615844.tar.bz2
rails-20ded911c0ce7647c73822491eaf8db10e615844.zip
add example to AS::Gzip
Diffstat (limited to 'activesupport/lib/active_support/gzip.rb')
-rw-r--r--activesupport/lib/active_support/gzip.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/gzip.rb b/activesupport/lib/active_support/gzip.rb
index 420b965c87..6ef33ab683 100644
--- a/activesupport/lib/active_support/gzip.rb
+++ b/activesupport/lib/active_support/gzip.rb
@@ -2,7 +2,14 @@ require 'zlib'
require 'stringio'
module ActiveSupport
- # A convenient wrapper for the zlib standard library that allows compression/decompression of strings with gzip.
+ # A convenient wrapper for the zlib standard library that allows
+ # compression/decompression of strings with gzip.
+ #
+ # gzip = ActiveSupport::Gzip.compress('compress me!')
+ # # => "\x1F\x8B\b\x00o\x8D\xCDO\x00\x03K\xCE\xCF-(J-.V\xC8MU\x04\x00R>n\x83\f\x00\x00\x00"
+ #
+ # ActiveSupport::Gzip.decompress(gzip)
+ # # => "compress me!"
module Gzip
class Stream < StringIO
def initialize(*)