pngcheck 0.3.0-x64-mingw-ucrt → 0.3.1-x64-mingw-ucrt

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: 4a0cae18b039dcf8430f21220f2dec4ba9b994cc58c2e5961a05f7e8707a635b
4
- data.tar.gz: 22e9949686b2c1bc6b2644ff31ef76e2abc5f528513c2e0e311457bb195aac80
3
+ metadata.gz: 6a6b8ed700533bdd500b10b80cb6e0d3de7ef4cb0776e0cdc89bed207a093b70
4
+ data.tar.gz: 5fdc3c34b811c8210d91f8f8f89f737a7568550cc5066237c0f708b02169b056
5
5
  SHA512:
6
- metadata.gz: 46a1f94e297b22190c6deb1979e0cf2ceda96f02783ba2b83457bd09575d67ffc2d23b64562a28fa2f039fef70dd573e578d2dd4a382daf0346a70cfd9497718
7
- data.tar.gz: 44e88bb9be180f5daad2df00d471f283bf55b4f8e8851573d6b8e5e3054eb57ff99171ded844ae8744bb51ad8946ade32b3ee377ef3ced213c1f112a8ccb0c46
6
+ metadata.gz: 7aa7e3de61efe1f0cf690fa8ada429bf48cf2953a6116e97ba8c9a668546dc8080a330b3d1e05db3b7870fac2f0b20177b00477f01b32ccf8f69d79635768588
7
+ data.tar.gz: 42f2b71ed6c04a1627d2d1f0e44d9bbb9fd34cf1c90fa55fb06dd6e9e6bddbaa43c5991dcf6d8bc15b398a96185893b5ba55e6f8e7996a4ce4de061f129e68be
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PngCheck
4
- VERSION = "0.3.0"
4
+ VERSION = "0.3.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pngcheck
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: x64-mingw-ucrt
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-10 00:00:00.000000000 Z
11
+ date: 2022-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -103,10 +103,7 @@ dependencies:
103
103
  description:
104
104
  email:
105
105
  - open.source@ribose.com
106
- executables:
107
- - console
108
- - rspec
109
- - setup
106
+ executables: []
110
107
  extensions: []
111
108
  extra_rdoc_files: []
112
109
  files:
@@ -118,9 +115,6 @@ files:
118
115
  - LICENSE.txt
119
116
  - README.adoc
120
117
  - Rakefile
121
- - bin/console
122
- - bin/rspec
123
- - bin/setup
124
118
  - ext/Makefile
125
119
  - ext/extconf.rb
126
120
  - ext/layout.rb
data/bin/console DELETED
@@ -1,15 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require "bundler/setup"
5
- require "pngcheck"
6
-
7
- # You can add fixtures and/or initialization code here to make experimenting
8
- # with your gem easier. You can also use a different console, if you like.
9
-
10
- # (If you use this, don't forget to add pry to your Gemfile!)
11
- # require "pry"
12
- # Pry.start
13
-
14
- require "irb"
15
- IRB.start(__FILE__)
data/bin/rspec DELETED
@@ -1,29 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- #
5
- # This file was generated by Bundler.
6
- #
7
- # The application 'rspec' is installed as part of a gem, and
8
- # this file is here to facilitate running it.
9
- #
10
-
11
- require "pathname"
12
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
13
- Pathname.new(__FILE__).realpath)
14
-
15
- bundle_binstub = File.expand_path("bundle", __dir__)
16
-
17
- if File.file?(bundle_binstub)
18
- if /This file was generated by Bundler/.match?(File.read(bundle_binstub, 300))
19
- load(bundle_binstub)
20
- else
21
- abort("Your `bin/bundle` was not generated by Bundler.
22
- Replace `bin/bundle` by running `bundle binstubs bundler --force`.")
23
- end
24
- end
25
-
26
- require "rubygems"
27
- require "bundler/setup"
28
-
29
- load Gem.bin_path("rspec-core", "rspec")
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here