hak 0.4.1 → 0.4.2
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/bin/hak +4 -4
- data/lib/hak/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: 07dd68e501893e0e7f37af885b5c2ea6bceaae53
|
|
4
|
+
data.tar.gz: 30acbb9397dcb3f10d8c223004e8bd27df7ae93f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b0d38ea02ab73d393ba1910cccbdda001a18444f0769b5490151cb4924418aeb46ca8a68b529263d5c2257a918847dc747443ef74ce95e135cea31ab2d581e8
|
|
7
|
+
data.tar.gz: c2d31df2654fe49232fffe0879e50b64fc6cdeda79dc4b66c7cd70bf58e66292fa3cff93dfca416032d3aeff0c8b356ce108c452f2a6dbbe7cf88e1056eec590
|
data/bin/hak
CHANGED
|
@@ -6,7 +6,7 @@ require 'yaml'
|
|
|
6
6
|
require 'colorize'
|
|
7
7
|
|
|
8
8
|
program :name, 'hak'
|
|
9
|
-
program :version, '0.4.
|
|
9
|
+
program :version, '0.4.2'
|
|
10
10
|
program :description, 'Hak - start hacking!'
|
|
11
11
|
|
|
12
12
|
default_command :help
|
|
@@ -160,10 +160,10 @@ command :create do |c|
|
|
|
160
160
|
end
|
|
161
161
|
|
|
162
162
|
# download package if not exist
|
|
163
|
-
if !Dir.exists?(File.expand_path("~/.hak/" + repo))
|
|
164
|
-
puts "#{repo} not exists, pulling"
|
|
163
|
+
#if !Dir.exists?(File.expand_path("~/.hak/" + repo))
|
|
164
|
+
#puts "#{repo} not exists, pulling"
|
|
165
165
|
system "hak pull #{repo}"
|
|
166
|
-
end
|
|
166
|
+
#end
|
|
167
167
|
|
|
168
168
|
# copies the package from local ~/.hak/[repo] to local folder
|
|
169
169
|
puts "copying ~/.hak/#{repo} to ./#{folder}"
|
data/lib/hak/version.rb
CHANGED