uirusu 0.0.11 → 1.0.0
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/README.markdown +1 -2
- data/Rakefile +0 -1
- data/lib/uirusu.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: 2c9a7eaa95379074a9c3db4c00e564fcffac6400
|
|
4
|
+
data.tar.gz: 8210b577fac1515a0b91443bb310ff58abf43592
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b215935bace5c0265b84ec1b2cbde18f5aed314a99a87f2dcf052bb605ae99137603649798f8f9d00895969e6e2a66018c6a7f89eb4cf49f6d94ecbeededf465
|
|
7
|
+
data.tar.gz: 6322371a09fa1bce225ac5f22f1babffc1a8d7d625eb6707c36ad0ea32460b77c1e49c3c7d2a645ebb3b406b72b7818738ab55110867b2b12f2d3da9abd2d36a
|
data/README.markdown
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
uirusu is an [Virustotal](http://www.virustotal.com) automation and convenience tool for hash, file and URL submission.
|
|
4
4
|
|
|
5
|
-
The current version is 0.0.
|
|
5
|
+
The current version is 1.0.0.
|
|
6
6
|
|
|
7
7
|
## Requirements
|
|
8
8
|
|
|
@@ -50,7 +50,6 @@ The current version is 0.0.10.
|
|
|
50
50
|
## API Usage
|
|
51
51
|
```ruby
|
|
52
52
|
#First you need to include the correct require files
|
|
53
|
-
require 'rubygems'
|
|
54
53
|
require 'uirusu'
|
|
55
54
|
|
|
56
55
|
API_KEY = "YOUR API KEY HERE"
|
data/Rakefile
CHANGED
|
@@ -46,7 +46,6 @@ task :push => [:build] do
|
|
|
46
46
|
system "gem push #{Uirusu::APP_NAME}-#{Uirusu::VERSION}.gem"
|
|
47
47
|
end
|
|
48
48
|
|
|
49
|
-
|
|
50
49
|
task :release => [:tag_and_bag, :push] do
|
|
51
50
|
puts "Just released #{Uirusu::APP_NAME} v#{Uirusu::VERSION}. #{Uirusu::APP_NAME} is rubygem for using the Virustotal web service! More information at #{Uirusu::HOME_PAGE}"
|
|
52
51
|
end
|
data/lib/uirusu.rb
CHANGED