class Fuck::Off

Public Class Methods

new(options = {}) click to toggle source

@param [Hash] options options to send FOaaS @option options [String] :name @option options [String] :from @example

Fuck::Off.new(name: "You", from: "Me").call
  => #<PayDirt::Result:0x8a544f4 @data= {
        "message"=>"Fuck off, You.",
        "subtitle"=>"- Me"
      }, @success=true>
# File lib/fuck/off.rb, line 14
def initialize(options = {})
  options = {
    resource: "off",
  }.merge(options)

  load_options(:resource, :name, :from, options)
end