relaton-isbn 2.0.0 → 2.2.0.pre.alpha.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: fba42ff47b31197424622ac70ad30ee8c3b51628cd279076dd3e0101eb416aa6
4
- data.tar.gz: 24b4c2350aafb45bbb2f9f7f8adb7aa98e5ebc5a628f536468c094f48703d4cd
3
+ metadata.gz: 57f358b12e9e7df4787b6fe03533ad53f3478106df40d7de2e7ece2d0f3e6e89
4
+ data.tar.gz: 881b044c82e11bd1cc27ffa89a322192be4f3cf3f6f99a5c66e70f9a358759a5
5
5
  SHA512:
6
- metadata.gz: f5c0907bc6871fce681e2e8b502e87f61b53fd666660136a4d59fec54e20c087be23f87bd4096e16a3d915652598dbeb75a8447d0cb44ce26784f6240754267a
7
- data.tar.gz: 1f987cdea8dcff3ac0511c13593503b8105403f581d23a610a5ed1bb843a24c960926572ce8ebc5723b4a57c86981d1b10be2cfefcc1231b32e2c2f9b5156395
6
+ metadata.gz: '09b2b3a2033d1520dd676ceaf1d98dae18098a2086fdc90f450fa5fa39b8e4ee149d5dae6363d7b84d87f3387fa90fed7893ba80d0cd544487ca8f67e6e1f50e'
7
+ data.tar.gz: faf414b744990902865b9c32a1be009be99dbcffc53d3d6df70450259a9c317ab323ef84749219f462e7aba30870020f305bad822dfe79fa6a73b20e5ce1f8cd
@@ -1,5 +1,5 @@
1
1
  module Relaton
2
2
  module Isbn
3
- VERSION = "2.0.0".freeze
3
+ VERSION = "2.2.0.pre.alpha.1".freeze
4
4
  end
5
5
  end
@@ -0,0 +1,40 @@
1
+ require_relative "lib/relaton/isbn/version"
2
+
3
+ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
4
+ spec.name = "relaton-isbn"
5
+ spec.version = Relaton::Isbn::VERSION
6
+ spec.authors = ["Ribose Inc."]
7
+ spec.email = ["open.source@ribose.com"]
8
+
9
+ spec.summary = "Relaton::Isbn: retrieve publications by ISBN for " \
10
+ "bibliographic use using the BibliographicItem model"
11
+ spec.description = "Relaton::Isbn: retrieve publications by ISBN for " \
12
+ "bibliographic use using the BibliographicItem model"
13
+ spec.homepage = "https://github.com/relaton/relaton-isbn"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = Gem::Requirement.new(">= 3.3.0")
16
+
17
+ # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
18
+
19
+ spec.metadata["homepage_uri"] = spec.homepage
20
+ spec.metadata["source_code_uri"] = spec.homepage
21
+ # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
22
+
23
+ # Specify which files should be added to the gem when it is released.
24
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25
+ spec.files = Dir.chdir(__dir__) do
26
+ `git ls-files -z`.split("\x0").reject do |f|
27
+ (File.expand_path(f) == __FILE__) ||
28
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
29
+ end
30
+ end
31
+ spec.bindir = "exe"
32
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
33
+ spec.require_paths = ["lib"]
34
+
35
+ spec.add_dependency "relaton-bib", "~> 2.2.0.pre.alpha.1"
36
+ spec.add_dependency "relaton-core", "~> 2.2.0.pre.alpha.1"
37
+
38
+ # For more information and examples about making a new gem, check out our
39
+ # guide at: https://bundler.io/guides/creating_gem.html
40
+ end
metadata CHANGED
@@ -1,56 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-isbn
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.2.0.pre.alpha.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
+ autorequire:
8
9
  bindir: exe
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
+ date: 2026-06-26 00:00:00.000000000 Z
11
12
  dependencies:
12
- - !ruby/object:Gem::Dependency
13
- name: isoics
14
- requirement: !ruby/object:Gem::Requirement
15
- requirements:
16
- - - "~>"
17
- - !ruby/object:Gem::Version
18
- version: 0.1.0
19
- type: :runtime
20
- prerelease: false
21
- version_requirements: !ruby/object:Gem::Requirement
22
- requirements:
23
- - - "~>"
24
- - !ruby/object:Gem::Version
25
- version: 0.1.0
26
13
  - !ruby/object:Gem::Dependency
27
14
  name: relaton-bib
28
15
  requirement: !ruby/object:Gem::Requirement
29
16
  requirements:
30
17
  - - "~>"
31
18
  - !ruby/object:Gem::Version
32
- version: 2.0.0
19
+ version: 2.2.0.pre.alpha.1
33
20
  type: :runtime
34
21
  prerelease: false
35
22
  version_requirements: !ruby/object:Gem::Requirement
36
23
  requirements:
37
24
  - - "~>"
38
25
  - !ruby/object:Gem::Version
39
- version: 2.0.0
26
+ version: 2.2.0.pre.alpha.1
40
27
  - !ruby/object:Gem::Dependency
41
28
  name: relaton-core
42
29
  requirement: !ruby/object:Gem::Requirement
43
30
  requirements:
44
31
  - - "~>"
45
32
  - !ruby/object:Gem::Version
46
- version: 0.0.13
33
+ version: 2.2.0.pre.alpha.1
47
34
  type: :runtime
48
35
  prerelease: false
49
36
  version_requirements: !ruby/object:Gem::Requirement
50
37
  requirements:
51
38
  - - "~>"
52
39
  - !ruby/object:Gem::Version
53
- version: 0.0.13
40
+ version: 2.2.0.pre.alpha.1
54
41
  description: 'Relaton::Isbn: retrieve publications by ISBN for bibliographic use using
55
42
  the BibliographicItem model'
56
43
  email:
@@ -61,7 +48,6 @@ extra_rdoc_files: []
61
48
  files:
62
49
  - ".claude/settings.local.json"
63
50
  - ".rspec"
64
- - ".rubocop.yml"
65
51
  - CLAUDE.md
66
52
  - LICENSE.txt
67
53
  - README.adoc
@@ -73,6 +59,7 @@ files:
73
59
  - lib/relaton/isbn/processor.rb
74
60
  - lib/relaton/isbn/util.rb
75
61
  - lib/relaton/isbn/version.rb
62
+ - relaton-isbn.gemspec
76
63
  - sig/relaton/isbn.rbs
77
64
  homepage: https://github.com/relaton/relaton-isbn
78
65
  licenses:
@@ -80,6 +67,7 @@ licenses:
80
67
  metadata:
81
68
  homepage_uri: https://github.com/relaton/relaton-isbn
82
69
  source_code_uri: https://github.com/relaton/relaton-isbn
70
+ post_install_message:
83
71
  rdoc_options: []
84
72
  require_paths:
85
73
  - lib
@@ -87,14 +75,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
87
75
  requirements:
88
76
  - - ">="
89
77
  - !ruby/object:Gem::Version
90
- version: 3.2.0
78
+ version: 3.3.0
91
79
  required_rubygems_version: !ruby/object:Gem::Requirement
92
80
  requirements:
93
81
  - - ">="
94
82
  - !ruby/object:Gem::Version
95
83
  version: '0'
96
84
  requirements: []
97
- rubygems_version: 3.6.9
85
+ rubygems_version: 3.5.22
86
+ signing_key:
98
87
  specification_version: 4
99
88
  summary: 'Relaton::Isbn: retrieve publications by ISBN for bibliographic use using
100
89
  the BibliographicItem model'
data/.rubocop.yml DELETED
@@ -1,12 +0,0 @@
1
- # This project follows the Ribose OSS style guide.
2
- # https://github.com/riboseinc/oss-guides
3
- # All project-specific additions and overrides should be specified in this file.
4
-
5
- require: rubocop-rails
6
-
7
- inherit_from:
8
- - https://raw.githubusercontent.com/riboseinc/oss-guides/master/ci/rubocop.yml
9
- AllCops:
10
- TargetRubyVersion: 3.2
11
- Rails:
12
- Enabled: false