lib/fastly/gzip.rb in fastly-1.1.4 vs lib/fastly/gzip.rb in fastly-1.1.5
- old
+ new
@@ -1,39 +1,38 @@
class Fastly
# customize gzipping content.
class Gzip < BelongsToServiceAndVersion
attr_accessor :service_id, :name, :extensions, :content_types, :cache_condition
- ##
- # :attr: service_id
- #
- # The id of the service this belongs to.
+ ##
+ # :attr: service_id
+ #
+ # The id of the service this belongs to.
- ##
- # :attr: version
- #
- # The number of the version this belongs to.
+ ##
+ # :attr: version
+ #
+ # The number of the version this belongs to.
- ##
- # :attr: name
- #
- # The name of the condition
+ ##
+ # :attr: name
+ #
+ # The name of the condition
- ##
- # :attr: extensions
- #
- # File extensions to be gzipped. Seems to want them in a list like
- # "js css html"
+ ##
+ # :attr: extensions
+ #
+ # File extensions to be gzipped. Seems to want them in a list like
+ # "js css html"
- ##
- # :attr: content_types
- #
- # Content types to be gzipped. Seems to want them in a list like
- # "text/html application/x-javascript"
+ ##
+ # :attr: content_types
+ #
+ # Content types to be gzipped. Seems to want them in a list like
+ # "text/html application/x-javascript"
- ##
- # :attr" cache_condition
- #
- # Cache condition to be used to determine when to apply this gzip setting
-
+ ##
+ # :attr" cache_condition
+ #
+ # Cache condition to be used to determine when to apply this gzip setting
end
end