version_testing 1.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d1f25738d0a17d82d67871b7d85d44541b3af7716427c259420b6e63086463b9
4
+ data.tar.gz: f0e2f2bfbe636d73190a936ca1f7c04b5178513f226db5ea82041ae8f9804d5c
5
+ SHA512:
6
+ metadata.gz: e1b92f1fbb10a11167e761519a3d6d4750e216f04424096fb4f9980b13111577efc3983a50c0917430580e88410a4254f68d99d7586cda2aff6fc067a95cb2d6
7
+ data.tar.gz: adce21d2fdb81c3c8bfa705ba15c136df47c440ead35f44eae9f70cc2d65d8d0df6830d5183786b4fcdd2d8922427c7bf80308b8a179daf9de087bfba82b1cfa
data/Dockerfile ADDED
@@ -0,0 +1,13 @@
1
+ FROM ruby:3.2.9
2
+
3
+ # Set the working directory
4
+ WORKDIR /workdir
5
+
6
+ # Copy the rest of the application
7
+ COPY . .
8
+
9
+ # Build the gem
10
+ # RUN gem build braze_sentry.gemspec
11
+
12
+ # Set the default command
13
+ CMD ["bash"]
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,18 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ version_testing (1.0.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+
10
+ PLATFORMS
11
+ arm64-darwin-24
12
+ ruby
13
+
14
+ DEPENDENCIES
15
+ version_testing!
16
+
17
+ BUNDLED WITH
18
+ 2.5.17
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Version Testing
2
+
3
+ Testing gem version releases from a docker container
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module VersionTesting
4
+ VERSION = '1.0.0'
5
+ end
@@ -0,0 +1,2 @@
1
+ module VersionTesting
2
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: version_testing
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Matt Docl
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2025-09-05 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Testing gem version releases from a docker container.
14
+ email:
15
+ - mattwd7@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - Dockerfile
21
+ - Gemfile
22
+ - Gemfile.lock
23
+ - README.md
24
+ - lib/version_testing.rb
25
+ - lib/version_testing/version.rb
26
+ homepage: https://github.com/mattwd7/version_testing
27
+ licenses: []
28
+ metadata: {}
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '3.2'
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubygems_version: 3.4.19
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: Testing gem version releases from a docker container
48
+ test_files: []