pikesley/red5

View on GitHub
lib/red_5/root.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Red5
  class Root
    def self.all
      resource = RestClient::Resource.new "http://swapi.co/api/"
      JSON.parse resource.get.body
    end
  end
end