gh-action-test 0.1.0 → 0.2.0
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/gh/action/test/version.rb +1 -1
- metadata +2 -3
- data/gh-action-test.gemspec +0 -37
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b9fcc224d4252e077be96e017ee4ab3fb1f6ba911b85400aefab2b826f91326a
|
4
|
+
data.tar.gz: 71b1460d62860112b988838e03e78f927051568f3c543d2b8a2d534f892aa3e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58a085398da69512e8533d1c62340053049b32ebcaa968f0144b966b08c62c1782bb9c8a2dcd2d537b4c310cee0d3674e17dd3add0fe6de18b5e3d430e54ad5d
|
7
|
+
data.tar.gz: 3239060ab4b9a2c9bef6e31b3d649573100f3bc43e1369525f6ed08f6564d613bd82a4d32cfe7d6ace75c525ad096cabca5a0aa15c5eb3f5f501f6c7708fd4e2
|
data/CHANGELOG.md
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gh-action-test
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dustin Fisher
|
@@ -24,7 +24,6 @@ files:
|
|
24
24
|
- LICENSE.txt
|
25
25
|
- README.md
|
26
26
|
- Rakefile
|
27
|
-
- gh-action-test.gemspec
|
28
27
|
- lib/gh/action/test.rb
|
29
28
|
- lib/gh/action/test/version.rb
|
30
29
|
- sig/gh/action/test.rbs
|
@@ -50,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
50
49
|
- !ruby/object:Gem::Version
|
51
50
|
version: '0'
|
52
51
|
requirements: []
|
53
|
-
rubygems_version: 3.
|
52
|
+
rubygems_version: 3.5.16
|
54
53
|
signing_key:
|
55
54
|
specification_version: 4
|
56
55
|
summary: A test gem for GitHub Actions
|
data/gh-action-test.gemspec
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require_relative "lib/gh/action/test/version"
|
4
|
-
|
5
|
-
Gem::Specification.new do |spec|
|
6
|
-
spec.name = "gh-action-test"
|
7
|
-
spec.version = Gh::Action::Test::VERSION
|
8
|
-
spec.authors = ["Dustin Fisher"]
|
9
|
-
spec.email = ["dustin@dustinfisher.com"]
|
10
|
-
|
11
|
-
spec.summary = "A test gem for GitHub Actions"
|
12
|
-
spec.description = "This gem is used to test GitHub Actions for gem publishing."
|
13
|
-
spec.homepage = "https://github.com/dustinfisher/gh-action-test"
|
14
|
-
spec.license = "MIT"
|
15
|
-
spec.required_ruby_version = ">= 2.6.0"
|
16
|
-
|
17
|
-
spec.metadata["homepage_uri"] = spec.homepage
|
18
|
-
spec.metadata["source_code_uri"] = spec.homepage
|
19
|
-
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
|
20
|
-
|
21
|
-
# Specify which files should be added to the gem when it is released.
|
22
|
-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
23
|
-
spec.files = Dir.chdir(__dir__) do
|
24
|
-
`git ls-files -z`.split("\x0").reject do |f|
|
25
|
-
(File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor])
|
26
|
-
end
|
27
|
-
end
|
28
|
-
spec.bindir = "exe"
|
29
|
-
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
30
|
-
spec.require_paths = ["lib"]
|
31
|
-
|
32
|
-
# Uncomment to register a new dependency of your gem
|
33
|
-
# spec.add_dependency "example-gem", "~> 1.0"
|
34
|
-
|
35
|
-
# For more information and examples about making a new gem, check out our
|
36
|
-
# guide at: https://bundler.io/guides/creating_gem.html
|
37
|
-
end
|