shark 0.0.0.1 → 0.0.0.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/Shark +4 -2
- data/lib/shark/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: 659ec6c928006ba66cce74f93e41ca1b080fb3a9
|
|
4
|
+
data.tar.gz: 51b96eb85c041b8710617b4610039290d597c44a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9f2f1ab309850a586526decd25b2c573fcd1ef57bef2206fae47ab36a3fb3c29d2e34cc3fab8bf2e478bb9598e8278a96118c56feabdf9822a33f8191f6c642
|
|
7
|
+
data.tar.gz: e7af9407b187ab263e5f11dc2c266e911dd8af801f6ee42b49e5334387f627dd31349f67c24f5d10991f844ff9fe529c4b9daae8f08e097ecbf74a68dde32d35
|
data/bin/Shark
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
#Shark is a simple testing tool for testing file system operations. It is still under development
|
|
2
4
|
|
|
3
5
|
require 'optparse'
|
|
4
6
|
require 'fileutils'
|
|
@@ -458,7 +460,7 @@ def create_mac_executable(input_file)
|
|
|
458
460
|
|
|
459
461
|
end
|
|
460
462
|
|
|
461
|
-
mac_file_contents = ["#!/usr/bin/env ruby"] + read_file_line_by_line(input_file)
|
|
463
|
+
mac_file_contents = ["#!/usr/bin/env ruby\n\n"] + read_file_line_by_line(input_file)
|
|
462
464
|
|
|
463
465
|
mac_file_path = input_file.sub(".rb","")
|
|
464
466
|
|
data/lib/shark/version.rb
CHANGED