librex 0.0.21 → 0.0.23
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.
- data/Rakefile +3 -2
- metadata +1 -1
data/Rakefile
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
|
|
3
3
|
task :build => :update do
|
|
4
|
+
Rake::Task['clean'].execute
|
|
4
5
|
system "gem build librex.gemspec"
|
|
5
6
|
end
|
|
6
7
|
|
|
7
8
|
task :release => :build do
|
|
8
9
|
system "gem push librex-*.gem"
|
|
9
|
-
|
|
10
|
+
Rake::Task['clean'].execute
|
|
10
11
|
end
|
|
11
12
|
|
|
12
13
|
task :clean do
|
|
@@ -18,7 +19,7 @@ task :update do
|
|
|
18
19
|
system "git rm lib/rex.rb"
|
|
19
20
|
system "git rm lib/rex.rb.ts.rb"
|
|
20
21
|
system "git rm -rf lib/"
|
|
21
|
-
system "rm -rf lib/"
|
|
22
|
+
system "rm -rf lib/" #So there is a cvs file in the msf stuff that breaks things
|
|
22
23
|
system "mkdir lib"
|
|
23
24
|
|
|
24
25
|
puts "[*] Checking out Metasploit trunk"
|