orphic 0.1.4 → 0.1.5
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 +4 -4
- data/lib/orphic/cli/district.rb +36 -40
- data/lib/orphic/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2560534daf2a7cf6e71ae498b699bdc02ffd93ec2e6fa67aadd909a9eab4711
|
4
|
+
data.tar.gz: ebb96f300f6ac44a12976ba705146bc072282a6ad014037d435fe58ea54221af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6627982ad5901071d7f4392c49a72a82d35b4f3abc70172c969f3bdee620475064a7eb23defc0e7080c0ef3f51bd20504e95f8d9ca4da6059757a0d01258c4e
|
7
|
+
data.tar.gz: 0f8c58cef66df787221045e8e9387a20ab91993773565a3151b5ea00a0143557b3d4bbc63bbd934a7ef53654cd265e8a29a53e76e379e980429c8fa057f88745
|
data/lib/orphic/cli/district.rb
CHANGED
@@ -5,23 +5,31 @@ module Orphic
|
|
5
5
|
long_desc <<-DISTRICT
|
6
6
|
Commands for a specific district.
|
7
7
|
|
8
|
-
View districts with <district>.
|
9
|
-
|
10
|
-
--awake - The entrypoint, learn more about the Awake district with this option. Aliased with --aw
|
11
|
-
--grow - This typically involves UI/UX and likely what led you to this CLI. Growth continues... Aliased with --gr
|
12
|
-
--discover - Your current location, learn more about the Discover district with this option. Aliased with --di
|
13
|
-
--trust - Relates to cryptography and cyphers.
|
14
|
-
--truth - Relates to verified authorizations.
|
15
|
-
--magic - Let the magic begin! Related to ephemeral changes and middleware.
|
16
|
-
--poetry - The poet, the lover, and the coder are of imagination all compact...
|
17
|
-
--drive - Relates to real-time commands that will effect a concurrent stream or processes.
|
18
|
-
--will - Relates to databases and permanence.
|
19
|
-
--loyal - The gauntlet.
|
20
|
-
--enthuse - Relates to live events and promotions.
|
21
|
-
--clarity - The endgame.
|
22
|
-
|
23
|
-
Or with <createDistrict>, create a new district.
|
8
|
+
View districts with <district>.
|
24
9
|
DISTRICT
|
10
|
+
def district( viewDistrict )
|
11
|
+
# implement viewDistrict
|
12
|
+
CLI::UI::Frame.open( "Map :: District : " + viewDistrict ) do
|
13
|
+
puts "#{viewDistrict}"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
desc "createDistrict", "Create a new district with <createDistrict>"
|
17
|
+
long_desc <<-CREATE_DISTRICT
|
18
|
+
Create a new district with createDistrict. Base map includes the following options for branching:
|
19
|
+
|
20
|
+
\x5--AWAKE - The entrypoint. Create command line interfaces, web portals, and related tech.
|
21
|
+
\x5--GROW - User Interfaces and Experiences, projects here relate to front-end like React, CSS, and prototypes.
|
22
|
+
\x5--DISCOVER - Your current location. Educate your peers or yourself.
|
23
|
+
\x5--TRUST - Create authorization, cyphers, and cryptography-related projects.
|
24
|
+
\x5--TRUTH - The gateway. Can be used to verify authorizations and is often tied to the Trust District.
|
25
|
+
\x5--MAGIC - Let the magic begin! Here you can create ephemeral changes and middleware.
|
26
|
+
\x5--POETRY - The poet, the lover, and the coder are of imagination all compact... Code as art.
|
27
|
+
\x5--DRIVE - Real-time commands that will effect a concurrent stream or processes.
|
28
|
+
\x5--WILL - Databases and permanence.
|
29
|
+
\x5--LOYAL - The gauntlet. Test your loyalty with user or unit testing.
|
30
|
+
\x5--ENTHUSE - Live events and promotions.
|
31
|
+
\x5--CLARITY - The endgame, from your command-line, through staging and production.
|
32
|
+
CREATE_DISTRICT
|
25
33
|
option :awake
|
26
34
|
option :grow
|
27
35
|
option :discover
|
@@ -34,31 +42,19 @@ module Orphic
|
|
34
42
|
option :loyal
|
35
43
|
option :enthuse
|
36
44
|
option :clarity
|
37
|
-
def district( viewDistrict )
|
38
|
-
# implement viewDistrict
|
39
|
-
baseAwake = "Awake District info" if options[:awake]
|
40
|
-
baseGrow = "Grow District info" if options[:grow]
|
41
|
-
baseDiscover = "Discover District info" if options[:discover]
|
42
|
-
baseTrust = "Trust District info" if options[:trust]
|
43
|
-
baseTruth = "Truth District info" if options[:truth]
|
44
|
-
baseMagic = "Magic District info" if options[:magic]
|
45
|
-
basePoetry = "Poetry District info" if options[:poetry]
|
46
|
-
baseDrive = "Drive District info" if options[:drive]
|
47
|
-
baseWill = "Will District info" if options[:will]
|
48
|
-
baseLoyal = "Loyal District info" if options[:loyal]
|
49
|
-
baseEnthuse = "Enthuse District info" if options[:enthuse]
|
50
|
-
baseClarity = "Clarity District info" if options[:clarity]
|
51
|
-
CLI::UI::Frame.open( "Map :: District : " + viewDistrict ) do
|
52
|
-
puts "#{viewDistrict}"
|
53
|
-
end
|
54
|
-
end
|
55
|
-
desc "createDistrict", "Create a new district with <createDistrict>"
|
56
|
-
long_desc <<-CREATE_DISTRICT
|
57
|
-
Create a new district with createDistrict.
|
58
|
-
|
59
|
-
TODO
|
60
|
-
CREATE_DISTRICT
|
61
45
|
def createDistrict ( createDistrict )
|
46
|
+
puts "Awake District info" if options[:awake]
|
47
|
+
puts "Grow District info" if options[:grow]
|
48
|
+
puts "Discover District info" if options[:discover]
|
49
|
+
puts "Trust District info" if options[:trust]
|
50
|
+
puts "Truth District info" if options[:truth]
|
51
|
+
puts "Magic District info" if options[:magic]
|
52
|
+
puts "Poetry District info" if options[:poetry]
|
53
|
+
puts "Drive District info" if options[:drive]
|
54
|
+
puts "Will District info" if options[:will]
|
55
|
+
puts "Loyal District info" if options[:loyal]
|
56
|
+
puts "Enthuse District info" if options[:enthuse]
|
57
|
+
puts "Clarity District info" if options[:clarity]
|
62
58
|
# implement createDistrict
|
63
59
|
CLI::UI::Frame.open( "Map :: District : Create " + createDistrict ) do
|
64
60
|
puts "#{createDistrict}"
|
data/lib/orphic/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: orphic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle OBrien
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-11-
|
11
|
+
date: 2020-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -184,7 +184,7 @@ metadata:
|
|
184
184
|
bug_tracker_uri: https://github.com/orphic-inc/ruby-orphic-cli/issues
|
185
185
|
changlog_uri: https://github.com/orphic-inc/ruby-orphic-cli/blob/main/CHANGELOG.md
|
186
186
|
documentation_uri: https://github.com/orphic-inc/ruby-orphic-cli/blob/main/README.md
|
187
|
-
source_code_uri: https://github.com/orphic-inc/ruby-orphic-cli/tree/v0.1.
|
187
|
+
source_code_uri: https://github.com/orphic-inc/ruby-orphic-cli/tree/v0.1.5
|
188
188
|
wiki_uri: https://github.com/orphic-inc/ruby-orphic-cli/wiki
|
189
189
|
post_install_message:
|
190
190
|
rdoc_options: []
|