bquorning-test-gem 0.3.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 +7 -0
- data/bquorning-test-gem.gemspec +24 -0
- data/lib/bquorning/test/gem/version.rb +9 -0
- data/lib/bquorning/test/gem.rb +10 -0
- metadata +46 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: daaf77316750cbade088cc801f1b90b43498897df5f725c14b679a192020dea2
|
4
|
+
data.tar.gz: a53a244ab31c8b99cc8adbd6c9fc3009eb753035203decfcbb2a81e493a39e9c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a79a88227f51e580ad77471cd20edfaafa023aa4cb0c28967deb2841fee0e33acef88959689866ab95e92ebc470e2fdc0ec19579614f7718d60202fb10732816
|
7
|
+
data.tar.gz: e33b6e22a86c7c33f2559c38ed59b2f8023824d314774530d7403c88c400ed95dacf7fa84a9f17120c1170fb14d4d5971df4a39591db339f4e0491527956fffc
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/bquorning/test/gem/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "bquorning-test-gem"
|
7
|
+
spec.version = Bquorning::Test::Gem::VERSION
|
8
|
+
spec.authors = ["Benjamin Quorning"]
|
9
|
+
spec.email = ["22333+bquorning@users.noreply.github.com"]
|
10
|
+
|
11
|
+
spec.summary = "Write a short summary, because RubyGems requires one."
|
12
|
+
spec.description = "Write a longer description or delete this line."
|
13
|
+
spec.homepage = "https://github.com/bquorning/bquorning-test-gem"
|
14
|
+
spec.license = "MIT"
|
15
|
+
spec.required_ruby_version = ">= 2.6.0"
|
16
|
+
|
17
|
+
spec.files = %w[
|
18
|
+
bquorning-test-gem.gemspec
|
19
|
+
lib/bquorning/test/gem.rb
|
20
|
+
lib/bquorning/test/gem/version.rb
|
21
|
+
]
|
22
|
+
|
23
|
+
spec.require_paths = ["lib"]
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bquorning-test-gem
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Benjamin Quorning
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-04-02 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Write a longer description or delete this line.
|
14
|
+
email:
|
15
|
+
- 22333+bquorning@users.noreply.github.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- bquorning-test-gem.gemspec
|
21
|
+
- lib/bquorning/test/gem.rb
|
22
|
+
- lib/bquorning/test/gem/version.rb
|
23
|
+
homepage: https://github.com/bquorning/bquorning-test-gem
|
24
|
+
licenses:
|
25
|
+
- MIT
|
26
|
+
metadata: {}
|
27
|
+
post_install_message:
|
28
|
+
rdoc_options: []
|
29
|
+
require_paths:
|
30
|
+
- lib
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 2.6.0
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
requirements: []
|
42
|
+
rubygems_version: 3.5.4
|
43
|
+
signing_key:
|
44
|
+
specification_version: 4
|
45
|
+
summary: Write a short summary, because RubyGems requires one.
|
46
|
+
test_files: []
|