module ShikiAPI
Constants
- VERSION
Public Class Methods
anime(id)
click to toggle source
# File lib/ShikiAPI.rb, line 16 def self.anime(id) get("/animes/#{id}", :headers =>{'Content-Type' => 'application/json'}) end
search(name)
click to toggle source
# File lib/ShikiAPI.rb, line 11 def self.search(name) get("/animes?search=#{URI.encode(name)}&limit=50", :headers =>{'Content-Type' => 'application/json'}) end