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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d85d8755fbc10276c1d24b05a1e08504bcad57d4dafadbac047a107e3b894907
4
- data.tar.gz: '06696548e685711ab9dcaa2bac98a7d644ad5164348fe92e6b82aeb8c1ef4778'
3
+ metadata.gz: b9fcc224d4252e077be96e017ee4ab3fb1f6ba911b85400aefab2b826f91326a
4
+ data.tar.gz: 71b1460d62860112b988838e03e78f927051568f3c543d2b8a2d534f892aa3e0
5
5
  SHA512:
6
- metadata.gz: b0912c9bcf800ea527b5580b05ab5570d216fff147b20f5c12b12cd89856b03b3950c7f883f3af44bc5159e4034f663b605e44cf68237481083feccbb571b893
7
- data.tar.gz: b4dd7ca5020b131d88179939fb6f11c7d793135fe3b12fda2799cf5b715bc0d1d4ddacf7729b05ac80483c4d3202d4d526f79f10e7b389077810b7c793cbdbb0
6
+ metadata.gz: 58a085398da69512e8533d1c62340053049b32ebcaa968f0144b966b08c62c1782bb9c8a2dcd2d537b4c310cee0d3674e17dd3add0fe6de18b5e3d430e54ad5d
7
+ data.tar.gz: 3239060ab4b9a2c9bef6e31b3d649573100f3bc43e1369525f6ed08f6564d613bd82a4d32cfe7d6ace75c525ad096cabca5a0aa15c5eb3f5f501f6c7708fd4e2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.2.0] - 2024-09-12
4
+
5
+ - Testing out a new github action workflow
6
+
3
7
  ## [0.1.0] - 2024-09-12
4
8
 
5
9
  - Initial release
@@ -3,7 +3,7 @@
3
3
  module Gh
4
4
  module Action
5
5
  module Test
6
- VERSION = "0.1.0"
6
+ VERSION = "0.2.0"
7
7
  end
8
8
  end
9
9
  end
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.1.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.4.6
52
+ rubygems_version: 3.5.16
54
53
  signing_key:
55
54
  specification_version: 4
56
55
  summary: A test gem for GitHub Actions
@@ -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