rlic 1.0.0
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 +7 -0
- data/bin/rlic +12 -0
- data/lib/rlic.rb +8 -0
- metadata +60 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 38533173df0dc6ef8e2123cbcf7ea52667c87b09bab30433a62e3d0d1f2d68d4
|
4
|
+
data.tar.gz: 5a9b5ef54714f884b59ae1cf9ece4df989fc25cd4ff44ac11dd3f6a7eb39f7be
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a03f2796fde4e06ef745e19513951a9fe07769ddcd6fbab543d8ff720dda64039c81b0b9330068c7563fd1b8921c7123144c45852c1e175cb933f63ccc4ff2f4
|
7
|
+
data.tar.gz: c33435092a5c3438da827fc8f494e2b0ada4bfd3ef13d9db9cf06a0a9e86371fd782af1e2d401c18dc5f5925b704e0d86ca3f9e20526844a6023181c31c3b14d
|
data/bin/rlic
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'BRLL'
|
3
|
+
output("Welcome to rlic!!");
|
4
|
+
output("iso directory ex: /home/user1/ubuntu.iso :");
|
5
|
+
isodir = listen;
|
6
|
+
exec("lsblk");
|
7
|
+
output("Usb or SD :");
|
8
|
+
deviceid = listen;
|
9
|
+
output("Installing #{isodir} to #{deviceid} thats correct? [y,n]");
|
10
|
+
correctu = listen;
|
11
|
+
iseql(correctu,"y",exec("dd if=#{isodir} of=#{deviceid} bs=1M"))
|
12
|
+
|
data/lib/rlic.rb
ADDED
metadata
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rlic
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- nora-software
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-03-13 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: BRLL
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.0'
|
27
|
+
description: rlic is an iso creator in ruby
|
28
|
+
email:
|
29
|
+
- iagodp08@gmail.com
|
30
|
+
executables:
|
31
|
+
- rlic
|
32
|
+
extensions: []
|
33
|
+
extra_rdoc_files: []
|
34
|
+
files:
|
35
|
+
- bin/rlic
|
36
|
+
- lib/rlic.rb
|
37
|
+
homepage:
|
38
|
+
licenses:
|
39
|
+
- MIT
|
40
|
+
metadata: {}
|
41
|
+
post_install_message:
|
42
|
+
rdoc_options: []
|
43
|
+
require_paths:
|
44
|
+
- lib
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: 2.6.0
|
50
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
requirements: []
|
56
|
+
rubygems_version: 3.3.26
|
57
|
+
signing_key:
|
58
|
+
specification_version: 4
|
59
|
+
summary: ruby linux iso creator
|
60
|
+
test_files: []
|