lib/fastly-rails/client.rb in fastly-rails-0.1.0 vs lib/fastly-rails/client.rb in fastly-rails-0.1.1
- old
+ new
@@ -1,17 +1,10 @@
require 'fastly'
module FastlyRails
-
- ### For all intents and purposes
- ### This is a wrapper around the
- ### Fastly-ruby client
-
+ # A simple wrapper around the fastly-ruby client.
class Client < DelegateClass(Fastly)
-
def initialize(opts={})
super(Fastly.new(opts))
end
-
end
-
end