module SpacexApi::Client::Rockets
Public Instance Methods
get_rocket(id)
click to toggle source
# File lib/spacex_api/client/rockets.rb, line 10 def get_rocket(id) get("rockets/#{id}") end
query_rockets(body = nil)
click to toggle source
# File lib/spacex_api/client/rockets.rb, line 14 def query_rockets(body = nil) post("rockets/query", body) end
rockets()
click to toggle source
# File lib/spacex_api/client/rockets.rb, line 6 def rockets get("rockets") end