junction 0.1.9 → 0.1.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.idea/junction.iml +7 -5
- data/Gemfile +5 -1
- data/Gemfile.lock +6 -1
- data/junction.gemspec +1 -0
- data/lib/junction/components/cursor.rb +0 -3
- data/lib/junction/screens/screen.rb +0 -3
- data/lib/junction/version.rb +1 -1
- data/lib/junction.rb +3 -4
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4604334bafd276ba847ab802e9309131cd0959e58a4716cf57a9aed021f5caf
|
4
|
+
data.tar.gz: dc9a7a2e1ab8ac7d52820516bac641c7c893166323a24449321dc75d46a33abd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07f9e29c966fcbb01207f42206a7d1a28ce68460f3ef46f4307c18d4eab98606624a71aff90681f1368e5af7d4aece48cf401e1b10e8ca251d6a1c222d9626fa
|
7
|
+
data.tar.gz: 34c21247013ca1f7ed26bc036af4a454f2633cbb38dc2913e25b43fbb2c59d96db7eb59d5cd7961c63f246b993747fb778bbcb1a1d2ba9572c5d7704005cf383
|
data/.idea/junction.iml
CHANGED
@@ -51,26 +51,28 @@
|
|
51
51
|
<orderEntry type="library" scope="PROVIDED" name="unicode_utils (v1.4.0, rbenv: 3.2.2) [gem]" level="application" />
|
52
52
|
<orderEntry type="library" scope="PROVIDED" name="verse (v0.4.0, rbenv: 3.2.2) [gem]" level="application" />
|
53
53
|
<orderEntry type="library" scope="PROVIDED" name="wisper (v1.6.1, rbenv: 3.2.2) [gem]" level="application" />
|
54
|
+
<orderEntry type="library" scope="PROVIDED" name="yard (v0.9.37, rbenv: 3.2.2) [gem]" level="application" />
|
55
|
+
<orderEntry type="library" scope="PROVIDED" name="zeitwerk (v2.7.1, rbenv: 3.2.2) [gem]" level="application" />
|
54
56
|
</component>
|
55
57
|
<component name="RakeTasksCache-v2">
|
56
58
|
<option name="myRootTask">
|
57
59
|
<RakeTaskImpl id="rake">
|
58
60
|
<subtasks>
|
59
|
-
<RakeTaskImpl description="Build junction-0.1.
|
61
|
+
<RakeTaskImpl description="Build junction-0.1.9.gem into the pkg directory" fullCommand="build" id="build" />
|
60
62
|
<RakeTaskImpl id="build">
|
61
63
|
<subtasks>
|
62
|
-
<RakeTaskImpl description="Generate SHA512 checksum of junction-0.1.
|
64
|
+
<RakeTaskImpl description="Generate SHA512 checksum of junction-0.1.9.gem into the checksums directory" fullCommand="build:checksum" id="checksum" />
|
63
65
|
</subtasks>
|
64
66
|
</RakeTaskImpl>
|
65
67
|
<RakeTaskImpl description="Remove any temporary products" fullCommand="clean" id="clean" />
|
66
68
|
<RakeTaskImpl description="Remove any generated files" fullCommand="clobber" id="clobber" />
|
67
|
-
<RakeTaskImpl description="Build and install junction-0.1.
|
69
|
+
<RakeTaskImpl description="Build and install junction-0.1.9.gem into system gems" fullCommand="install" id="install" />
|
68
70
|
<RakeTaskImpl id="install">
|
69
71
|
<subtasks>
|
70
|
-
<RakeTaskImpl description="Build and install junction-0.1.
|
72
|
+
<RakeTaskImpl description="Build and install junction-0.1.9.gem into system gems without network access" fullCommand="install:local" id="local" />
|
71
73
|
</subtasks>
|
72
74
|
</RakeTaskImpl>
|
73
|
-
<RakeTaskImpl description="Create tag v0.1.
|
75
|
+
<RakeTaskImpl description="Create tag v0.1.9 and build and push junction-0.1.9.gem to https://rubygems.org" fullCommand="release[remote]" id="release[remote]" />
|
74
76
|
<RakeTaskImpl description="Run RuboCop" fullCommand="rubocop" id="rubocop" />
|
75
77
|
<RakeTaskImpl id="rubocop">
|
76
78
|
<subtasks>
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
junction (0.1.
|
4
|
+
junction (0.1.10)
|
5
5
|
tty (~> 0.5.0)
|
6
|
+
zeitwerk (~> 2.7)
|
6
7
|
|
7
8
|
GEM
|
8
9
|
remote: https://rubygems.org/
|
@@ -100,6 +101,8 @@ GEM
|
|
100
101
|
verse (0.4.0)
|
101
102
|
unicode_utils (~> 1.4.0)
|
102
103
|
wisper (1.6.1)
|
104
|
+
yard (0.9.37)
|
105
|
+
zeitwerk (2.7.1)
|
103
106
|
|
104
107
|
PLATFORMS
|
105
108
|
arm64-darwin-23
|
@@ -110,6 +113,8 @@ DEPENDENCIES
|
|
110
113
|
rspec (~> 3.0)
|
111
114
|
rubocop (~> 1.21)
|
112
115
|
tty (~> 0.5.0)
|
116
|
+
yard (~> 0.9.37)
|
117
|
+
zeitwerk (~> 2.7)
|
113
118
|
|
114
119
|
BUNDLED WITH
|
115
120
|
2.5.23
|
data/junction.gemspec
CHANGED
@@ -36,6 +36,7 @@ Gem::Specification.new do |spec|
|
|
36
36
|
# spec.add_dependency "example-gem", "~> 1.0"
|
37
37
|
# spec.add_dependency 'stringio', '>= 3.0.0'
|
38
38
|
spec.add_dependency 'tty', '~> 0.5.0'
|
39
|
+
spec.add_dependency 'zeitwerk', '~> 2.7'
|
39
40
|
# For more information and examples about making a new gem, check out our
|
40
41
|
# guide at: https://bundler.io/guides/creating_gem.html
|
41
42
|
end
|
data/lib/junction/version.rb
CHANGED
data/lib/junction.rb
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
require_relative 'junction/screens/main'
|
3
|
+
require 'zeitwerk'
|
4
|
+
loader = Zeitwerk::Loader.for_gem
|
5
|
+
loader.setup
|
7
6
|
|
8
7
|
module Junction
|
9
8
|
class Error < StandardError; end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: junction
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- keegankb93
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 0.5.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: zeitwerk
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.7'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.7'
|
27
41
|
description: Placeholder
|
28
42
|
email:
|
29
43
|
- keegankb@gmail.com
|