link_searcher 0.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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/link_searcher.rb +8 -0
  3. metadata +46 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2aa0834672afed6f0d84bdefb2f7a753656e3116f14909452ae7ab2c4559a7c8
4
+ data.tar.gz: bdb29edae93328805150192f52c4474fba0ab2135ff2009b21d52fe8bfbabfda
5
+ SHA512:
6
+ metadata.gz: 122c15ae4ef46b6fdc5aede3399ede236b88570db9c07f1aa4a3a39c18affff0253e241bd55a4ab1ead608460fc69a5953eeecd49eec45903e94e592ef8bb530
7
+ data.tar.gz: 9c440adac512b09814401e1f0e9b68ede2cf59815c0072d79f2ed169c36654be573ba69ef4fb0ef91bb0fc45526273421baff663bae1b198481cc293a765c38a
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Main class
4
+ class LinkSearcher
5
+ VERSION = '0.0.1'
6
+
7
+ def initialize; end
8
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: link_searcher
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Kirill Leonov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-11-08 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Parser for links
14
+ email: leonov7632@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/link_searcher.rb
20
+ homepage: https://github.com/leonovk/link_searcher
21
+ licenses:
22
+ - MIT
23
+ metadata:
24
+ homepage_uri: https://github.com/leonovk/link_searcher
25
+ source_code_uri: https://github.com/leonovk/link_searcher
26
+ documentation_uri: https://github.com/leonovk/link_searcher
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: 2.7.0
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubygems_version: 3.4.21
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: Parser for links
46
+ test_files: []