pngcheck 0.3.0-x86_64-linux → 0.3.1-x86_64-linux

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: 50230ae3d7ffb086ac1f23af72afd7151cf907358867fd529f0dea9a5374333e
4
- data.tar.gz: b1101e9007d250a85cfcbe59a7539e6a44dc8dc1f7d50b45298e76d2a1330009
3
+ metadata.gz: 290c24f25143663ecaa3217c9f349cc9d02e10bf6f8169c3add68d52738aee5f
4
+ data.tar.gz: 7fb027485e900b86258a38d56282991a44cd4e0d3f99b19963f5e15ad8cb6e98
5
5
  SHA512:
6
- metadata.gz: a2f975ebe9de5b8970d68604943ad2085682bb5d319cd50d2d2a0257899df58f7eada79efe2d367dff00d161616f7e1c78396026f44981b1ef26eec710e7a890
7
- data.tar.gz: 96fe2a53c4d2bffb71689482453d2ac97e0fa8bad5d812fded33be5842d206859ee516487b2a7932b0efd2f26e125325ba34f22a98cb967d2bf7f24d0d5e533c
6
+ metadata.gz: b8c73955d84309cd1b89517190aa6b746a0eed2c9f8bcb093ca82a3b9f93858d9703b80829fc0139a72d759cce09a4907b7a60afe4fea0b3cd0d0fe9e85999b6
7
+ data.tar.gz: cc13e9be12df5b98e3ff86ebffce3964ef554bf4a08a96c2e427dfbb7a5a17d4f1c43661300c9b6fa8e9b41f2da1baadabfa44eaae3b57ec28f99381a2c673ec
@@ -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: x86_64-linux
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