module Dumper::Profiles

Constants

Profile

Public Class Methods

get_4chan(url, path, from = 1, to = -1) click to toggle source
# File lib/dumper/profiles/4chan.rb, line 37
def get_4chan(url, path, from = 1, to = -1)
  FourChan.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_behoimi(url, path, from = 1, to = 1) click to toggle source
# File lib/dumper/profiles/behoimi.rb, line 36
def get_behoimi(url, path, from = 1, to = 1)
  Behoimi.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_booru(url, path, from = 1, to = 1) click to toggle source
# File lib/dumper/profiles/booru.rb, line 42
def get_booru(url, path, from = 1, to = 1)
  Booru.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_deviantart(url, path, from = 1, to = -1) click to toggle source
# File lib/dumper/profiles/deviantart.rb, line 37
def get_deviantart(url, path, from = 1, to = -1)
  DeviantArt.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_fakku(url, path, from = 1, to = 999) click to toggle source
# File lib/dumper/profiles/fakku.rb, line 53
def get_fakku(url, path, from = 1, to = 999)
  Fakku.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_fc2(url, path, from = 1, to = -1) click to toggle source
# File lib/dumper/profiles/fc2.rb, line 37
def get_fc2(url, path, from = 1, to = -1)
  Fc2.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_gelbooru(url, path, from = 1, to = 1) click to toggle source
# File lib/dumper/profiles/gelbooru.rb, line 42
def get_gelbooru(url, path, from = 1, to = 1)
  Gelbooru.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_imagebam(url, path, from = 1, to = -1) click to toggle source
# File lib/dumper/profiles/imagebam.rb, line 43
def get_imagebam(url, path, from = 1, to = -1)
  Imagebam.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_mangaeden(url, path, from = 1, to = -1) click to toggle source
# File lib/dumper/profiles/mangaeden.rb, line 53
def get_mangaeden(url, path, from = 1, to = -1)
  MangaEden.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_mangago(url, path, from = 1, to = 1) click to toggle source
# File lib/dumper/profiles/mangago.rb, line 41
def get_mangago(url, path, from = 1, to = 1)
  MangaGo.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_mangahere(url, path, from = 1, to = -1) click to toggle source
# File lib/dumper/profiles/mangahere.rb, line 50
def get_mangahere(url, path, from = 1, to = -1)
  MangaHere.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_multiplayer(url, path, from = 1, to = -1) click to toggle source
# File lib/dumper/profiles/multiplayer.rb, line 43
def get_multiplayer(url, path, from = 1, to = -1)
  Multiplayer.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_sankakucomplex(url, path, from = 1, to = -1) click to toggle source
# File lib/dumper/profiles/sankakucomplex.rb, line 74
def get_sankakucomplex(url, path, from = 1, to = -1)
  SankakuComplex.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_teca(url, path, from = 1, to = -1) click to toggle source
# File lib/dumper/profiles/teca.rb, line 42
def get_teca(url, path, from = 1, to = -1)
  Teca.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
get_yande(url, path, from = 1, to = 1) click to toggle source
# File lib/dumper/profiles/yande.rb, line 42
def get_yande(url, path, from = 1, to = 1)
  YandeRe.new { |p|
    p.dump     url, path, from, to
    p.shutdown
  }
end
info_4chan() click to toggle source
# File lib/dumper/profiles/4chan.rb, line 44
def info_4chan
  { from: :enabled, to: :enabled, type: :images }
end
info_behoimi() click to toggle source
# File lib/dumper/profiles/behoimi.rb, line 43
def info_behoimi
  { from: :enabled, to: :enabled, type: :images }
end
info_booru() click to toggle source
# File lib/dumper/profiles/booru.rb, line 49
def info_booru
  { from: :enabled, to: :enabled, type: :pages }
end
info_deviantart() click to toggle source
# File lib/dumper/profiles/deviantart.rb, line 44
def info_deviantart
  { from: :enabled, to: :enabled, type: :images }
end
info_fakku() click to toggle source
# File lib/dumper/profiles/fakku.rb, line 60
def info_fakku
  { from: :enabled, to: :enabled, type: :images }
end
info_fc2() click to toggle source
# File lib/dumper/profiles/fc2.rb, line 44
def info_fc2
  { from: :enabled, to: :enabled, type: :images }
end
info_gelbooru() click to toggle source
# File lib/dumper/profiles/gelbooru.rb, line 49
def info_gelbooru
  { from: :enabled, to: :enabled, type: :pages }
end
info_imagebam() click to toggle source
# File lib/dumper/profiles/imagebam.rb, line 50
def info_imagebam
  { from: :enabled, to: :enabled, type: :images }
end
info_mangaeden() click to toggle source
# File lib/dumper/profiles/mangaeden.rb, line 60
def info_mangaeden
  { from: :enabled, to: :enabled, type: :chapters }
end
info_mangago() click to toggle source
# File lib/dumper/profiles/mangago.rb, line 48
def info_mangago
  { from: :enabled, to: :enabled, type: :images }
end
info_mangahere() click to toggle source
# File lib/dumper/profiles/mangahere.rb, line 57
def info_mangahere
  { from: :enabled, to: :enabled, type: :chapters }
end
info_multiplayer() click to toggle source
# File lib/dumper/profiles/multiplayer.rb, line 50
def info_multiplayer
  { from: :enabled, to: :enabled, type: :images }
end
info_sankakucomplex() click to toggle source
# File lib/dumper/profiles/sankakucomplex.rb, line 81
def info_sankakucomplex
  { from: :enabled, to: :enabled, type: :images }
end
info_teca() click to toggle source
# File lib/dumper/profiles/teca.rb, line 49
def info_teca
  { from: :enabled, to: :enabled, type: :images }
end
info_yande() click to toggle source
# File lib/dumper/profiles/yande.rb, line 49
def info_yande
  { from: :enabled, to: :enabled, type: :pages }
end