class Giphy::FlaggedGif

Public Instance Methods

inappropriate?() click to toggle source
# File lib/giphy/flagged_gif.rb, line 6
def inappropriate?
  puts hash.fetch('is_inappropriate')
  hash.fetch('is_inappropriate') == "1"
end
source_corrected() click to toggle source
# File lib/giphy/flagged_gif.rb, line 15
def source_corrected
  hash.fetch('source_corrected')
end
wrong_source?() click to toggle source
# File lib/giphy/flagged_gif.rb, line 11
def wrong_source?
  hash.fetch('is_wrong_source') == "1"
end