pandoc_binary 2.16 → 2.16.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: 391d98f34d765aee6b9a691f692233d10e597878a12b7d29d340795f5f373a94
4
- data.tar.gz: 2424cb48d869a3bf43eed2a67eec70e70df8da43cc00461c95d44cf385b8fa40
3
+ metadata.gz: 587aeb7006a08366e9083545b469eb77899b31b065362d11cc31c40cf69b93a0
4
+ data.tar.gz: d20c71d8332fdccbe239f33366dd47638a7aa1c0829f027566baf88038063f06
5
5
  SHA512:
6
- metadata.gz: 270ae0d440ca0e6f558de3a2133088e8ec710bd29ce58688e7684e3a0e40c5443d6f44559455fa2fdbe0a5f1fc19f72e641d972aa9caa35389c84b676d1092bf
7
- data.tar.gz: dd9a175b6ca53f8a9e0735c922796418df46bcc15c04b0a72962af3dbd07a7e26559bd49ce5663c83d13d0b0ce79d4907b3880f115ac1487725bd2316b3d1bcd
6
+ metadata.gz: 46109c7594c0711b51b4ee19ea42c7b09abfff3a9a0be9d0c05b027ab47dea403a1730ce750146180b23979f75ac6146b68a3f96935839686545ac3ec8071bea
7
+ data.tar.gz: 8a5965ad11b764c27eae7df524ca5a103b029570b2d8858c47f2f4605152dea8ce8075d57d0c4517e71734389d33c6be735d02fe9da9aa9a55d8742d8f28b148
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pandoc_binary (2.16)
4
+ pandoc_binary (2.16.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module PandocBinary
5
- VERSION = "2.16"
5
+ VERSION = "2.16.1"
6
6
  end
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pandoc_binary
3
3
  version: !ruby/object:Gem::Version
4
- version: '2.16'
4
+ version: 2.16.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuya.Nishida.
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-04-26 00:00:00.000000000 Z
11
+ date: 2022-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: debug
@@ -46,14 +46,13 @@ files:
46
46
  - libexec/pandoc-linux-arm64.gz
47
47
  - libexec/pandoc-macOS.gz
48
48
  - libexec/pandoc-windows-x86_64.gz
49
- - pandoc_binary.gemspec
50
49
  - sig/pandoc_binary.rbs
51
50
  homepage: https://github.com/nishidayuya/pandoc_binary_gem
52
51
  licenses: []
53
52
  metadata:
54
53
  homepage_uri: https://github.com/nishidayuya/pandoc_binary_gem
55
54
  source_code_uri: https://github.com/nishidayuya/pandoc_binary_gem
56
- post_install_message:
55
+ post_install_message:
57
56
  rdoc_options: []
58
57
  require_paths:
59
58
  - lib
@@ -69,7 +68,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
68
  version: '0'
70
69
  requirements: []
71
70
  rubygems_version: 3.3.7
72
- signing_key:
71
+ signing_key:
73
72
  specification_version: 4
74
73
  summary: Provides binaries for Pandoc
75
74
  test_files: []
@@ -1,37 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/pandoc_binary/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "pandoc_binary"
7
- spec.version = PandocBinary::VERSION
8
- spec.authors = ["Yuya.Nishida."]
9
- spec.email = ["yuya@j96.org"]
10
-
11
- spec.summary = "Provides binaries for Pandoc"
12
- spec.description = spec.summary
13
- spec.homepage = "https://github.com/nishidayuya/pandoc_binary_gem"
14
- spec.required_ruby_version = ">= 2.6.0"
15
-
16
- spec.metadata["homepage_uri"] = spec.homepage
17
- spec.metadata["source_code_uri"] = spec.homepage
18
-
19
- # Specify which files should be added to the gem when it is released.
20
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
22
- `git ls-files -z`.split("\x0").reject do |f|
23
- (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
24
- end
25
- end
26
- spec.bindir = "exe"
27
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
28
- spec.require_paths = ["lib"]
29
-
30
- # Uncomment to register a new dependency of your gem
31
- # spec.add_dependency "example-gem", "~> 1.0"
32
-
33
- # For more information and examples about making a new gem, check out our
34
- # guide at: https://bundler.io/guides/creating_gem.html
35
-
36
- spec.add_development_dependency("debug")
37
- end