pngcheck 0.3.0-x86_64-darwin → 0.3.1-x86_64-darwin

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: 1a34e7f489a3de62fe544aca4ef218026a6239ab3b03fbc1a733a1d420a61960
4
- data.tar.gz: 674c55271eff69ec3517f4c5cd20968c4ade66f38f880d2d99b4cebffd0414d2
3
+ metadata.gz: ba90b69848ccbf776a1f001b0feeea12be26765029dac07f01ce3deb7c22bae1
4
+ data.tar.gz: 53f52e31aae0cc97a9c2733b641a0a8c15169c95fc0f4996c01931365474bed2
5
5
  SHA512:
6
- metadata.gz: '016470580b7067c2eda1ec892618dbf3a9d1371dda8cac11c2882ce5440e913a0bff80357ea5de2b035c9fb0115db7d6a8b825ff878ff8eb409496c874eaa103'
7
- data.tar.gz: ac9f199f16fa0c072c8d53ab9b7fd7429071726414e46b043322ead85c227d5a53729db9c6fd5ae42634a6c545cc49a4d535938aac0af973dbdba625a7bccad3
6
+ metadata.gz: 20540461122e44292d0782fe17406c58338c27615e80fc6c2cb899c96571cdde9e3f7ccd3ddca82d32b6628ed93015eaa4d431bd6c69b4b4fe26054bce73179c
7
+ data.tar.gz: b8ade98d0437f88a331ddc235a3d67d0cdefaf3b4d462e08029ba803645f89ca79dbc4446b98bce6495a40ef1342a1d0d10612a19f6c6f0aa81c717db562709e
@@ -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-darwin
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