shellboxCLI 0.1.8 → 0.1.9
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/lib/ShellboxCLI.rb +1 -2
- data/lib/ios/hooks/install-hooks.rb +1 -1
- data/lib/ios/hooks/pre-commit +0 -0
- metadata +2 -3
- data/lib/ios/hooks/install-hooks.sh +0 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b177cbce7350d43ceab5ce3c4fed9fd610d0a5bb82fb8e57360fd47b829d0b77
|
4
|
+
data.tar.gz: 82e9cfe8fe8ed2fa515c41cffdb21b7dceae094659e8210875dc23c14e80675d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 229d8d7c1658cf9c8ebd4a13516b416199874d88f3c070cd12b15455270e84a0771972786edb80f4999c3b1cc798e5b8b7ab29b80aa0208aa9b1b886abd1317b
|
7
|
+
data.tar.gz: 280ca136f13288688e244ec63bddc9c51d716c90f05760898d94669f75cae3ab1b72d21ac3287f525bdc8d827f12cc4b75c4e1b729c0331ab92b632af58958eb
|
data/lib/ShellboxCLI.rb
CHANGED
@@ -10,4 +10,4 @@ destination_file = File.join(".git", "hooks", "pre-commit")
|
|
10
10
|
FileUtils.cp(source_file, destination_file)
|
11
11
|
File.chmod(0755, destination_file)
|
12
12
|
|
13
|
-
puts "Hook pre-commit configurado com sucesso
|
13
|
+
puts "Hook pre-commit configurado com sucesso!"
|
data/lib/ios/hooks/pre-commit
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shellboxCLI
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ShellBox App
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -65,7 +65,6 @@ files:
|
|
65
65
|
- bin/shellbox
|
66
66
|
- lib/ShellboxCLI.rb
|
67
67
|
- lib/ios/hooks/install-hooks.rb
|
68
|
-
- lib/ios/hooks/install-hooks.sh
|
69
68
|
- lib/ios/hooks/pre-commit
|
70
69
|
- lib/ios/iosOption.rb
|
71
70
|
- lib/ios/module/setup/ConfigureSwift.rb
|
@@ -1,12 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
|
3
|
-
if [ ! -d ".git/hooks" ]; then
|
4
|
-
echo "Pasta .git/hooks não encontrada. Certifique-se de estar no diretório raiz do seu repositório Git."
|
5
|
-
exit 1
|
6
|
-
fi
|
7
|
-
|
8
|
-
# Copia o pre-commit do CLI para a pasta .git/hooks do projeto
|
9
|
-
cp pre-commit .git/hooks/
|
10
|
-
chmod +x .git/hooks/pre-commit
|
11
|
-
|
12
|
-
echo "Hook pre-commit configurado com sucesso no seu projeto local!"
|