mygem_paradoxv5 1.4.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/Gemfile +3 -0
- data/LICENSE.txt +23 -0
- data/README.md +18 -0
- data/lib/mygem/version.rb +5 -0
- data/lib/mygem.rb +1 -0
- data/mygem.gemspec +24 -0
- data/sig/mygem.rbs +3 -0
- metadata +53 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 83458d3c75a0c685f508f28e1ea693b771c95f2d7492d8c6e1badeafccf4787b
|
4
|
+
data.tar.gz: f7e4e4e6ddee05a0ce1057dea321a59b45e3e63b26dc77e9b305468c79f9f5e8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d48a7dbb36de97db24dc0cf4e223c1c8ef8e4c81207e960273451ef46a9fff8b99342fb53c8073c365143fee36eab074881726aa00e5a21070180186de4c22ca
|
7
|
+
data.tar.gz: f920e0c000bfc31fc6703fc22c909d0828cccde342809523f0343839c09e0f5a2853a3729577392e10d93f91e46bcf509e13155d7f758700deeac682b7546856
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
Boost Software License - Version 1.0 - August 17th, 2003
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person or organization
|
4
|
+
obtaining a copy of the software and accompanying documentation covered by
|
5
|
+
this license (the "Software") to use, reproduce, display, distribute,
|
6
|
+
execute, and transmit the Software, and to prepare derivative works of the
|
7
|
+
Software, and to permit third-parties to whom the Software is furnished to
|
8
|
+
do so, all subject to the following:
|
9
|
+
|
10
|
+
The copyright notices in the Software and this entire statement, including
|
11
|
+
the above license grant, this restriction and the following disclaimer,
|
12
|
+
must be included in all copies of the Software, in whole or in part, and
|
13
|
+
all derivative works of the Software, unless such copies or derivative
|
14
|
+
works are solely in the form of machine-executable object code generated by
|
15
|
+
a source language processor.
|
16
|
+
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
20
|
+
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
21
|
+
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
22
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
23
|
+
DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
`mygem` is just a minimal Ruby Gem I made to learn Gem-cutting.
|
2
|
+
It is only a `gem`, no `rake`.
|
3
|
+
|
4
|
+
Its goal is to be a basic example of a Ruby Gem.
|
5
|
+
But it is also complete in file-structure conventions and enhanced with two GitHub Actions:
|
6
|
+
|
7
|
+
* [`packages.yml`](.github/workflows/packages.yml) – Publish to
|
8
|
+
[GitHub Packages](https://docs.github.com/packages/working-with-a-github-packages-registry/working-with-the-rubygems-registry)
|
9
|
+
whenëver a GitHub Release is published.
|
10
|
+
* [`pages.yml`](.github/workflows/pages.yml) – Generate [YARD docs](https://yardoc.org/) and
|
11
|
+
[publish to GitHub Pages](https://github.blog/changelog/2022-07-27-github-pages-custom-github-actions-workflows-beta/)
|
12
|
+
whenëver the `main` branch receives a code update.
|
13
|
+
|
14
|
+
|
15
|
+
## License
|
16
|
+
|
17
|
+
Copyright ParadoxV5 2022. Distributed under the
|
18
|
+
[Boost Software License, Version 1.0](https://www.boost.org/users/license.html).
|
data/lib/mygem.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require_relative 'mygem/version'
|
data/mygem.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require_relative 'lib/mygem/version'
|
3
|
+
|
4
|
+
Gem::Specification.new do |spec|
|
5
|
+
spec.name = 'mygem_paradoxv5'
|
6
|
+
spec.summary = 'A simple example Ruby Gem'
|
7
|
+
spec.version = MyGem::VERSION
|
8
|
+
spec.author = 'ParadoxV5'
|
9
|
+
spec.license = 'BSL-1.0'
|
10
|
+
|
11
|
+
github_account = spec.author
|
12
|
+
github = File.join 'https://github.com', github_account, 'mygem'
|
13
|
+
spec.homepage = github
|
14
|
+
spec.metadata = {
|
15
|
+
"homepage_uri" => spec.homepage,
|
16
|
+
"source_code_uri" => github,
|
17
|
+
"changelog_uri" => File.join(github, 'commits'),
|
18
|
+
"bug_tracker_uri" => File.join(github, 'issues')
|
19
|
+
}
|
20
|
+
|
21
|
+
spec.files = Dir['**/*']
|
22
|
+
|
23
|
+
spec.required_ruby_version = '>= 2'
|
24
|
+
end
|
data/sig/mygem.rbs
ADDED
metadata
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mygem_paradoxv5
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.4.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- ParadoxV5
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-07-10 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description:
|
14
|
+
email:
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- Gemfile
|
20
|
+
- LICENSE.txt
|
21
|
+
- README.md
|
22
|
+
- lib/mygem.rb
|
23
|
+
- lib/mygem/version.rb
|
24
|
+
- mygem.gemspec
|
25
|
+
- sig/mygem.rbs
|
26
|
+
homepage: https://github.com/ParadoxV5/mygem
|
27
|
+
licenses:
|
28
|
+
- BSL-1.0
|
29
|
+
metadata:
|
30
|
+
homepage_uri: https://github.com/ParadoxV5/mygem
|
31
|
+
source_code_uri: https://github.com/ParadoxV5/mygem
|
32
|
+
changelog_uri: https://github.com/ParadoxV5/mygem/commits
|
33
|
+
bug_tracker_uri: https://github.com/ParadoxV5/mygem/issues
|
34
|
+
post_install_message:
|
35
|
+
rdoc_options: []
|
36
|
+
require_paths:
|
37
|
+
- lib
|
38
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '2'
|
43
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
requirements: []
|
49
|
+
rubygems_version: 3.4.10
|
50
|
+
signing_key:
|
51
|
+
specification_version: 4
|
52
|
+
summary: A simple example Ruby Gem
|
53
|
+
test_files: []
|