Class: MySportsFeeds::Response::Success

Inherits:
Object
  • Object
show all
Defined in:
lib/mysportsfeeds/response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(body, status = 200) ⇒ Success

Returns a new instance of Success.



6
7
8
9
# File 'lib/mysportsfeeds/response.rb', line 6

def initialize(body, status = 200)
  @body   = body
  @status = status
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



4
5
6
# File 'lib/mysportsfeeds/response.rb', line 4

def body
  @body
end

#statusObject (readonly)

Returns the value of attribute status.



4
5
6
# File 'lib/mysportsfeeds/response.rb', line 4

def status
  @status
end

Instance Method Details

#success?Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/mysportsfeeds/response.rb', line 11

def success?
  true
end