lumynyx 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: 7e754c6b0340cef3be2f4358fe53d863fdec8b81970d9481a63e3b8c537c563b
4
+ data.tar.gz: d1508f07eeb31615116fe1b5f2231112a6825f8c560de8edd7b840a7716ad57d
5
+ SHA512:
6
+ metadata.gz: b097ea6b20ebf8bd7c91efc79bcb94e6811255331f9e8585316bd6fa2a78124e867f78047425e47d82f9c43b6e5dd51b2c37fa4154b5bb85d31e19a010b626d1
7
+ data.tar.gz: f26a8a3310c98e23d6a4fb56858cf0e27cb95a666ab0a380c778d1c8aba8074ebbf34aed7f4e87417596f92f0d675416912df8d03f075059a146186f515dcf55
data/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # Lumynyx
2
+
3
+ Placeholder gem.
4
+
5
+ ## Installation
6
+
7
+ Placeholder only.
8
+
9
+ ## Usage
10
+
11
+ Placeholder only.
12
+
13
+ ## Development
14
+
15
+ Placeholder only.
16
+
17
+ ## Contributing
18
+
19
+ Placeholder only.
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ task default: %i[]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Lumynyx
4
+ VERSION = "0.1.0"
5
+ end
data/lib/lumynyx.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lumynyx/version"
4
+
5
+ module Lumynyx
6
+ class Error < StandardError; end
7
+ # No functionality. Placeholder.
8
+ end
data/lumynyx.gemspec ADDED
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/lumynyx/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "lumynyx"
7
+ spec.version = Lumynyx::VERSION
8
+ spec.authors = ["Lumynyx"]
9
+ spec.email = ["no@email.local"]
10
+
11
+ spec.summary = "Namespace placeholder for Lumynyx."
12
+ spec.description = "Namespace placeholder for Lumynyx."
13
+ spec.homepage = nil
14
+ spec.required_ruby_version = ">= 3.1.0"
15
+ spec.license = nil
16
+
17
+ spec.metadata.clear
18
+
19
+ gemspec = File.basename(__FILE__)
20
+ spec.files = Dir.glob("lib/**/*") + ["README.md", gemspec, "Rakefile"]
21
+
22
+ spec.bindir = "exe"
23
+ spec.executables = []
24
+ spec.require_paths = ["lib"]
25
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lumynyx
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Lumynyx
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2025-05-01 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Namespace placeholder for Lumynyx.
14
+ email:
15
+ - no@email.local
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - Rakefile
22
+ - lib/lumynyx.rb
23
+ - lib/lumynyx/version.rb
24
+ - lumynyx.gemspec
25
+ homepage:
26
+ licenses:
27
+ -
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.1.0
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.5.22
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: Namespace placeholder for Lumynyx.
48
+ test_files: []