my-local-putio 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/my-local-putio.rb +8 -8
- data/lib/my-local-putio/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c20b3bf5804c220a60d9e0bc08e6c1c2e2a3d4ea427677093de87b2234c511cc
|
4
|
+
data.tar.gz: a34051392a5360d8a41c509e71319f87b48122a0268c89a52131a7219a030c80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9b5055ffcd3fb0a8055675a87a7bf94791f1f3ecb63e7f83723ad0af75bf958d6eceaea2f21b173c39fb75292135f2824d1ac301b378329a8376643e274e8e2
|
7
|
+
data.tar.gz: d6c17907348ab1578ef9d6ee70e2747328beff85cbfe73209fd8e84b3bb2f4a4d9911b450978bc1d1101f8b91cf638e2b928f981e59d3371b172cbdb7b1f4552
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/lib/my-local-putio.rb
CHANGED
@@ -3,13 +3,13 @@
|
|
3
3
|
# Put.io download script! The easiest way to have all all your put.io files locally.
|
4
4
|
#
|
5
5
|
# Created by: Rafael Biriba - biribarj@gmail.com
|
6
|
-
# More info: https://github.com/rafaelbiriba/putio
|
6
|
+
# More info: https://github.com/rafaelbiriba/my-local-putio
|
7
7
|
#
|
8
8
|
# Copyright disclaimer:
|
9
|
-
# Put.io
|
9
|
+
# My Local Put.io uses the official Put.io API v2. Use this tool for legal purposes
|
10
10
|
# only. You are the only one responsible for what you are downloading from
|
11
11
|
# your put.io account, ensuring that your download does not infringe any legal
|
12
|
-
# or copyright constraints. Put.io
|
12
|
+
# or copyright constraints. My Local Put.io or the script author will not take
|
13
13
|
# responsibility for any of your downloading acts.
|
14
14
|
|
15
15
|
require "net/http"
|
@@ -17,11 +17,11 @@ require "openssl"
|
|
17
17
|
require "ostruct"
|
18
18
|
require "yaml"
|
19
19
|
require "optparse"
|
20
|
-
require "
|
21
|
-
require "
|
22
|
-
require "
|
23
|
-
require "
|
24
|
-
require "
|
20
|
+
require "my-local-putio/version"
|
21
|
+
require "my-local-putio/configuration"
|
22
|
+
require "my-local-putio/logger"
|
23
|
+
require "my-local-putio/putio_cli"
|
24
|
+
require "my-local-putio/fetcher"
|
25
25
|
|
26
26
|
module MyLocalPutio
|
27
27
|
end
|