jewelrystore 1.4.6 → 1.4.7

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/jewelrystore +129 -0
  3. metadata +17 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d83d1bf1177373725577b38e53b6ee531c120be24294d54bd982644cb12ab8a
4
- data.tar.gz: 35b739baefd30781784394001506029b73ab0d007d82581bce02865a790c348f
3
+ metadata.gz: 43f5a67cdf7029f3973f24d0d3e4748fd027307b489c78ed6621ad9d5e0e6342
4
+ data.tar.gz: ef131827a276951b02268c1e876bc72e4bf4f4b5aef845e28c112682a02550ea
5
5
  SHA512:
6
- metadata.gz: 606a0b54d698dc94cd3cc3169e99f047cb54c6f19ac18c79ac0c0a713e9288a3e83fa014cb4bc5adae5d7e489627f0932fbc2d14e19cbca711064778b74ccff3
7
- data.tar.gz: 79071d64fc9f2b174692d7168f5741678d08e3fad4bae1e2d0101283b71b40e9beac5779d5d13f9f425149ed278199f207a6d61661bbd9adc87d5378054481b0
6
+ metadata.gz: d53105ff3672a499ed6ca6b0663192dc6872639ebba94a4c86a8d4ed26d7537db3ecb0f6dd370922710f1573f9b057c1e656be9856ccc207cf42675bcaaee7d0
7
+ data.tar.gz: 5ffa265d58ee097a97950b73c42e063b513ae6f7aacda5374c7324dd076cc827c2b8d103fddf80dcabe1e0a478363a312f5780184d1f4f73917464593060eb7e
data/bin/jewelrystore ADDED
@@ -0,0 +1,129 @@
1
+ #!/usr/bin/env ruby
2
+ require 'colorize'
3
+ puts 'welcome to jewelry store to list all apps type list or type bye to exit'.colorize(:red)
4
+ res = gets.chomp
5
+ if res == 'list'
6
+ puts 'all apps available are:'.colorize(:red)
7
+ puts 'inkscape'.colorize(:grey)
8
+ puts 'gparted'.colorize(:green)
9
+ puts 'audacity'.colorize(:red)
10
+ puts 'librewolf'.colorize(:blue)
11
+ puts 'ferdi'.colorize(:purple)
12
+ puts 'vscode'.colorize(:blue)
13
+ puts 'emacs'.colorize(:purple)
14
+ puts 'etcher'.colorize(:green)
15
+ puts 'brave'.colorize(:orange)
16
+ puts 'stepmania'.colorize(:yellow)
17
+ puts 'zoom'.colorize(:blue)
18
+ puts 'schildichat'.colorize(:green)
19
+ puts 'cpu-x'.colorize(:blue)
20
+
21
+ end
22
+
23
+ if res == 'bye'
24
+ puts 'exiting'.colorize(:red)
25
+ end
26
+
27
+ if res == 'inkscape'
28
+ puts 'i will install: InkScape x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
29
+ inkscaped = gets.chomp
30
+ puts 'installing inkscape appimage'.colorize(:red)
31
+ inkscape = system( "cd ~/ && wget https://media.inkscape.org/dl/resources/file/Inkscape-0a00cf5-x86_64.AppImage" )
32
+ puts 'app installed with sucess in your home'.colorize(:red)
33
+ end
34
+
35
+ if res == 'gparted'
36
+ puts 'i will install: GParted x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
37
+ gpartedd = gets.chomp
38
+ puts 'installing GParted appimage'.colorize(:red)
39
+ gparted = system( "cd ~/ && wget https://apprepo.de/uploads/package/version/2022/02/06/102453/Gparted.AppImage" )
40
+ puts 'app installed with sucess in your home'.colorize(:red)
41
+ end
42
+
43
+ if res == 'audacity'
44
+ puts 'i will install Audacity x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
45
+ audacityd = gets.chomp
46
+ puts 'installing Audacity appimage'.colorize(:red)
47
+ audacity = system( "cd ~/ && wget https://github.com/audacity/audacity/releases/download/Audacity-3.1.3/audacity-linux-3.1.3-x86_64.AppImage" )
48
+ puts 'app installed with sucess in your home'.colorize(:red)
49
+ end
50
+
51
+ if res == 'librewolf'
52
+ puts 'i will install LibreWolf x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
53
+ librewolfd = gets.chomp
54
+ puts 'installing LibreWolf AppImage'.colorize(:red)
55
+ librewolf = system( "cd ~/ && wget https://download943.mediafire.com/91e2t4qw35wg/jif8wa50dm7c1by/LibreWolf.x86_64.AppImage" )
56
+ puts 'app installed with sucess in your home'.colorize(:red)
57
+ end
58
+
59
+ if res == 'ferdi'
60
+ puts 'i will install Ferdi x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
61
+ ferdid = gets.chomp
62
+ puts 'installing Ferdi AppImage'.colorize(:red)
63
+ ferdi = system( "cd ~/ && wget https://github.com/getferdi/ferdi/releases/download/v5.8.0/Ferdi-5.8.0.AppImage" )
64
+ puts 'app installed with sucess in your home'.colorize(:red)
65
+ end
66
+
67
+ if res == 'vscode'
68
+ puts 'i will install Code-Oss x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
69
+ coded = gets.chomp
70
+ puts 'installing VsCode AppImage'.colorize(:red)
71
+ code = system( "cd ~/ && wget https://github.com/zilti/code-oss.AppImage/releases/download/continuous/Code_OSS-x86_64.AppImage" )
72
+ puts 'app installed with sucess in your home'.colorize(:red)
73
+ end
74
+
75
+ if res == 'emacs'
76
+ puts 'i will install emacs AppImage, Correct? (Press Enter)'.colorize(:red)
77
+ emacsd = gets.chomp
78
+ puts 'installing Emacs AppImage'.colorize(:red)
79
+ emacs = system( "cd ~/ && wget https://github.com/probonopd/Emacs.AppImage/releases/download/continuous/Emacs-27.2.glibc2.16-x86_64.AppImage" )
80
+ puts 'app installed with sucess in your home'.colorize(:red)
81
+ end
82
+
83
+ if res == 'etcher'
84
+ puts 'I will install Balena-Etcher x64 AppImage, Correct? (Press Enter)'.colorize(:red)
85
+ etcherd = gets.chomp
86
+ puts 'Installing Emacs AppImage'.colorize(:red)
87
+ etcher = system( "cd ~/ && wget https://github.com/balena-io/etcher/releases/download/v1.7.8/balenaEtcher-1.7.8-x64.AppImage" )
88
+ puts 'App installed with success in your home'.colorize(:red)
89
+ end
90
+
91
+ if res == 'brave'
92
+ puts 'I will install Brave x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
93
+ brave = gets.chomp
94
+ puts 'Installing Brave AppImage'.colorize(:red)
95
+ brave = system( "cd ~/ && wget https://apprepo.de/uploads/package/version/2022/02/05/055813/Brave.AppImage" )
96
+ puts 'app installed with sucess in your home'.colorize(:red)
97
+ end
98
+
99
+ if res == 'stepmania'
100
+ puts 'I will install StepMania 5.1 beta x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
101
+ stepmaniad = gets.chomp
102
+ puts 'Installing StepMania AppImage'.colorize(:red)
103
+ stepmania = system( "cd ~/ && wget https://dl2.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTYzMTUwODUxNiwidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiI0MmE1M2M2NjdiNDQ2NDIwODVlMDA5OGI5NWIxNDQ4MTY3N2ZhNmI1MjAyMDcwYTgxZjkxYjI2MDEwMjAzNTQ3MGVhNzFhM2VmZDNmZjJmNjkzZmQ5ODA2YzAxYjNjNmYxNWU2YzVmMGY4MWIyY2YwNDMwZmQ2ZTcwNmFmZjcyZiIsInQiOjE2NDc4ODE3NTIsInN0ZnAiOiJjYmRlYjg2YmM5YWE5MDFjM2ZiNzU1MmIzYWNmZDljNSIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.5Pqzqpy4A6_2FjvxKrjN2fYy9CT68TaZKKmu_pXXlAc/StepMania-5.1-f1ebe8d-x86_64.AppImage " )
104
+ puts 'app installed with sucess in your home'.colorize(:red)
105
+ end
106
+
107
+ if res == 'zoom'
108
+ puts 'I will install Zoom x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
109
+ zoomd = gets.chomp
110
+ puts 'Installing Zoom AppImage'.colorize(:red)
111
+ 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 " )
112
+ puts 'app installed with sucess in your home'.colorize(:red)
113
+ end
114
+
115
+ if res == 'schildichat'
116
+ puts 'I will install SchildiChat x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
117
+ schatd = gets.chomp
118
+ puts 'Installing SchildiChat AppImage'.colorize(:red)
119
+ schat = system( "cd ~/ && wget https://dl2.pling.com/api/files/download/j/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTYwODIwNzkzMCwidSI6bnVsbCwibHQiOiJkb3dubG9hZCIsInMiOiIzMDdiM2MyNzdjNmEwNmJjNTUzOWIyZTRmOWJiZmJkNWFjZjM5NjhjYzc3MGI4YTU2OTZkNjcxOTgyNWVmYjg2YTc5M2NhMTQ5MzRmY2ZmODg0NTIwODdhMjUzNDkzOGJhZDE2NDY5MWEwZjQ4OTQzYzRjZDdhN2Y3ZTMzYmY3MCIsInQiOjE2NDc4ODI3NDcsInN0ZnAiOiJjYmRlYjg2YmM5YWE5MDFjM2ZiNzU1MmIzYWNmZDljNSIsInN0aXAiOiIyMDEuMjE2Ljc0LjIyMyJ9.HM7ynsB4H-AV0CHqvHin3rzitDgTZTU1dksEiRrKvBQ/SchildiChat-1.7.15.AppImage " )
120
+ puts 'app installed with sucess in your home'.colorize(:red)
121
+ end
122
+
123
+ if res == 'cpu-x'
124
+ puts 'I will install CPU-X x86_64 AppImage, Correct? (Press Enter)'.colorize(:red)
125
+ cpuxd = gets.chomp
126
+ puts 'Installing CPU-X AppImage'.colorize(:red)
127
+ 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 " )
128
+ puts 'app installed with sucess in your home'.colorize(:red)
129
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jewelrystore
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.6
4
+ version: 1.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - NillyTheL0L
@@ -10,13 +10,28 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
  date: 2022-03-22 00:00:00.000000000 Z
13
- dependencies: []
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
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'
14
28
  description: An appimage cli store
15
29
  email: iagodp08@gmail.com
16
30
  executables: []
17
31
  extensions: []
18
32
  extra_rdoc_files: []
19
33
  files:
34
+ - bin/jewelrystore
20
35
  - lib/jewelrystore.rb
21
36
  homepage: https://jewelrystore.emperror.repl.co
22
37
  licenses: