appextensioninstaller 0.0.2 → 0.0.3
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/appextensioninstaller.rb +4 -1
- data/lib/appextensioninstaller/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 004460e73775d2f46b041a438da734e53cad79f6
|
|
4
|
+
data.tar.gz: 048cb02f8381a946e99ad793937ad670bd13d83b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b2930732897f71cb36055b1bb951154cd7c7842accd40b3efd534e25a3fc2d1d2b5fdf6bac0e6982676abf5dd0138c7c197c0eb38a7e1fe4c4cabf0a3a52b13
|
|
7
|
+
data.tar.gz: 082ad4f089f7d4d3a6452ae4e93ad6dd36155efe3b387a3b4852b648da485cacc35bdbebec65a562ee9ecf9e7483f0aa434b3cc89c0d7f0d07d626536c62d82f
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
1
3
|
if Encoding.default_external != Encoding::UTF_8
|
|
2
4
|
STDERR.puts <<-DOC
|
|
3
5
|
\e[33mWARNING: CocoaPods requires your terminal to be using UTF-8 encoding.
|
|
@@ -7,12 +9,13 @@ export LANG=en_US.UTF-8
|
|
|
7
9
|
\e[0m
|
|
8
10
|
DOC
|
|
9
11
|
end
|
|
12
|
+
puts Encoding::UTF_8
|
|
10
13
|
|
|
11
14
|
require "appextensioninstaller/version"
|
|
12
15
|
|
|
13
16
|
module Appextensioninstaller
|
|
14
17
|
class Shell
|
|
15
|
-
|
|
18
|
+
|
|
16
19
|
def initialize(cmd)
|
|
17
20
|
@cmd = cmd
|
|
18
21
|
end
|