class Nokaya::App

Public Instance Methods

adn(*args) click to toggle source
# File lib/nokaya/app.rb, line 83
def adn *args
  puts Status.wait if options['verbose']
  image = ADN.new(args, options)
  image.save
  puts Status.saved(image) if options['verbose']
end
appstore(*args) click to toggle source
# File lib/nokaya/app.rb, line 39
def appstore *args
  puts Status.wait if options['verbose']
  image = AppStore.new(args, options)
  image.save
  puts Status.saved_album(image) if options['verbose']
end
deviantart(*args) click to toggle source
# File lib/nokaya/app.rb, line 144
def deviantart *args
  puts Status.wait if options['verbose']
  image = Deviantart.new(args, options)
  image.save
  puts Status.saved_album(image) if options['verbose']
end
favd(*args) click to toggle source
# File lib/nokaya/app.rb, line 72
def favd *args
  puts Status.wait if options['verbose']
  image = Favd.new(args, options)
  image.save
  puts Status.saved(image) if options['verbose']
end
flickr_album(*args) click to toggle source
# File lib/nokaya/app.rb, line 124
def flickr_album *args
  puts Status.wait if options['verbose']
  image = FlickrAlbum.new(args, options)
  image.save
  puts Status.saved_album(image) if options['verbose']
end
imageshack_user(*args) click to toggle source
# File lib/nokaya/app.rb, line 154
def imageshack_user *args
  puts Status.wait if options['verbose']
  image = ImageshackUser.new(args, options)
  image.save
  puts Status.saved_album(image) if options['verbose']
end
imgur_album(*args) click to toggle source
# File lib/nokaya/app.rb, line 114
def imgur_album *args
  puts Status.wait if options['verbose']
  image = ImgurAlbum.new(args, options)
  image.save
  puts Status.saved_album(image) if options['verbose']
end
instagram(*args) click to toggle source
# File lib/nokaya/app.rb, line 61
def instagram *args
  puts Status.wait if options['verbose']
  image = Instagram.new(args, options)
  image.save
  puts Status.saved(image) if options['verbose']
end
movie(*args) click to toggle source
# File lib/nokaya/app.rb, line 17
def movie *args
  puts Status.wait_api if options['verbose']
  image = Movie.new(args, options)
  image.save
  puts Status.saved(image) if options['verbose']
end
music(*args) click to toggle source
# File lib/nokaya/app.rb, line 50
def music *args
  puts Status.wait if options['verbose']
  image = MusicStore.new(args, options)
  image.save
  puts Status.saved_album(image) if options['verbose']
end
photonet(*args) click to toggle source
# File lib/nokaya/app.rb, line 134
def photonet *args
  puts Status.wait if options['verbose']
  image = Photonet.new(args, options)
  image.save
  puts Status.saved_album(image) if options['verbose']
end
tumblr(*args) click to toggle source
# File lib/nokaya/app.rb, line 94
def tumblr *args
  puts Status.wait if options['verbose']
  image = Tumblr.new(args, options)
  image.save
  puts Status.saved(image) if options['verbose']
end
tumblr_album(*args) click to toggle source
# File lib/nokaya/app.rb, line 104
def tumblr_album *args
  puts Status.wait if options['verbose']
  image = TumblrAlbum.new(args, options)
  image.save
  puts Status.saved_album(image) if options['verbose']
end
tvshow(*args) click to toggle source
# File lib/nokaya/app.rb, line 28
def tvshow *args
  puts Status.wait_api if options['verbose']
  image = TVShow.new(args, options)
  image.save
  puts Status.saved(image) if options['verbose']
end
version() click to toggle source
# File lib/nokaya/app.rb, line 163
def version
  puts "\nNOKAYA\n\n"
  puts "Version:\t#{VERSION}\n\n"
  puts "Changelog:\thttps://github.com/ericdke/nokaya/blob/master/CHANGELOG.md\n"
  puts "Help:\t\thttps://github.com/ericdke/nokaya/blob/master/README.md\n\n"
end