Yotsuba
Yotsuba facilitates getting download links from the DomDomSoft Anime Downloader server.
Installation
Add this line to your application's Gemfile:
gem 'yotsuba'
And then execute:
$ bundle
Or install it yourself as:
$ gem install yotsuba
Usage
Quick Start
$ export DOMDOM_KEY='your-domdom-key-goes-here'
anime = Yotsuba::Anime["Clannad: After Story"]
anime.files
episode = anime.files.first
episode.download_links
Verbose Example
Yotsuba.get_animes
Yotsuba::Anime.clear_anime_list!
Yotsuba::Anime.all
Yotsuba::Anime[123]
Yotsuba::Anime["Title"]
Yotsuba::Anime[/Sword/]
anime = Yostuba::Anime["Some Anime"]
anime.files
anime.id
anime.title
anime.num_files
episode = anime.files.first
episode.id
episode.name
episode.size
episode.first_downloaded
episode.times_downloaded
episode.anime_id
episode.anime
episode.download_links
Development
After checking out the repo, run bin/setup
to install dependencies. Then, run bin/console
for an interactive prompt that will allow you to experiment.
Contributing
- Fork it ( https://github.com/suchipi/yotsuba/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request