script_ripper 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 987b360a4e6447333e064b4a449a0aa6a300efd512a9a4028311615cc106721f
4
- data.tar.gz: 0f5892b689a3798f828434f8e9a87c389a0dceafe97f2f055a8c34f5c91d4d57
3
+ metadata.gz: 7b7b0e4c2b04ee693c936da30f9a0b3cd82cb8dfe9fd566e8209c3b484e1045d
4
+ data.tar.gz: 3f223964118d46ab91eef43242b64b4c7ceb00e4cb9a946835870fe0b4cfec65
5
5
  SHA512:
6
- metadata.gz: 5b7cf963825db3ed3802731fec4a27511a52d8f7b86abde2dfa568bf0c200ca5127aa9536e137782737dd9f5a11c22f21215616a494a26e9ae23303d78c77fa9
7
- data.tar.gz: 917cec678062943ae00ccca24a0859d84c4ac4b439e1b9825ff1231b31bce0490cbf62b6395d5f0fb1bf17c7606cf78a298760ed7540ea990d402cff4f52e0b2
6
+ metadata.gz: 6b7cb40e69daf620555fd6f9670e22a2ae64cc53ddb18a2198fc266d3eb260a6212512affd6d495b08ea283428afdb4f0669be7caa067e64a48ad3782c2b1476
7
+ data.tar.gz: 272e49d4fbcf127415d4a2e6b4f570ff91417089b66f82da2a586f0185f83c215485a34e55237b4ed1e9cbbceebf0fdacda1bea3559d2f4e58bdac631a3258b4
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- script_ripper (0.1.0)
4
+ script_ripper (0.1.1)
5
5
  nokogiri (~> 1.13)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -1,29 +1,38 @@
1
1
  # Script::Ripper
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/script/ripper`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Given a website like https://jellyfin.org/docs/general/administration/installing.html
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
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
- Add this line to your application's Gemfile:
8
+ Get a bash script like
10
9
 
11
- ```ruby
12
- gem 'script_ripper'
13
- ```
10
+ ```bash
11
+ # https://jellyfin.org/docs/general/administration/installing.html
14
12
 
15
- And then execute:
13
+ # Download the latest container image.
14
+ docker pull jellyfin/jellyfin
16
15
 
17
- $ bundle
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
- Or install it yourself as:
25
+ ## Installation
20
26
 
21
- $ gem install script_ripper
27
+ ```bash
28
+ gem install script_ripper
29
+ ```
22
30
 
23
31
  ## Usage
24
32
 
25
- TODO: Write usage instructions here
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/[USERNAME]/script_ripper.
44
+ Bug reports and pull requests are welcome on GitHub at https://github.com/davebenvenuti/script_ripper.
36
45
 
37
46
  ## License
38
47
 
@@ -1,3 +1,3 @@
1
1
  module ScriptRipper
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: script_ripper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Benvenuti