warding 1.0.0 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e583d6fd634faea6fc3c02764e74d6ecaa11a1d0c12799fe0aa2138c3a9ed8b
4
- data.tar.gz: 616f5c4f6878b89faa1de8f694ed982eb53302677e9a17d7ed92da2a3b684f77
3
+ metadata.gz: e9267b5fc3eab4a6be04294384487902a8b912985c00b23719b35214fffce068
4
+ data.tar.gz: c79a3897ce992395a0ac0004c18055999c56041e5d5628278027ee691a02ff2d
5
5
  SHA512:
6
- metadata.gz: 915cb9da2438da92acaeb61e5457fd837d0606897691ef4b4106bd1c03b9041c20d390eeea2b6539699d079aa55521101062974481d9572d5da8b896efcd332e
7
- data.tar.gz: 349f376ce8339dc37d9dd32d4985b26c1fe7fbd7ca23cd1895339ae846b279bd4cfa9b731805e8855bbf0766130216600d9549df6d85d8bb7af97c26561a0c3c
6
+ metadata.gz: 51122dcad475aeefbf92ebe49c8c85a6290d94aa1bf3fd64f2fa5c11d9d3b8d2507b6b6546669c5a10abcea34aef341ff7e9e0f196545114214226db566545e7
7
+ data.tar.gz: f8d20c1bba7b6feb04fdc66436c30e5584ed0e03b46014962580a0eabb5edda00ea8d10cdfd2cc594e9d3a8fdb15f41c1405551dbde1619160ba690f9d7911b6
data/README.md CHANGED
@@ -10,11 +10,19 @@ Install warding by using the `gem install` command.
10
10
  gem install warding
11
11
  ```
12
12
 
13
+ Or use the quick install method:
14
+
15
+ ```bash
16
+ wget -qO- https://raw.githubusercontent/marlospomin/warding/master/debug/quick-install.sh
17
+ export PATH="`ruby -e 'puts Gem.user_dir'`/bin:$PATH"
18
+ warding
19
+ ```
20
+
13
21
  ## Usage
14
22
 
15
23
  1. Download Arch Linux.
16
- 2. Boot from the live ISO.
17
- 3. Install warding (Ruby may also be required).
24
+ 2. Boot the live ISO.
25
+ 3. Install warding either from source or with the gem command.
18
26
  4. Run the binary executable `warding` and fill in the prompts.
19
27
  5. Enjoy.
20
28
 
@@ -0,0 +1,5 @@
1
+ #!/bin/bash
2
+
3
+ pacman -R man-pages --noconfirm
4
+ pacman -Syy ruby glibc libxcrypt --noconfirm
5
+ gem install warding
@@ -239,7 +239,7 @@ module Warding
239
239
  # check if on VM
240
240
  if `arch-chroot /mnt dmidecode -s system-manufacturer`.include?("VMware, Inc.")
241
241
  # install and enable VMware utils
242
- `arch-chroot /mnt pacman -S openvpn-vm-tools --noconfirm`
242
+ `arch-chroot /mnt pacman -S open-vm-tools --noconfirm`
243
243
  `arch-chroot /mnt systemctl enable vmtoolsd`
244
244
  end
245
245
  end
@@ -249,7 +249,7 @@ module Warding
249
249
  def setup_visuals(theme = "none")
250
250
  if theme == "none"
251
251
  nil
252
- elsif theme == "kde"
252
+ elsif theme == "plasma"
253
253
  # install packages
254
254
  `arch-chroot /mnt pacman -S xorg-server xf86-video-intel plasma konsole dolphin kmix sddm kvantum-qt5`
255
255
  # create conf dir
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Warding
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: warding
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marlos Pomin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-07 00:00:00.000000000 Z
11
+ date: 2020-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tty-prompt
@@ -42,6 +42,7 @@ files:
42
42
  - Rakefile
43
43
  - bin/warding
44
44
  - debug/install.sh
45
+ - debug/quick-install.sh
45
46
  - lib/warding.rb
46
47
  - lib/warding/version.rb
47
48
  - warding.gemspec