ruzzer 0.0.1 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 29e464d224a17d43d1b533091ffc2461f2d3559b
4
- data.tar.gz: 4cda2d7df8dd36284ca433baf01d54b4075b121c
3
+ metadata.gz: 5bd3fc4211272d4e3d3494110914b4ef19822de3
4
+ data.tar.gz: e0da5246e1cb6f23caf1597af33bf74dfe06400e
5
5
  SHA512:
6
- metadata.gz: 0ac988cc57166d1f5a37f0228c3e2865b52a6d5d9fe1013f7c5a5cc83ba1f4d2ffa85f84cd886198f637a86328fd203a6e250053e0d3b09e46bbb8ff63cca5ac
7
- data.tar.gz: 9428b9749393a55969642a98b3713a71a6a3143257665f0be571f8590b1ffcc0064e26e3b5b1ad739134d89763633687d96967d6cd7e1b38a14618e5a6234daf
6
+ metadata.gz: 4ae7f22ae37f4171c0b5e82f4b50a79bed9367d66807984fbb526fca29fd18954000524554b8a1738f857448179a31e078508f47e3f3b75305d69bbf0cbdf999
7
+ data.tar.gz: 431bd1982ae9c4654300db63815f67c50a4cdeda12c36c87a0324d869474544875fe8414f5f7e0b74bfce3509e760f1eb445bf117b18897315bf812ada4bf524
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ /Gemfile.lock
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.0.0
5
+ - 2.1
6
+ - 2.2
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ruzzer.gemspec
4
+ gemspec
5
+
6
+ gem 'coveralls', require: false
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 gorums
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ [![Gem Version](https://badge.fury.io/rb/ruzzer.svg)](http://badge.fury.io/rb/ruzzer) [![Build Status](https://travis-ci.org/gorums/ruzzer.svg)](https://travis-ci.org/gorums/ruzzer) [![Coverage Status](https://coveralls.io/repos/gorums/ruzzer/badge.svg?branch=master&service=github)](https://coveralls.io/github/gorums/ruzzer?branch=master)
2
+
3
+ # Ruzzer
4
+
5
+ The idea with this framework is generate stream to send into the target and monitor whether throw an exception.
6
+
7
+ ## Goals
8
+
9
+ 1. Generate different type of stream
10
+
11
+ ## Installation
12
+
13
+ Add this line to your application's Gemfile:
14
+
15
+ ```ruby
16
+ gem 'Ruzzer'
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install Ruzzer
26
+
27
+ ## Usage
28
+
29
+ ./ruzzer.rb [OPTIONS]
30
+
31
+ ## OPTIONS
32
+
33
+ -v Show the version
34
+
35
+ ## Contributing
36
+
37
+ 1. Fork it ( https://github.com/gorums/ruzzer/fork )
38
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
39
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
40
+ 4. Push to the branch (`git push origin my-new-feature`)
41
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
data/bin/ruzzer ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'ruzzer'
4
+
5
+ puts Ruzzer.start
@@ -0,0 +1,11 @@
1
+ module Ruzzer
2
+ module Version
3
+ MAJOR = 0
4
+ MINOR = 0
5
+ PATCH = 2
6
+
7
+ def self.to_s
8
+ [MAJOR, MINOR, PATCH].join('.')
9
+ end
10
+ end
11
+ end
data/ruzzer.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ruzzer/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ruzzer"
8
+ spec.version = Ruzzer::Version.to_s
9
+ spec.authors = ["Alejandro Ferrandiz Fonseca"]
10
+ spec.email = ["acksecurity@hotmail.com"]
11
+ spec.summary = %q{Fuzzer Framework on Ruby}
12
+ spec.description = %q{This gem generate stream to send into the target and monitor whether throw an exception}
13
+ spec.homepage = "http://gorums.github.io/ruzzer"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruzzer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alejandro Ferrandiz Fonseca
@@ -42,11 +42,22 @@ description: This gem generate stream to send into the target and monitor whethe
42
42
  throw an exception
43
43
  email:
44
44
  - acksecurity@hotmail.com
45
- executables: []
45
+ executables:
46
+ - ruzzer
46
47
  extensions: []
47
48
  extra_rdoc_files: []
48
49
  files:
50
+ - ".gitignore"
51
+ - ".travis.yml"
52
+ - Gemfile
53
+ - Gemfile.lock
54
+ - LICENSE.txt
55
+ - README.md
56
+ - Rakefile
57
+ - bin/ruzzer
49
58
  - lib/ruzzer.rb
59
+ - lib/ruzzer/version.rb
60
+ - ruzzer.gemspec
50
61
  homepage: http://gorums.github.io/ruzzer
51
62
  licenses:
52
63
  - MIT