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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f3a5626e25b6b083441b55e0b3d7cd6b489c8e65732e72c04d2b9a26bed1e24c
4
- data.tar.gz: ad3561d51c1646657130b38d6ba80c70ced79cab8966f28fa29433a12d3e8a08
3
+ metadata.gz: 1ac0f45be2eff2f696f6eb4ad85378ae83e5fd3555cf31a4b5b37833df6b78d9
4
+ data.tar.gz: 50c4fb23fbedb65e7c0d395ba566f682e7480452a53a01a99e072d7036a003f3
5
5
  SHA512:
6
- metadata.gz: e30cc66e220bc3b21b254e039855edb7ea0a92a8c4ed9a3ac5a7dcf8a896224454e1f0ff6f808faf8da1169ce6bf015dd3dac211eadee50c9fde31c4acab212e
7
- data.tar.gz: fd2470de8c5026d31f9848c50273880ea36eca1e0c9c74e7fd541184aed1f87a021acdb48d25c122bd2d1855423772308e83348194f92623051a210b0cfa9428
6
+ metadata.gz: 584c52b36915cce87f7eebfe9b5ac97f97da2529ed8f1568037e53b47dc4f052e413c5d240a16b458301899089ccf97c619832fc529b729bb7d1452d149beedc
7
+ data.tar.gz: 061b4fd4f3e167175c9eadf39105ef029961f2de863ce8e6bd7483a17d1fd94c8224f7e18bf9c8489ea980b389a1fbecdaf8358fcb9c314cd785b5e3ecca12ea
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.1.1 - 2025-03-12
6
+
7
+ This is a maintenance release.
8
+
5
9
  ## 0.1.0 - 2024-01-09
6
10
 
7
11
  - Initial release
data/README.md CHANGED
@@ -27,4 +27,17 @@ Bug reports and pull requests are welcome.
27
27
 
28
28
  ## License
29
29
 
30
- This gem is released under the GNU General Public License version 3 or later.
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
- require 'rubocop/rake_task'
16
+ default = %i[test]
17
17
 
18
- RuboCop::RakeTask.new
18
+ rubocop = true
19
19
 
20
- task default: %i[test rubocop]
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',
@@ -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.0'
17
+ VERSION = '0.1.1'
3
18
  end
@@ -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.0
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: 2024-01-09 00:00:00.000000000 Z
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.3.26
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