pandoc_binary 2.16 → 2.17

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: 391d98f34d765aee6b9a691f692233d10e597878a12b7d29d340795f5f373a94
4
- data.tar.gz: 2424cb48d869a3bf43eed2a67eec70e70df8da43cc00461c95d44cf385b8fa40
3
+ metadata.gz: c657e6e9982634d343844ab05dd6cbed7ac38f0924fd7ea306418b4775d64f4d
4
+ data.tar.gz: 3b99c1c9c2e5470bacacd944ded529d3306c51d2f0843959d76217bc3121e2b7
5
5
  SHA512:
6
- metadata.gz: 270ae0d440ca0e6f558de3a2133088e8ec710bd29ce58688e7684e3a0e40c5443d6f44559455fa2fdbe0a5f1fc19f72e641d972aa9caa35389c84b676d1092bf
7
- data.tar.gz: dd9a175b6ca53f8a9e0735c922796418df46bcc15c04b0a72962af3dbd07a7e26559bd49ce5663c83d13d0b0ce79d4907b3880f115ac1487725bd2316b3d1bcd
6
+ metadata.gz: 7174d82f03aaf74750acd64b8f7150c30a750434b7e62831048039a57313a443e384fddc2621a1c54bbfe12c50c15e4c43ff178938fd46e73d66bcb25e6bd3fa
7
+ data.tar.gz: f2c841612ff7c2fb7783d56ee9c40cb64c1e6ef621d1d80586bc95bde6e71d5074fb3ed4ae9b088943eb0750e472ccef2374f6f9d9efb461d67b574347d50925
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.17)
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.17"
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.17'
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