vine_dl

Auth a user in to vine and download the available videos to your computer or server.


License
MIT
Install
gem install vine_dl -v 0.1.0

Documentation

Build StatusGem Version

alt text

VineDl

A rubygem to auth in and rip a users Vine videos.

Installation

Add this line to your application's Gemfile:

gem 'vine_dl'

OR

Install from github:

gem 'vine_dl', :git => 'git://github.com/dannyvassallo/vine_dl.git'

And then execute:

$ bundle

Or install it yourself as:

$ gem install vine_dl

Usage

user = VineDl::User.new("your_vine_username", "your_vine_password")
user.videos.each do |video|
  video.download("custom/path/to/wherever.mp4")
end

Development

After checking out the repo, run bin/setup to install dependencies. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Running tests

Simply run the rake command.

rake
# or
rake test

You can configure .env to disable mocks in tests. This requires valid credentials in ENV.

VINE_USERNAME=YOUR_REAL_VINE_USERNAME
VINE_PASSWORD=YOUR_REAL_VINE_PASSWORD
NO_MOCKS=false

You can tell the tests not to delete the files it downloads.

VINE_USERNAME=YOUR_REAL_VINE_USERNAME
VINE_PASSWORD=YOUR_REAL_VINE_PASSWORD
NO_MOCKS=false
NO_DELETE_DOWNLOADED_FILES=false

Deploying to RubyGems

bundle exec rake release

When this command runs successfully, it does two things:

  1. Your git repository will be tagged with the version number.
  2. Your gem will be accessible through RubyGems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/dannyvassallo/vine_dl. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.