universum 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/HISTORY.md +3 -0
- data/Manifest.txt +6 -0
- data/README.md +30 -0
- data/Rakefile +29 -0
- data/lib/universum.rb +11 -0
- data/lib/universum/version.rb +23 -0
- metadata +87 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 13cb94b578f32502fa462ae5244745a0acaed5fa
|
|
4
|
+
data.tar.gz: 70e43de209bc06bd7f9d2e8dd3ae4e53ba237b9a
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: c51e13fbc51f64d5f56dd62e2b731986674124a309df6eb2fe7f3f8c68a423363610a64d40df8e03b9f5bd091a5c2bec89b7d71156c5a32f594d2f095a447d42
|
|
7
|
+
data.tar.gz: 4bcd6d2df8a752af20d92883ce309d4796161341be7927cdaa027af1bde78b45fd545050bb296599ad58aff7f3233f6b64d70d41f15f7423d1da91b1b37d8421
|
data/HISTORY.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Universum
|
|
2
|
+
|
|
3
|
+
next generation ethereum 2.0 world computer runtime - run contract scripts / transactions in plain vanilla / standard ruby on the blockchain - update the (contract-protected / isolated) world states with plain vanilla / standard SQL
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
to be done
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## Install
|
|
15
|
+
|
|
16
|
+
Just install the gem:
|
|
17
|
+
|
|
18
|
+
$ gem install universum
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
|
|
23
|
+
The `universum` scripts are dedicated to the public domain.
|
|
24
|
+
Use it as you please with no restrictions whatsoever.
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## Questions? Comments?
|
|
28
|
+
|
|
29
|
+
Send them along to the [wwwmake forum](http://groups.google.com/group/wwwmake).
|
|
30
|
+
Thanks!
|
data/Rakefile
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
require 'hoe'
|
|
2
|
+
require './lib/universum/version.rb'
|
|
3
|
+
|
|
4
|
+
Hoe.spec 'universum' do
|
|
5
|
+
|
|
6
|
+
self.version = Universum::VERSION
|
|
7
|
+
|
|
8
|
+
self.summary = "universum - next generation ethereum 2.0 world computer runtime; run contract scripts / transactions in plain vanilla / standard ruby on the blockchain; update the (contract-protected / isolated) world states with plain vanilla / standard SQL"
|
|
9
|
+
self.description = summary
|
|
10
|
+
|
|
11
|
+
self.urls = ['https://github.com/openblockchains/universum']
|
|
12
|
+
|
|
13
|
+
self.author = 'Gerald Bauer'
|
|
14
|
+
self.email = 'wwwmake@googlegroups.com'
|
|
15
|
+
|
|
16
|
+
# switch extension to .markdown for gihub formatting
|
|
17
|
+
self.readme_file = 'README.md'
|
|
18
|
+
self.history_file = 'HISTORY.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
|
+
|
|
29
|
+
end
|
data/lib/universum.rb
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# encoding: utf-8
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
module Universum
|
|
5
|
+
|
|
6
|
+
MAJOR = 0
|
|
7
|
+
MINOR = 0
|
|
8
|
+
PATCH = 1
|
|
9
|
+
VERSION = [MAJOR,MINOR,PATCH].join('.')
|
|
10
|
+
|
|
11
|
+
def self.version
|
|
12
|
+
VERSION
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def self.banner
|
|
16
|
+
"universum/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def self.root
|
|
20
|
+
"#{File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )}"
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
end # module Universum
|
metadata
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: universum
|
|
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: 2018-04-29 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
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '4.0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: hoe
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '3.16'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '3.16'
|
|
41
|
+
description: universum - next generation ethereum 2.0 world computer runtime; run
|
|
42
|
+
contract scripts / transactions in plain vanilla / standard ruby on the blockchain;
|
|
43
|
+
update the (contract-protected / isolated) world states with plain vanilla / standard
|
|
44
|
+
SQL
|
|
45
|
+
email: wwwmake@googlegroups.com
|
|
46
|
+
executables: []
|
|
47
|
+
extensions: []
|
|
48
|
+
extra_rdoc_files:
|
|
49
|
+
- HISTORY.md
|
|
50
|
+
- Manifest.txt
|
|
51
|
+
- README.md
|
|
52
|
+
files:
|
|
53
|
+
- HISTORY.md
|
|
54
|
+
- Manifest.txt
|
|
55
|
+
- README.md
|
|
56
|
+
- Rakefile
|
|
57
|
+
- lib/universum.rb
|
|
58
|
+
- lib/universum/version.rb
|
|
59
|
+
homepage: https://github.com/openblockchains/universum
|
|
60
|
+
licenses:
|
|
61
|
+
- Public Domain
|
|
62
|
+
metadata: {}
|
|
63
|
+
post_install_message:
|
|
64
|
+
rdoc_options:
|
|
65
|
+
- "--main"
|
|
66
|
+
- README.md
|
|
67
|
+
require_paths:
|
|
68
|
+
- lib
|
|
69
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - ">="
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '2.3'
|
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
|
+
requirements:
|
|
76
|
+
- - ">="
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
version: '0'
|
|
79
|
+
requirements: []
|
|
80
|
+
rubyforge_project:
|
|
81
|
+
rubygems_version: 2.5.2
|
|
82
|
+
signing_key:
|
|
83
|
+
specification_version: 4
|
|
84
|
+
summary: universum - next generation ethereum 2.0 world computer runtime; run contract
|
|
85
|
+
scripts / transactions in plain vanilla / standard ruby on the blockchain; update
|
|
86
|
+
the (contract-protected / isolated) world states with plain vanilla / standard SQL
|
|
87
|
+
test_files: []
|