calldata 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 551706c609cd9556f135f3dbbf62d5e343c1fccd897152d718203bc983648b2f
4
+ data.tar.gz: 6cf0af56dcbcc8604969e0857b5388fd102451a9ea3a14f53e95a9ebd4567883
5
+ SHA512:
6
+ metadata.gz: 7339470bc30d4291aaedbc16a46c34b8741291053c75d0d2a1def94228ef5aede56b73beb0e78d00cd7f653aee463698a6671cea33cbf1b2ac361aa5cd3dca65
7
+ data.tar.gz: 379a4949a771c5938881c560f1b3b7b96ff59cb3c2779954a86215f0eab6cfd19780367296fdc398982fca11760ab06bfbdead6068173724cf995abe6721f3b1
data/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ ### 0.0.1 / 2023-11-22
2
+
3
+ * Everything is new. First release
data/Manifest.txt ADDED
@@ -0,0 +1,5 @@
1
+ CHANGELOG.md
2
+ Manifest.txt
3
+ README.md
4
+ Rakefile
5
+ lib/calldata.rb
data/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # Calldata Coders & Helpers
2
+
3
+ calldata - Calldata.encode / Calldata.decode using utf8_to_hex and hex_to_utf8 helpers and more for inscriptions / inscribes for ethereum & co
4
+
5
+
6
+ * home :: [github.com/s6ruby/rubidity](https://github.com/s6ruby/rubidity)
7
+ * bugs :: [github.com/s6ruby/rubidity/issues](https://github.com/s6ruby/rubidity/issues)
8
+ * gem :: [rubygems.org/gems/calldata](https://rubygems.org/gems/calldata)
9
+ * rdoc :: [rubydoc.info/gems/calldata](http://rubydoc.info/gems/calldata)
10
+
11
+
12
+
13
+ ## What's Ethscription Calldata - Ethereum Inscription / Inscribe?!
14
+
15
+ See [Introducing Ethscriptions - A new way of creating and sharing digital artifacts on the Ethereum blockchain using transaction calldata »](https://medium.com/@dumbnamenumbers/introducing-ethscriptions-698b295d6f2a)
16
+
17
+
18
+
19
+ ## Usage
20
+
21
+ To be continued...
22
+
23
+
24
+
25
+
26
+ ## Bonus - More Blockchain (Crypto) Tools, Libraries & Scripts In Ruby
27
+
28
+ See [**/blockchain**](https://github.com/rubycocos/blockchain)
29
+ at the ruby code commons (rubycocos) org.
30
+
31
+
32
+ ## Questions? Comments?
33
+
34
+ Join us in the [Rubidity (community) discord (chat server)](https://discord.gg/3JRnDUap6y). Yes you can.
35
+ Your questions and commentary welcome.
36
+
37
+ Or post them over at the [Help & Support](https://github.com/geraldb/help) page. Thanks.
38
+
data/Rakefile ADDED
@@ -0,0 +1,28 @@
1
+ require 'hoe'
2
+ # require './lib/calldata/version.rb'
3
+
4
+
5
+ Hoe.spec 'calldata' do
6
+ self.version = '0.0.1'
7
+
8
+ self.summary = "calldata gem - Calldata.encode / Calldata.decode using utf8_to_hex and hex_to_utf8 helpers and more for inscriptions / inscribes for ethereum & co"
9
+ self.description = summary
10
+
11
+ self.urls = { home: 'https://github.com/s6ruby/rubidity' }
12
+
13
+ self.author = 'Gerald Bauer'
14
+ self.email = 'gerald.bauer@gmail.com'
15
+
16
+ # switch extension to .markdown for gihub formatting
17
+ self.readme_file = 'README.md'
18
+ self.history_file = 'CHANGELOG.md'
19
+
20
+ self.extra_deps = [
21
+ ]
22
+
23
+ self.licenses = ['Public Domain']
24
+
25
+ self.spec_extras = {
26
+ required_ruby_version: '>= 2.3'
27
+ }
28
+ end
data/lib/calldata.rb ADDED
@@ -0,0 +1,2 @@
1
+
2
+ puts "Hello Calldata!"
metadata ADDED
@@ -0,0 +1,88 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: calldata
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-11-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rdoc
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '4.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '7'
23
+ type: :development
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '4.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '7'
33
+ - !ruby/object:Gem::Dependency
34
+ name: hoe
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '4.0'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '4.0'
47
+ description: calldata gem - Calldata.encode / Calldata.decode using utf8_to_hex and
48
+ hex_to_utf8 helpers and more for inscriptions / inscribes for ethereum & co
49
+ email: gerald.bauer@gmail.com
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files:
53
+ - CHANGELOG.md
54
+ - Manifest.txt
55
+ - README.md
56
+ files:
57
+ - CHANGELOG.md
58
+ - Manifest.txt
59
+ - README.md
60
+ - Rakefile
61
+ - lib/calldata.rb
62
+ homepage: https://github.com/s6ruby/rubidity
63
+ licenses:
64
+ - Public Domain
65
+ metadata: {}
66
+ post_install_message:
67
+ rdoc_options:
68
+ - "--main"
69
+ - README.md
70
+ require_paths:
71
+ - lib
72
+ required_ruby_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '2.3'
77
+ required_rubygems_version: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ requirements: []
83
+ rubygems_version: 3.4.10
84
+ signing_key:
85
+ specification_version: 4
86
+ summary: calldata gem - Calldata.encode / Calldata.decode using utf8_to_hex and hex_to_utf8
87
+ helpers and more for inscriptions / inscribes for ethereum & co
88
+ test_files: []