ordgen 0.0.1
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/CHANGELOG.md +3 -0
- data/Manifest.txt +6 -0
- data/README.md +34 -0
- data/Rakefile +30 -0
- data/lib/ordgen/version.rb +25 -0
- data/lib/ordgen.rb +7 -0
- metadata +105 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: f81c27daf37a83c6e78e399e12da3f77205c2218a60bce440b5414e230ebdb4b
|
|
4
|
+
data.tar.gz: b01b36a70c5548fee8eeef06929e44d7284a150535ad3d365a9bb0483e72a07a
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 121dcfc8553a4fde5bd680800acb61f849dcb56e02dd3aaa0fe02b44c9c1292064ae11f6312fa44273c8ab90d1860f8c6d40f934b45bf6cf28f1ab85ca2e8f4a
|
|
7
|
+
data.tar.gz: ada636abb166618489ad28f97b496b45e7a9ce75cbf60d2cdf09647faff3b063573671d4c34b4c048f6ab58be82329b437110b8bb44488d918c494727d24714b
|
data/CHANGELOG.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Ordinal (Generative ORC-721) Inscription Helpers
|
|
2
|
+
|
|
3
|
+
ordgen - ordinals (generative ORC-721) inscription (on bitcoin & co) helpers to generate (pixel art) images and much more; bonus - incl. the og command-line tool
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
* home :: [github.com/ordbase/generative-orc-721](https://github.com/ordbase/generative-orc-721)
|
|
8
|
+
* bugs :: [github.com/ordbase/generative-orc-721/issues](https://github.com/ordbase/generative-orc-721/issues)
|
|
9
|
+
* gem :: [rubygems.org/gems/ordgen](https://rubygems.org/gems/ordgen)
|
|
10
|
+
* rdoc :: [rubydoc.info/gems/ordgen](http://rubydoc.info/gems/ordgen)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
To be done
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
The scripts are dedicated to the public domain.
|
|
26
|
+
Use it as you please with no restrictions whatsoever.
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
Please post in the #generative-orc-721 channel
|
|
31
|
+
in the ordinal punks discord.
|
|
32
|
+
For an invite
|
|
33
|
+
see <https://twitter.com/OrdinalPunks/status/1620230583711576068>.
|
|
34
|
+
|
data/Rakefile
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
require 'hoe'
|
|
2
|
+
require './lib/ordgen/version.rb'
|
|
3
|
+
|
|
4
|
+
Hoe.spec 'ordgen' do
|
|
5
|
+
|
|
6
|
+
self.version = Pixelart::Module::Ord::VERSION
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
self.summary = "ordgen - ordinals (generative ORC-721) inscription (on bitcoin & co) helpers to generate (pixel art) images and much more; bonus - incl. the og command-line tool"
|
|
10
|
+
self.description = summary
|
|
11
|
+
|
|
12
|
+
self.urls = { home: 'https://github.com/ordbase/generative-orc-721' }
|
|
13
|
+
|
|
14
|
+
self.author = 'Gerald Bauer'
|
|
15
|
+
self.email = 'gerald.bauer@gmail.com'
|
|
16
|
+
|
|
17
|
+
# switch extension to .markdown for gihub formatting
|
|
18
|
+
self.readme_file = 'README.md'
|
|
19
|
+
self.history_file = 'CHANGELOG.md'
|
|
20
|
+
|
|
21
|
+
self.extra_deps = [
|
|
22
|
+
['pixelart'],
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
self.licenses = ['Public Domain']
|
|
26
|
+
|
|
27
|
+
self.spec_extras = {
|
|
28
|
+
required_ruby_version: '>= 2.3'
|
|
29
|
+
}
|
|
30
|
+
end
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
|
|
2
|
+
module Pixelart
|
|
3
|
+
module Module
|
|
4
|
+
module Ord
|
|
5
|
+
MAJOR = 0
|
|
6
|
+
MINOR = 0
|
|
7
|
+
PATCH = 1
|
|
8
|
+
VERSION = [MAJOR,MINOR,PATCH].join('.')
|
|
9
|
+
|
|
10
|
+
def self.version
|
|
11
|
+
VERSION
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def self.banner
|
|
15
|
+
"ordgen/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}] in (#{root})"
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def self.root
|
|
19
|
+
File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
end # module Ord
|
|
23
|
+
end # module Module
|
|
24
|
+
end # module Pixelart
|
|
25
|
+
|
data/lib/ordgen.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ordgen
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Gerald Bauer
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2023-06-13 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: pixelart
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rdoc
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '4.0'
|
|
34
|
+
- - "<"
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '7'
|
|
37
|
+
type: :development
|
|
38
|
+
prerelease: false
|
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: '4.0'
|
|
44
|
+
- - "<"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '7'
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: hoe
|
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '3.23'
|
|
54
|
+
type: :development
|
|
55
|
+
prerelease: false
|
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - "~>"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '3.23'
|
|
61
|
+
description: ordgen - ordinals (generative ORC-721) inscription (on bitcoin & co)
|
|
62
|
+
helpers to generate (pixel art) images and much more; bonus - incl. the og command-line
|
|
63
|
+
tool
|
|
64
|
+
email: gerald.bauer@gmail.com
|
|
65
|
+
executables: []
|
|
66
|
+
extensions: []
|
|
67
|
+
extra_rdoc_files:
|
|
68
|
+
- CHANGELOG.md
|
|
69
|
+
- Manifest.txt
|
|
70
|
+
- README.md
|
|
71
|
+
files:
|
|
72
|
+
- CHANGELOG.md
|
|
73
|
+
- Manifest.txt
|
|
74
|
+
- README.md
|
|
75
|
+
- Rakefile
|
|
76
|
+
- lib/ordgen.rb
|
|
77
|
+
- lib/ordgen/version.rb
|
|
78
|
+
homepage: https://github.com/ordbase/generative-orc-721
|
|
79
|
+
licenses:
|
|
80
|
+
- Public Domain
|
|
81
|
+
metadata: {}
|
|
82
|
+
post_install_message:
|
|
83
|
+
rdoc_options:
|
|
84
|
+
- "--main"
|
|
85
|
+
- README.md
|
|
86
|
+
require_paths:
|
|
87
|
+
- lib
|
|
88
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
89
|
+
requirements:
|
|
90
|
+
- - ">="
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: '2.3'
|
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
|
+
requirements:
|
|
95
|
+
- - ">="
|
|
96
|
+
- !ruby/object:Gem::Version
|
|
97
|
+
version: '0'
|
|
98
|
+
requirements: []
|
|
99
|
+
rubygems_version: 3.3.7
|
|
100
|
+
signing_key:
|
|
101
|
+
specification_version: 4
|
|
102
|
+
summary: ordgen - ordinals (generative ORC-721) inscription (on bitcoin & co) helpers
|
|
103
|
+
to generate (pixel art) images and much more; bonus - incl. the og command-line
|
|
104
|
+
tool
|
|
105
|
+
test_files: []
|