my-local-putio 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61a79c61fc4ee64058c994640793d2ca8648f6810f3191096f7075b9eae43ae9
4
- data.tar.gz: ff63d69b128c8d017fcdeffa0e345dd775b5fa6d6e14ff3f6526204b127e2630
3
+ metadata.gz: c20b3bf5804c220a60d9e0bc08e6c1c2e2a3d4ea427677093de87b2234c511cc
4
+ data.tar.gz: a34051392a5360d8a41c509e71319f87b48122a0268c89a52131a7219a030c80
5
5
  SHA512:
6
- metadata.gz: 15a91d0b583c45f9997ac9f19c412efc1bf2fad3b63dd6c801f9e86f995ae76dc95a7fc3f6ccde501b9c683f0d529af1c59e3e17131edcb9345f872eeeb0021a
7
- data.tar.gz: b84abe3a51341f71ea02658221589d7d78384a003a28d32ff55e258a57c9c04cb4c133d7c30a6ca09b0bafbd02e7cd0a06d6da3eca3d30adfab1311281f2cd95
6
+ metadata.gz: e9b5055ffcd3fb0a8055675a87a7bf94791f1f3ecb63e7f83723ad0af75bf958d6eceaea2f21b173c39fb75292135f2824d1ac301b378329a8376643e274e8e2
7
+ data.tar.gz: d6c17907348ab1578ef9d6ee70e2747328beff85cbfe73209fd8e84b3bb2f4a4d9911b450978bc1d1101f8b91cf638e2b928f981e59d3371b172cbdb7b1f4552
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # v1.0.1
2
+
3
+ - Fixing small require bug
4
+
1
5
  # v1.0.0
2
6
 
3
7
  - Rename from *put.io fetcher* to *my local put.io* in order to have more features (and not limited only to fetch files)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- my-local-putio (1.0.0)
4
+ my-local-putio (1.0.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -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-fetcher
6
+ # More info: https://github.com/rafaelbiriba/my-local-putio
7
7
  #
8
8
  # Copyright disclaimer:
9
- # Put.io fetcher uses the official Put.io API v2. Use this tool for legal purposes
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 Fetcher or the script author will not take
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 "putio_fetcher/version"
21
- require "putio_fetcher/configuration"
22
- require "putio_fetcher/logger"
23
- require "putio_fetcher/putio_cli"
24
- require "putio_fetcher/fetcher"
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
@@ -1,3 +1,3 @@
1
1
  module MyLocalPutio
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: my-local-putio
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafael Biriba