pngcheck 0.3.0 → 0.3.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: daffdfadcdd93d0707efa4910dac451e3299b7fabc086bbdb68a584bc687bbc7
4
- data.tar.gz: 306162d7fab571aeb7c00530c262c3e383c4316fa718d17d35a6532af9555096
3
+ metadata.gz: '09edc8320b2c09d38d9d7936ac49e71e4acb8385b3154f452d74f60e00999693'
4
+ data.tar.gz: b626e168407f629d396cc07be2e182a0b4e4970e48d9c803fdcabc01126a7470
5
5
  SHA512:
6
- metadata.gz: fce720595f1eaa4ff22452bef455403a34ee9a5c1773038b8f01f649ddb5d7b251cec40b7f312e0af76e27ce17b63a91a8bb244ca40c445d0c7b8211face2e9c
7
- data.tar.gz: 9a6927d9a61bf72aec94819c499d62f6f1bca69a26ebd15c9e249a1639bc2f84d873b70389ca9b7b42d1c55cf627e548f0a7f14ba58de0231ff0777be0c101c7
6
+ metadata.gz: a6321ee31d50a8be3d08289cc4a754446a90d33575e3b87a4af203c247372baac2eea77a3db33876c0292a69eef2c5966b79c6d2b641e2f08c5b4aaccca5f3ee
7
+ data.tar.gz: 1777d07c2786118e5b442d8c5f01f969f7281471ef6cd865ccb4c55f391074c464e934d5f298c2e23ec163d1d2de56c3242ac1830d92c41b2b86d742bb1c08fe
@@ -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: ruby
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
@@ -117,10 +117,7 @@ dependencies:
117
117
  description:
118
118
  email:
119
119
  - open.source@ribose.com
120
- executables:
121
- - console
122
- - rspec
123
- - setup
120
+ executables: []
124
121
  extensions:
125
122
  - ext/extconf.rb
126
123
  extra_rdoc_files: []
@@ -133,9 +130,6 @@ files:
133
130
  - LICENSE.txt
134
131
  - README.adoc
135
132
  - Rakefile
136
- - bin/console
137
- - bin/rspec
138
- - bin/setup
139
133
  - ext/Makefile
140
134
  - ext/extconf.rb
141
135
  - 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