script_ripper 0.1.0 → 0.1.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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +23 -14
- data/lib/script_ripper/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: 7b7b0e4c2b04ee693c936da30f9a0b3cd82cb8dfe9fd566e8209c3b484e1045d
|
|
4
|
+
data.tar.gz: 3f223964118d46ab91eef43242b64b4c7ceb00e4cb9a946835870fe0b4cfec65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b7cb40e69daf620555fd6f9670e22a2ae64cc53ddb18a2198fc266d3eb260a6212512affd6d495b08ea283428afdb4f0669be7caa067e64a48ad3782c2b1476
|
|
7
|
+
data.tar.gz: 272e49d4fbcf127415d4a2e6b4f570ff91417089b66f82da2a586f0185f83c215485a34e55237b4ed1e9cbbceebf0fdacda1bea3559d2f4e58bdac631a3258b4
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,29 +1,38 @@
|
|
|
1
1
|
# Script::Ripper
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Given a website like https://jellyfin.org/docs/general/administration/installing.html
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
<img width="730" alt="Screen Shot 2022-09-03 at 6 27 20 PM" src="https://user-images.githubusercontent.com/302063/188293241-8d7c79ac-33d8-418d-9f53-542a090004df.png">
|
|
6
6
|
|
|
7
|
-
## Installation
|
|
8
7
|
|
|
9
|
-
|
|
8
|
+
Get a bash script like
|
|
10
9
|
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
```
|
|
10
|
+
```bash
|
|
11
|
+
# https://jellyfin.org/docs/general/administration/installing.html
|
|
14
12
|
|
|
15
|
-
|
|
13
|
+
# Download the latest container image.
|
|
14
|
+
docker pull jellyfin/jellyfin
|
|
16
15
|
|
|
17
|
-
|
|
16
|
+
# Create persistent storage for configuration and cache data.
|
|
17
|
+
# Either create two directories on the host and use bind mounts:
|
|
18
|
+
# Or create two persistent volumes:
|
|
19
|
+
mkdir /path/to/config
|
|
20
|
+
mkdir /path/to/cache
|
|
21
|
+
docker volume create jellyfin-config
|
|
22
|
+
docker volume create jellyfin-cache
|
|
23
|
+
```
|
|
18
24
|
|
|
19
|
-
|
|
25
|
+
## Installation
|
|
20
26
|
|
|
21
|
-
|
|
27
|
+
```bash
|
|
28
|
+
gem install script_ripper
|
|
29
|
+
```
|
|
22
30
|
|
|
23
31
|
## Usage
|
|
24
32
|
|
|
25
|
-
|
|
26
|
-
|
|
33
|
+
```bash
|
|
34
|
+
script_ripper -g h4 "https://jellyfin.org/docs/general/administration/installing.html" "Ubuntu"
|
|
35
|
+
```
|
|
27
36
|
## Development
|
|
28
37
|
|
|
29
38
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
@@ -32,7 +41,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
32
41
|
|
|
33
42
|
## Contributing
|
|
34
43
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
44
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/davebenvenuti/script_ripper.
|
|
36
45
|
|
|
37
46
|
## License
|
|
38
47
|
|