jewelrystore 1.5.2 → 1.5.4
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/bin/jewelrystore +10 -2
- data/lib/jewelrystore.rb +237 -231
- metadata +7 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85a639e35c6498998d651bb133d5657b81ce035be978e6bba702f0efc0503698
|
4
|
+
data.tar.gz: 9919f5d501e3c0cbca1f9fb21683251b7140e3c0eca56f9d82fd9bca1074b4f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb9f9ee3f12b7bc42939289b4412b174775cda54adff1c3ae6f0605ee5c45b0c4278a98eb86027b5ae9d1bfd804dcc6b81cbf655b3c26f6c6294c05f8744843b
|
7
|
+
data.tar.gz: bdbf0d9c9c04c3e715c64ecefade0c65c941a8a6b92d8d3f958f4551e91217a235a83b5cbe038e16976dcd0e31c08b8fc3bf91cff32884cfd557190278885494
|
data/bin/jewelrystore
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
require 'cli/ui'
|
2
3
|
require 'colorize'
|
3
|
-
|
4
|
-
res =
|
4
|
+
require 'cli/ui'
|
5
|
+
res = ''
|
6
|
+
CLI::UI::Prompt.ask('JewelryStore v1.5.4') do |handler|
|
7
|
+
handler.option('list') { |selection| selection; res = 'list' }
|
8
|
+
handler.option('install') { |selection| selection; res =
|
9
|
+
gets.chomp }
|
10
|
+
end
|
11
|
+
|
12
|
+
|
5
13
|
if res == 'list'
|
6
14
|
puts 'all apps available are:'.colorize(:red)
|
7
15
|
puts 'inkscape'.colorize(:grey)
|
data/lib/jewelrystore.rb
CHANGED
@@ -1,233 +1,239 @@
|
|
1
|
+
require 'cli/ui'
|
1
2
|
require 'colorize'
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
3
|
+
require 'cli/ui'
|
4
|
+
class Jewstore
|
5
|
+
def self.go
|
6
|
+
res = ''
|
7
|
+
CLI::UI::Prompt.ask('JewelryStore v1.5.4') do |handler|
|
8
|
+
handler.option('list') { |selection| selection; res = 'list' }
|
9
|
+
handler.option('install') { |selection| selection; res =
|
10
|
+
gets.chomp }
|
11
|
+
end
|
12
|
+
|
13
|
+
|
14
|
+
if res == 'list'
|
15
|
+
puts 'all apps available are:'.colorize(:red)
|
16
|
+
puts 'inkscape'.colorize(:grey)
|
17
|
+
puts 'gparted'.colorize(:green)
|
18
|
+
puts 'audacity'.colorize(:red)
|
19
|
+
puts 'librewolf'.colorize(:blue)
|
20
|
+
puts 'ferdi'.colorize(:purple)
|
21
|
+
puts 'vscode'.colorize(:blue)
|
22
|
+
puts 'emacs'.colorize(:purple)
|
23
|
+
puts 'etcher'.colorize(:green)
|
24
|
+
puts 'brave'.colorize(:red)
|
25
|
+
puts 'stepmania'.colorize(:red)
|
26
|
+
puts 'zoom'.colorize(:blue)
|
27
|
+
puts 'schildichat'.colorize(:green)
|
28
|
+
puts 'cpu-x'.colorize(:blue)
|
29
|
+
puts 'atom'.colorize(:green)
|
30
|
+
puts 'blender'.colorize(:yellow)
|
31
|
+
puts 'krita'.colorize(:pink)
|
32
|
+
puts 'gimp'.colorize(:white)
|
33
|
+
puts 'vlc'.colorize(:yellow)
|
34
|
+
puts 'obs'.colorize(:red)
|
35
|
+
puts 'firefox'.colorize(:red)
|
36
|
+
puts 'waterfox'.colorize(:blue)
|
37
|
+
puts 'notepadqq'.colorize(:green)
|
38
|
+
puts 'libreoffice'.colorize(:yellow)
|
39
|
+
puts 'thunderbird'.colorize(:blue)
|
40
|
+
|
41
|
+
end
|
42
|
+
|
43
|
+
if res == 'bye'
|
44
|
+
puts 'exiting'.colorize(:red)
|
45
|
+
end
|
46
|
+
|
47
|
+
if res == 'inkscape'
|
48
|
+
puts 'i will install: InkScape x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
49
|
+
inkscaped = gets.chomp
|
50
|
+
puts 'installing inkscape appimage'.colorize(:red)
|
51
|
+
inkscape = system( "cd ~/ && wget https://media.inkscape.org/dl/resources/file/Inkscape-0a00cf5-x86_64.AppImage" )
|
52
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
53
|
+
end
|
54
|
+
|
55
|
+
if res == 'gparted'
|
56
|
+
puts 'i will install: GParted x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
57
|
+
gpartedd = gets.chomp
|
58
|
+
puts 'installing GParted appimage'.colorize(:red)
|
59
|
+
gparted = system( "cd ~/ && wget https://apprepo.de/uploads/package/version/2022/02/06/102453/Gparted.AppImage" )
|
60
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
61
|
+
end
|
62
|
+
|
63
|
+
if res == 'audacity'
|
64
|
+
puts 'i will install Audacity x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
65
|
+
audacityd = gets.chomp
|
66
|
+
puts 'installing Audacity appimage'.colorize(:red)
|
67
|
+
audacity = system( "cd ~/ && wget https://github.com/audacity/audacity/releases/download/Audacity-3.1.3/audacity-linux-3.1.3-x86_64.AppImage" )
|
68
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
69
|
+
end
|
70
|
+
|
71
|
+
if res == 'librewolf'
|
72
|
+
puts 'i will install LibreWolf x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
73
|
+
librewolfd = gets.chomp
|
74
|
+
puts 'installing LibreWolf AppImage'.colorize(:red)
|
75
|
+
librewolf = system( "cd ~/ && wget https://download943.mediafire.com/91e2t4qw35wg/jif8wa50dm7c1by/LibreWolf.x86_64.AppImage" )
|
76
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
77
|
+
end
|
78
|
+
|
79
|
+
if res == 'ferdi'
|
80
|
+
puts 'i will install Ferdi x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
81
|
+
ferdid = gets.chomp
|
82
|
+
puts 'installing Ferdi AppImage'.colorize(:red)
|
83
|
+
ferdi = system( "cd ~/ && wget https://github.com/getferdi/ferdi/releases/download/v5.8.0/Ferdi-5.8.0.AppImage" )
|
84
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
85
|
+
end
|
86
|
+
|
87
|
+
if res == 'vscode'
|
88
|
+
puts 'i will install Code-Oss x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
89
|
+
coded = gets.chomp
|
90
|
+
puts 'installing VsCode AppImage'.colorize(:red)
|
91
|
+
code = system( "cd ~/ && wget https://github.com/zilti/code-oss.AppImage/releases/download/continuous/Code_OSS-x86_64.AppImage" )
|
92
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
93
|
+
end
|
94
|
+
|
95
|
+
if res == 'emacs'
|
96
|
+
puts 'i will install emacs AppImage, Correct? (Press Enter)'.colorize(:red)
|
97
|
+
emacsd = gets.chomp
|
98
|
+
puts 'installing Emacs AppImage'.colorize(:red)
|
99
|
+
emacs = system( "cd ~/ && wget https://github.com/probonopd/Emacs.AppImage/releases/download/continuous/Emacs-27.2.glibc2.16-x86_64.AppImage" )
|
100
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
101
|
+
end
|
102
|
+
|
103
|
+
if res == 'etcher'
|
104
|
+
puts 'I will install Balena-Etcher x64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
105
|
+
etcherd = gets.chomp
|
106
|
+
puts 'Installing Emacs AppImage'.colorize(:red)
|
107
|
+
etcher = system( "cd ~/ && wget https://github.com/balena-io/etcher/releases/download/v1.7.8/balenaEtcher-1.7.8-x64.AppImage" )
|
108
|
+
puts 'App installed with success in your home'.colorize(:red)
|
109
|
+
end
|
110
|
+
|
111
|
+
if res == 'brave'
|
112
|
+
puts 'I will install Brave x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
113
|
+
brave = gets.chomp
|
114
|
+
puts 'Installing Brave AppImage'.colorize(:red)
|
115
|
+
brave = system( "cd ~/ && wget https://apprepo.de/uploads/package/version/2022/02/05/055813/Brave.AppImage" )
|
116
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
117
|
+
end
|
118
|
+
|
119
|
+
if res == 'stepmania'
|
120
|
+
puts 'I will install StepMania 5.1 beta x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
121
|
+
stepmaniad = gets.chomp
|
122
|
+
puts 'Installing StepMania AppImage'.colorize(:red)
|
123
|
+
stepmania = system( "cd ~/ && wget https://dl2.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTYzMTUwODUxNiwidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiI0MmE1M2M2NjdiNDQ2NDIwODVlMDA5OGI5NWIxNDQ4MTY3N2ZhNmI1MjAyMDcwYTgxZjkxYjI2MDEwMjAzNTQ3MGVhNzFhM2VmZDNmZjJmNjkzZmQ5ODA2YzAxYjNjNmYxNWU2YzVmMGY4MWIyY2YwNDMwZmQ2ZTcwNmFmZjcyZiIsInQiOjE2NDc4ODE3NTIsInN0ZnAiOiJjYmRlYjg2YmM5YWE5MDFjM2ZiNzU1MmIzYWNmZDljNSIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.5Pqzqpy4A6_2FjvxKrjN2fYy9CT68TaZKKmu_pXXlAc/StepMania-5.1-f1ebe8d-x86_64.AppImage " )
|
124
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
125
|
+
end
|
126
|
+
|
127
|
+
if res == 'zoom'
|
128
|
+
puts 'I will install Zoom x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
129
|
+
zoomd = gets.chomp
|
130
|
+
puts 'Installing Zoom AppImage'.colorize(:red)
|
131
|
+
zoom = system( "cd ~/ && wget https://dl1.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTYzMjY1MjY0NiwidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiJjY2IzOGY2MDUxZTA1ZmZlOWM2OTkxZWNiYmNjODljZDNhZDE0YWZjODY2NmY2YTM4MjkyMzZlNzI1MTc3ZGU1OWRiMGM4NzMyNDRjMDQxMDAwMDBmMDNhZjRjOGUwNzk3YTQzYTc2MDY5NzJhMmU3ZjAwNmIyYzk1ODg0N2MyNyIsInQiOjE2NDc4ODE4NDMsInN0ZnAiOiJjYmRlYjg2YmM5YWE5MDFjM2ZiNzU1MmIzYWNmZDljNSIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.sf2N3V4wAvTwg_oGR9w-k3LUZcr5R3-1R0rbXj0DjnI/Zoom-5.7.31792.0820.glibc2.17-x86_64.AppImage " )
|
132
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
133
|
+
end
|
134
|
+
|
135
|
+
if res == 'schildichat'
|
136
|
+
puts 'I will install SchildiChat x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
137
|
+
schatd = gets.chomp
|
138
|
+
puts 'Installing SchildiChat AppImage'.colorize(:red)
|
139
|
+
schat = system( "cd ~/ && wget https://dl2.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTYwODIwNzkzMCwidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiIzMDdiM2MyNzdjNmEwNmJjNTUzOWIyZTRmOWJiZmJkNWFjZjM5NjhjYzc3MGI4YTU2OTZkNjcxOTgyNWVmYjg2YTc5M2NhMTQ5MzRmY2ZmODg0NTIwODdhMjUzNDkzOGJhZDE2NDY5MWEwZjQ4OTQzYzRjZDdhN2Y3ZTMzYmY3MCIsInQiOjE2NDc4ODI3NDcsInN0ZnAiOiJjYmRlYjg2YmM5YWE5MDFjM2ZiNzU1MmIzYWNmZDljNSIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.HM7ynsB4H-AV0CHqvHin3rzitDgTZTU1dksEiRrKvBQ/SchildiChat-1.7.15.AppImage " )
|
140
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
141
|
+
end
|
142
|
+
|
143
|
+
if res == 'cpu-x'
|
144
|
+
puts 'I will install CPU-X x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
145
|
+
cpuxd = gets.chomp
|
146
|
+
puts 'Installing CPU-X AppImage'.colorize(:red)
|
147
|
+
cpux = system( "cd ~/ && wget https://objects.githubusercontent.com/github-production-release-asset-2e65be/24292801/6b1fe73e-86e1-429c-88ea-ee41bd019276?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20220321%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220321T162401Z&X-Amz-Expires=300&X-Amz-Signature=fa9da0fcd59276a5a1c2a6f6b0d447d7af5f7b7731d9c16b5d4e1e39311b54da&X-Amz-SignedHeaders=host&actor_id=97253814&key_id=0&repo_id=24292801&response-content-disposition=attachment%3B%20filename%3DCPU-X-x86_64.AppImage&response-content-type=application%2Foctet-stream " )
|
148
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
149
|
+
end
|
150
|
+
|
151
|
+
if res == 'atom'
|
152
|
+
puts 'I will install Atom IDE x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
153
|
+
atomd = gets.chomp
|
154
|
+
puts 'Installing Atom AppImage'.colorize(:red)
|
155
|
+
atom = system( "cd ~/ && wget https://rsync.opensuse.org/repositories/home:/zilti:/appimages/AppImage/Atom-0-Build7.6.glibc2.17-x86_64.AppImage" )
|
156
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
157
|
+
end
|
158
|
+
|
159
|
+
if res == 'blender'
|
160
|
+
puts 'I will install Blender x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
161
|
+
blenderd = gets.chomp
|
162
|
+
puts 'Installing Blender AppImage'.colorize(:red)
|
163
|
+
blender = system( "cd ~/ && wget https://dl2.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTYwMjAxMzAyOCwidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiI1NjMyNTYzMzI3NmUwOWUxYmI0ZDNjNzc4YTM1ODk2ZGU3ZDQ2MGY5OTJlNDgzNWU3YjhkY2IyYTRlNTcwMmExYTIxNGJiYTI4NjBlMDY3N2Y0MDRiYTRkMWU4ZDAwNWMwODM3MGE3YzcyODk5MDlhNjk0ZGYwOTU0OTIxNzViOSIsInQiOjE2NDc5OTIyMjUsInN0ZnAiOiJhNzhmZmFhZTdkNDk3MDk2Y2ZhNjJmOTBmMmJiNGFmNyIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.NadXu5Q82JaQycdTvoSvjATRLd9Q2iQUiTXTDeYs5c8/Blender-v2.90.0-x86_64.AppImage" )
|
164
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
165
|
+
end
|
166
|
+
|
167
|
+
if res == 'krita'
|
168
|
+
puts 'I will install Krita x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
169
|
+
kritad = gets.chomp
|
170
|
+
puts 'Installing Krita AppImage'.colorize(:red)
|
171
|
+
krita = system( "cd ~/ && wget https://dl2.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTYwMTkzMzc2OSwidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiJlZGE0NWMyODA0NWRlNDIxNDgzNzExZDc0ZDJlZGZjNzY4M2Y0YTljYmVjOGE2NzU5ZWZkMGMxYmQ3ZDYzNjkwOTgwYTJiOWY3NTllNTkwMWVmYTA4NGY3MWQ0OGQyZmQ0MzY1ZjRhOWM3YzJjNzlmNTk4OTg2MjMyNjAxNTQyNSIsInQiOjE2NDc5OTI0MjIsInN0ZnAiOiJhNzhmZmFhZTdkNDk3MDk2Y2ZhNjJmOTBmMmJiNGFmNyIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.lRP10rJ_cyvF38FJ34WacH78A0yLtUjM5b_C9phRVR4/krita-4.3.0-x86_64.appimage" )
|
172
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
173
|
+
end
|
174
|
+
|
175
|
+
if res == 'gimp'
|
176
|
+
puts 'I will install Gimp x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
177
|
+
gimpd = gets.chomp
|
178
|
+
puts 'Installing Gimp AppImage'.colorize(:red)
|
179
|
+
gimp = system( "cd ~/ && wget https://dl2.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTYwMTkyNDUwNCwidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiI4MGQ4OTZjNGEwOWJiZmJiYzNkZDRjZWRjZWUwNDFkN2RmMjIzODMzMWFiZTc4YTE2YTg2NWE4NzQxODc1OTcyNmQ3N2Y1ZGE3ZTdlMTM4ZGNiOGE5MTIyMmQ0YWJkZmUyNmRhYjk5M2M3MWI2ODE3OGYxZTYxODhhNjQ1YmYzYiIsInQiOjE2NDc5OTI2NjEsInN0ZnAiOiJhNzhmZmFhZTdkNDk3MDk2Y2ZhNjJmOTBmMmJiNGFmNyIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.CpkSnEc13pPiDg93ayIBOdJG87WSBLrJ8g10YqIcWME/GIMP_AppImage-git-2.10.21-20201001-withplugins-x86_64.AppImage" )
|
180
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
181
|
+
end
|
182
|
+
|
183
|
+
if res == 'vlc'
|
184
|
+
puts 'I will install VLC x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
185
|
+
vlcd = gets.chomp
|
186
|
+
puts 'Installing VLC AppImage'.colorize(:red)
|
187
|
+
vlc = system( "cd ~/ && wget https://dl2.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTYwMjAxMjYxMiwidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiIzZTEyODAzYjI5YzU5NTBlNjA1ODFjZmRiMjllMDBhZTJkMTBiYzYyOWVjOTdhZjUwNWQ5ZjM2ZmNkNDgzYjIxN2RhNmZkOGEwMmNhNzU1YTAyNDU3NjVmYWNhODlkNjdjYWNjYmVkNDkzZTdkMTQ0YWU0ZGE1ZmQwOWZiNWQ2MCIsInQiOjE2NDgyMjMzMDEsInN0ZnAiOiJiZWMwODFlNTQxYmUwN2Q3MDA2MjUzNjUxMTQ3MjVhYiIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.vSGnJQl3ibt-pfAwzVRU73CC61VzdTOPQn9_BNv1l98/VLC_media_player-3.0.11.1-x86_64.AppImage" )
|
188
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
189
|
+
end
|
190
|
+
|
191
|
+
if res == 'obs'
|
192
|
+
puts 'I will install OBS Studio x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
193
|
+
obsd = gets.chomp
|
194
|
+
puts 'Installing OBS Studio AppImage'.colorize(:red)
|
195
|
+
obs = system( "cd ~/ && wget https://dl1.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTU5NjcxMjM3MywidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiI0YWRlNWM0NmZhYjUxN2U0YzVlYWFlZjg4MGRkMzE2NDI5ZTA0OGQxYmExZDFhZjM0MWUyMzFhNWM0N2U4Nzk2MWNiNjViMmRkNWNiNWI0OTFkMTA4MjViMWVkNGYzZGE0NzRjNDE4NjdhNmRlNjVmMDYwODZhNmFlNWY3OTRmYyIsInQiOjE2NDgyMjU0NTcsInN0ZnAiOiJiZWMwODFlNTQxYmUwN2Q3MDA2MjUzNjUxMTQ3MjVhYiIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.fPk-JwiinAiuPwuTJdHO_73fihLl-3lJLi4d4ZQx0jE/obs-studio-plus-25.0.8-x86_64.AppImage" )
|
196
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
197
|
+
end
|
198
|
+
|
199
|
+
if res == 'firefox'
|
200
|
+
puts 'I will install Firefox 70 x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
201
|
+
firefoxd = gets.chomp
|
202
|
+
puts 'Installing Firefox AppImage'.colorize(:red)
|
203
|
+
firefox = system( "cd ~/ && wget https://dl2.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTU4Njc4ODA5MSwidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiJiMmE4N2NiOTc0YzczN2Q3MGM3OGYwZDIzYmNiMmM1YTIyNWQyOWY3YTlkMTQyNWY0M2E0NDY5NjVkODUxNjQ1NTQ5MzEzOWYyZDZiNDk0OWQ3ZmZjN2E2Mzc3ZTBkZjBmNDFiMjdiNTk1OWYwNGNhZWVhYWU3ODY5Mjc5MzM1NCIsInQiOjE2NDgyMjU1NDksInN0ZnAiOiJiZWMwODFlNTQxYmUwN2Q3MDA2MjUzNjUxMTQ3MjVhYiIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.zhl7JZEFmFyfeWg5aJYVGufegmCMnqtSnrr0tu_CK2Q/Firefox-x86_64-20200413141725.AppImage" )
|
204
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
205
|
+
end
|
206
|
+
|
207
|
+
if res == 'waterfox'
|
208
|
+
puts 'I will install Waterfox 50 x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
209
|
+
waterfoxd = gets.chomp
|
210
|
+
puts 'Installing Waterfox AppImage'.colorize(:red)
|
211
|
+
waterfox = system( "cd ~/ && wget https://dl2.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTU0MjQ0OTA5NiwidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiI5NWFkODE1NGUzNGQzZjgwYzVkYzFlMDZmYzZkNDVlMTkzMThjZDEyZDE4ODA4NWRmNmVmNWM0YzU5ODM3ODgwYmFlMzQ4ZTVjYzM4MTkwZWViNWM3NWVkZDJmODY5MGJiNDE1ODdiZjRkMTA3ZmZmYjJiNjA1ODYzOGY5NzE5OSIsInQiOjE2NDgyMjU2MTIsInN0ZnAiOiJiZWMwODFlNTQxYmUwN2Q3MDA2MjUzNjUxMTQ3MjVhYiIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.VqghsXgzV_NYfdTTTKKbqCCNYD9whsomV8Q4FDIjUEQ/Waterfox-0-Buildlp150.4.1.glibc2.17-x86_64.AppImage" )
|
212
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
213
|
+
end
|
214
|
+
|
215
|
+
if res == 'notepadqq'
|
216
|
+
puts 'I will install Notepadqq x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
217
|
+
notepadqqd = gets.chomp
|
218
|
+
puts 'Installing Notepadqq AppImage'.colorize(:red)
|
219
|
+
notepadqq = system( "cd ~/ && wget https://objects.githubusercontent.com/github-production-release-asset-2e65be/3536442/f1e00584-3548-11e8-98bb-27c7bacfd184?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20220325%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220325T152852Z&X-Amz-Expires=300&X-Amz-Signature=fb95bbe5774d7f64f9b26aad00fba76b3a6eb04a3f25f3576dd9e6b568fefdab&X-Amz-SignedHeaders=host&actor_id=97253814&key_id=0&repo_id=3536442&response-content-disposition=attachment%3B%20filename%3Dnotepadqq-.glibc2.14-x86_64.AppImage&response-content-type=application%2Foctet-stream" )
|
220
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
221
|
+
end
|
222
|
+
|
223
|
+
if res == 'libreoffice'
|
224
|
+
puts 'I will install Libreoffice 7.1 x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
225
|
+
libreofficed = gets.chomp
|
226
|
+
puts 'Installing Libreoffice AppImage'.colorize(:red)
|
227
|
+
libreoffice = system( "cd ~/ && wget https://dl2.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTYwMTk1MzM5MiwidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiI5YmEwZWNjZGMzNWNkMDNiYWI3YmYyODA2NGIyN2NiNmY0MzZiOTg1MGQyNWQ5Y2JmYWZhY2Y3ZjA1M2YzOGU4MGVhNzMyYTIwNzk5MTQzNjBmMzUyYzNmY2E2MmE3NDA2NzRiZTM0MWJlNzA4OWI2NDdhNmZiYjg4OGRmMjJjOSIsInQiOjE2NDgyMjU3ODIsInN0ZnAiOiJiZWMwODFlNTQxYmUwN2Q3MDA2MjUzNjUxMTQ3MjVhYiIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.jd6arR3X-PB_xOJCZqqthBXNq7bLTUu1_1OLtXdtdRg/LibreOffice-fresh.full.help-x86_64.AppImage" )
|
228
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
229
|
+
end
|
230
|
+
|
231
|
+
if res == 'thunderbird'
|
232
|
+
puts 'I will install Mozilla Thunderbird x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
|
233
|
+
thunderbirdd = gets.chomp
|
234
|
+
puts 'Installing Thunderbird AppImage'.colorize(:red)
|
235
|
+
thunderbird = system( "cd ~/ && wget https://dl1.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTYwMjAxNzA3NCwidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiI4MzRiNzdlNGViNmM3MTBhZmViMTk3M2M3MDU5MzRkMjZhZGM0YmE0MjdjYzY2YjcyYjU1YzZkODA3NzgwMzk3YmIzMDE3NmE0MGY4NzY3NTc2ODNjMGI4NWRiMDNmMWYxNzBjM2MzN2VhY2U3Nzk1MGMxNzI4ODY1ODlmNDRjZCIsInQiOjE2NDgyMjU4MTQsInN0ZnAiOiJiZWMwODFlNTQxYmUwN2Q3MDA2MjUzNjUxMTQ3MjVhYiIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.Uyi_NA3tmdeJBmBIL_BvdL2Hlvt7ZOpdV4gsFt31suo/Thunderbird-78.3_20200925001233.AppImage" )
|
236
|
+
puts 'app installed with sucess in your home'.colorize(:red)
|
237
|
+
end
|
238
|
+
end
|
233
239
|
end
|
metadata
CHANGED
@@ -1,31 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jewelrystore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- NillyTheL0L
|
8
|
-
- numbertumbers
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2022-
|
13
|
-
dependencies:
|
14
|
-
|
15
|
-
name: colorize
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
17
|
-
requirements:
|
18
|
-
- - ">="
|
19
|
-
- !ruby/object:Gem::Version
|
20
|
-
version: '0'
|
21
|
-
type: :runtime
|
22
|
-
prerelease: false
|
23
|
-
version_requirements: !ruby/object:Gem::Requirement
|
24
|
-
requirements:
|
25
|
-
- - ">="
|
26
|
-
- !ruby/object:Gem::Version
|
27
|
-
version: '0'
|
28
|
-
description: An appimage cli store
|
11
|
+
date: 2022-04-08 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: A Cli appimage stor emade in ruby
|
29
14
|
email: iagodp08@gmail.com
|
30
15
|
executables:
|
31
16
|
- jewelrystore
|
@@ -34,7 +19,7 @@ extra_rdoc_files: []
|
|
34
19
|
files:
|
35
20
|
- bin/jewelrystore
|
36
21
|
- lib/jewelrystore.rb
|
37
|
-
homepage: https://jewelrystore
|
22
|
+
homepage: https://github.com/nillythel0l/jewelrystore
|
38
23
|
licenses:
|
39
24
|
- MIT
|
40
25
|
metadata: {}
|
@@ -53,8 +38,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
38
|
- !ruby/object:Gem::Version
|
54
39
|
version: '0'
|
55
40
|
requirements: []
|
56
|
-
rubygems_version: 3.3.
|
41
|
+
rubygems_version: 3.3.8
|
57
42
|
signing_key:
|
58
43
|
specification_version: 4
|
59
|
-
summary:
|
44
|
+
summary: Cli Appimage store
|
60
45
|
test_files: []
|