pandoc_binary 2.14.2 → 2.16.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f76cad67d82f8e687857255dcc224f89d5eec2ef992d0d598b5cabc7b4342f92
4
- data.tar.gz: 52b48e8e815c0a2c9aa317fd8490b02320ffa5923b17cc8b985931e4df494c55
3
+ metadata.gz: 587aeb7006a08366e9083545b469eb77899b31b065362d11cc31c40cf69b93a0
4
+ data.tar.gz: d20c71d8332fdccbe239f33366dd47638a7aa1c0829f027566baf88038063f06
5
5
  SHA512:
6
- metadata.gz: 7489fa114664a08b79ec5f11ae72c411b5038d0ccfc3d3506cfe7612102306254b121155a55cadaf2c81a1f58b00c82446cabe44e1cd22edbf594d84a8f0850e
7
- data.tar.gz: 8d3ba961ce1406c3f910f711804a1e49dae84af706352eb5ce3047fd662467b3dc21d621ed7b12b6a42b218772855bfc899088668845ba1eab3b059a0da2017e
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.14.2)
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.14.2"
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.14.2
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-20 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