runegrad 0.1.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: c11dc75ed54dd050996d9981c4b50a119d7e4c741952f6367a5f58cbf997b6d0
4
+ data.tar.gz: a857912aca65c0e209d3aa6c912fffb0188a03ecef602044a5271056789ba8cf
5
+ SHA512:
6
+ metadata.gz: 05273a30ee1dbb801215034c81da148d404c789954687dd38c8aafc8a82ac2c42d94b166ca1e6603d5bed27b35207bd93aa415d4dbe4f243e8012503894c70e5
7
+ data.tar.gz: af5a58285b05f4f5af16fdfdd12a2b6dbca373ac16bf619e0a514f6f7cef1b18259e6e169c0b2fa1ef03517918028712203c81e0f11064e3d4403d434f38c580
data/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # runegrad
2
+
3
+ Runegrad launcher and distribution platform.
4
+
5
+ This is a placeholder gem registered to claim the name `runegrad` on RubyGems.
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Runegrad
4
+ VERSION = "0.1.0"
5
+ end
data/lib/runegrad.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "runegrad/version"
4
+
5
+ module Runegrad
6
+ class Error < StandardError; end
7
+ # Runegrad launcher and distribution platform placeholder
8
+ end
data/runegrad.gemspec ADDED
@@ -0,0 +1,20 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = "runegrad"
3
+ spec.version = "0.1.0"
4
+ spec.authors = ["Runegrad"]
5
+ spec.email = ["runegrad@gmail.com"]
6
+
7
+ spec.summary = "Runegrad launcher and distribution platform placeholder"
8
+ spec.description = "Runegrad is a game launcher and distribution platform focused on fair developer revenue (85/15 split) and accessible game pricing."
9
+ spec.homepage = "https://github.com/runegrad"
10
+ spec.license = "MIT"
11
+ spec.required_ruby_version = ">= 2.6.0"
12
+
13
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
14
+
15
+ spec.metadata["homepage_uri"] = spec.homepage
16
+ spec.metadata["source_code_uri"] = spec.homepage
17
+
18
+ spec.files = ["lib/runegrad.rb", "lib/runegrad/version.rb", "README.md", "runegrad.gemspec"]
19
+ spec.require_paths = ["lib"]
20
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: runegrad
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Runegrad
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-05-30 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Runegrad is a game launcher and distribution platform focused on fair
14
+ developer revenue (85/15 split) and accessible game pricing.
15
+ email:
16
+ - runegrad@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - README.md
22
+ - lib/runegrad.rb
23
+ - lib/runegrad/version.rb
24
+ - runegrad.gemspec
25
+ homepage: https://github.com/runegrad
26
+ licenses:
27
+ - MIT
28
+ metadata:
29
+ allowed_push_host: https://rubygems.org
30
+ homepage_uri: https://github.com/runegrad
31
+ source_code_uri: https://github.com/runegrad
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 2.6.0
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 3.5.22
48
+ signing_key:
49
+ specification_version: 4
50
+ summary: Runegrad launcher and distribution platform placeholder
51
+ test_files: []