qutebrowser_url_mark 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/CHANGELOG.md +4 -0
- data/README.md +14 -1
- data/Rakefile +14 -3
- data/exe/qutebrowser-url-mark +15 -0
- data/lib/qutebrowser_url_mark/version.rb +16 -1
- data/lib/qutebrowser_url_mark.rb +15 -0
- data/sig/qutebrowser_url_mark.rbs +15 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ac0f45be2eff2f696f6eb4ad85378ae83e5fd3555cf31a4b5b37833df6b78d9
|
4
|
+
data.tar.gz: 50c4fb23fbedb65e7c0d395ba566f682e7480452a53a01a99e072d7036a003f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 584c52b36915cce87f7eebfe9b5ac97f97da2529ed8f1568037e53b47dc4f052e413c5d240a16b458301899089ccf97c619832fc529b729bb7d1452d149beedc
|
7
|
+
data.tar.gz: 061b4fd4f3e167175c9eadf39105ef029961f2de863ce8e6bd7483a17d1fd94c8224f7e18bf9c8489ea980b389a1fbecdaf8358fcb9c314cd785b5e3ecca12ea
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -27,4 +27,17 @@ Bug reports and pull requests are welcome.
|
|
27
27
|
|
28
28
|
## License
|
29
29
|
|
30
|
-
|
30
|
+
Copyright (C) 2025 gemmaro
|
31
|
+
|
32
|
+
This program is free software: you can redistribute it and/or modify
|
33
|
+
it under the terms of the GNU General Public License as published by
|
34
|
+
the Free Software Foundation, either version 3 of the License, or
|
35
|
+
(at your option) any later version.
|
36
|
+
|
37
|
+
This program is distributed in the hope that it will be useful,
|
38
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
39
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
40
|
+
GNU General Public License for more details.
|
41
|
+
|
42
|
+
You should have received a copy of the GNU General Public License
|
43
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
data/Rakefile
CHANGED
@@ -13,11 +13,22 @@ Rake::TestTask.new(:test) do |t|
|
|
13
13
|
t.test_files = FileList['test/**/*_test.rb']
|
14
14
|
end
|
15
15
|
|
16
|
-
|
16
|
+
default = %i[test]
|
17
17
|
|
18
|
-
|
18
|
+
rubocop = true
|
19
19
|
|
20
|
-
|
20
|
+
begin
|
21
|
+
require 'rubocop/rake_task'
|
22
|
+
rescue LoadError
|
23
|
+
rubocop = false
|
24
|
+
end
|
25
|
+
|
26
|
+
if rubocop
|
27
|
+
RuboCop::RakeTask.new
|
28
|
+
default << :rubocop
|
29
|
+
end
|
30
|
+
|
31
|
+
task(default:)
|
21
32
|
|
22
33
|
task :sig do
|
23
34
|
sh 'typeprof',
|
data/exe/qutebrowser-url-mark
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
|
+
# Copyright (C) 2025 gemmaro
|
4
|
+
#
|
5
|
+
# This program is free software: you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# This program is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU General Public License
|
16
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
17
|
+
|
3
18
|
require 'yaml'
|
4
19
|
require 'optparse'
|
5
20
|
require 'logger'
|
@@ -1,3 +1,18 @@
|
|
1
|
+
# Copyright (C) 2025 gemmaro
|
2
|
+
#
|
3
|
+
# This program is free software: you can redistribute it and/or modify
|
4
|
+
# it under the terms of the GNU General Public License as published by
|
5
|
+
# the Free Software Foundation, either version 3 of the License, or
|
6
|
+
# (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
15
|
+
|
1
16
|
module QutebrowserURLMark
|
2
|
-
VERSION = '0.1.
|
17
|
+
VERSION = '0.1.1'
|
3
18
|
end
|
data/lib/qutebrowser_url_mark.rb
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
# Copyright (C) 2025 gemmaro
|
2
|
+
#
|
3
|
+
# This program is free software: you can redistribute it and/or modify
|
4
|
+
# it under the terms of the GNU General Public License as published by
|
5
|
+
# the Free Software Foundation, either version 3 of the License, or
|
6
|
+
# (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
15
|
+
|
1
16
|
require 'uri'
|
2
17
|
require 'stringio'
|
3
18
|
require_relative 'qutebrowser_url_mark/version'
|
@@ -1,3 +1,18 @@
|
|
1
|
+
# Copyright (C) 2025 gemmaro
|
2
|
+
#
|
3
|
+
# This program is free software: you can redistribute it and/or modify
|
4
|
+
# it under the terms of the GNU General Public License as published by
|
5
|
+
# the Free Software Foundation, either version 3 of the License, or
|
6
|
+
# (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
15
|
+
|
1
16
|
module QutebrowserURLMark
|
2
17
|
VERSION: String
|
3
18
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: qutebrowser_url_mark
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gemmaro
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: qutebrowser_url_mark is a library for parsing and serializing qutebrowser's
|
14
14
|
URL marks (quickmarks or bookmarks).
|
@@ -37,6 +37,7 @@ metadata:
|
|
37
37
|
homepage_uri: https://codeberg.org/gemmaro/qutebrowser-url-mark
|
38
38
|
source_code_uri: https://codeberg.org/gemmaro/qutebrowser-url-mark.git
|
39
39
|
changelog_uri: https://codeberg.org/gemmaro/qutebrowser-url-mark/src/branch/main/CHANGELOG.md
|
40
|
+
documenation_uri: https://rubydoc.info/gems/qutebrowser_url_mark
|
40
41
|
post_install_message:
|
41
42
|
rdoc_options: []
|
42
43
|
require_paths:
|
@@ -52,7 +53,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
53
|
- !ruby/object:Gem::Version
|
53
54
|
version: '0'
|
54
55
|
requirements: []
|
55
|
-
rubygems_version: 3.
|
56
|
+
rubygems_version: 3.5.11
|
56
57
|
signing_key:
|
57
58
|
specification_version: 4
|
58
59
|
summary: qutebrowser's URL mark parser and serializer
|