classbench 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 +4 -4
- data/.document +5 -0
- data/Gemfile +11 -0
- data/Gemfile.lock +80 -0
- data/LICENSE.txt +22 -0
- data/README.rdoc +3 -0
- data/Rakefile +51 -0
- data/VERSION +1 -0
- data/test/helper.rb +34 -0
- data/test/test_classbench.rb +7 -0
- metadata +88 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 974d73db164acb263c207f91dd845b01990b68d7
|
|
4
|
+
data.tar.gz: bc66219c1d0e8d2779a8f194a971ce271c4cc714
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc9360740a9d6c246f805933fe12aa37a1c48708f37a50379d6a4dd79b346eb4041a878adf0db83ef194c08ce969762d3ef5b168d51db08bda8ea62f39bbd959
|
|
7
|
+
data.tar.gz: 6803fd033423c07bdf5248733861b651f156b51e2904e20414f5d083d6d93b937664642607d231cf6e0c4bc2b06b216afc554c8b01c6ba350c50579f34d5bba1
|
data/.document
ADDED
data/Gemfile
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
source "http://rubygems.org"
|
|
2
|
+
|
|
3
|
+
# Add dependencies to develop your gem here.
|
|
4
|
+
# Include everything needed to run rake, tests, features, etc.
|
|
5
|
+
group :development do
|
|
6
|
+
gem "shoulda", ">= 0"
|
|
7
|
+
gem "rdoc", "~> 3.12"
|
|
8
|
+
gem "bundler", "~> 1.0"
|
|
9
|
+
gem "jeweler", "~> 2.0.1"
|
|
10
|
+
gem "simplecov", ">= 0"
|
|
11
|
+
end
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
GEM
|
|
2
|
+
remote: http://rubygems.org/
|
|
3
|
+
specs:
|
|
4
|
+
activesupport (4.2.2)
|
|
5
|
+
i18n (~> 0.7)
|
|
6
|
+
json (~> 1.7, >= 1.7.7)
|
|
7
|
+
minitest (~> 5.1)
|
|
8
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
|
9
|
+
tzinfo (~> 1.1)
|
|
10
|
+
addressable (2.3.8)
|
|
11
|
+
builder (3.2.2)
|
|
12
|
+
descendants_tracker (0.0.4)
|
|
13
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
|
14
|
+
docile (1.1.5)
|
|
15
|
+
faraday (0.9.1)
|
|
16
|
+
multipart-post (>= 1.2, < 3)
|
|
17
|
+
git (1.2.9.1)
|
|
18
|
+
github_api (0.12.3)
|
|
19
|
+
addressable (~> 2.3)
|
|
20
|
+
descendants_tracker (~> 0.0.4)
|
|
21
|
+
faraday (~> 0.8, < 0.10)
|
|
22
|
+
hashie (>= 3.3)
|
|
23
|
+
multi_json (>= 1.7.5, < 2.0)
|
|
24
|
+
nokogiri (~> 1.6.3)
|
|
25
|
+
oauth2
|
|
26
|
+
hashie (3.4.2)
|
|
27
|
+
highline (1.7.2)
|
|
28
|
+
i18n (0.7.0)
|
|
29
|
+
jeweler (2.0.1)
|
|
30
|
+
builder
|
|
31
|
+
bundler (>= 1.0)
|
|
32
|
+
git (>= 1.2.5)
|
|
33
|
+
github_api
|
|
34
|
+
highline (>= 1.6.15)
|
|
35
|
+
nokogiri (>= 1.5.10)
|
|
36
|
+
rake
|
|
37
|
+
rdoc
|
|
38
|
+
json (1.8.3)
|
|
39
|
+
jwt (1.5.0)
|
|
40
|
+
mini_portile (0.6.2)
|
|
41
|
+
minitest (5.7.0)
|
|
42
|
+
multi_json (1.11.1)
|
|
43
|
+
multi_xml (0.5.5)
|
|
44
|
+
multipart-post (2.0.0)
|
|
45
|
+
nokogiri (1.6.6.2)
|
|
46
|
+
mini_portile (~> 0.6.0)
|
|
47
|
+
oauth2 (1.0.0)
|
|
48
|
+
faraday (>= 0.8, < 0.10)
|
|
49
|
+
jwt (~> 1.0)
|
|
50
|
+
multi_json (~> 1.3)
|
|
51
|
+
multi_xml (~> 0.5)
|
|
52
|
+
rack (~> 1.2)
|
|
53
|
+
rack (1.6.4)
|
|
54
|
+
rake (10.4.2)
|
|
55
|
+
rdoc (3.12.2)
|
|
56
|
+
json (~> 1.4)
|
|
57
|
+
shoulda (3.5.0)
|
|
58
|
+
shoulda-context (~> 1.0, >= 1.0.1)
|
|
59
|
+
shoulda-matchers (>= 1.4.1, < 3.0)
|
|
60
|
+
shoulda-context (1.2.1)
|
|
61
|
+
shoulda-matchers (2.8.0)
|
|
62
|
+
activesupport (>= 3.0.0)
|
|
63
|
+
simplecov (0.10.0)
|
|
64
|
+
docile (~> 1.1.0)
|
|
65
|
+
json (~> 1.8)
|
|
66
|
+
simplecov-html (~> 0.10.0)
|
|
67
|
+
simplecov-html (0.10.0)
|
|
68
|
+
thread_safe (0.3.5)
|
|
69
|
+
tzinfo (1.2.2)
|
|
70
|
+
thread_safe (~> 0.1)
|
|
71
|
+
|
|
72
|
+
PLATFORMS
|
|
73
|
+
ruby
|
|
74
|
+
|
|
75
|
+
DEPENDENCIES
|
|
76
|
+
bundler (~> 1.0)
|
|
77
|
+
jeweler (~> 2.0.1)
|
|
78
|
+
rdoc (~> 3.12)
|
|
79
|
+
shoulda
|
|
80
|
+
simplecov
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2015 Adam Lučanský (xlucan01)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
data/README.rdoc
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# encoding: utf-8
|
|
2
|
+
|
|
3
|
+
require 'rubygems'
|
|
4
|
+
require 'bundler'
|
|
5
|
+
begin
|
|
6
|
+
Bundler.setup(:default, :development)
|
|
7
|
+
rescue Bundler::BundlerError => e
|
|
8
|
+
$stderr.puts e.message
|
|
9
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
|
10
|
+
exit e.status_code
|
|
11
|
+
end
|
|
12
|
+
require 'rake'
|
|
13
|
+
|
|
14
|
+
require 'jeweler'
|
|
15
|
+
Jeweler::Tasks.new do |gem|
|
|
16
|
+
# gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
|
|
17
|
+
gem.name = "classbench"
|
|
18
|
+
gem.homepage = "http://github.com/lucansky/classbench"
|
|
19
|
+
gem.license = "MIT"
|
|
20
|
+
gem.summary = %Q{Utility for firewall/OpenFLOW rules generation}
|
|
21
|
+
gem.description = %Q{Statistical generation of firewall/OpenFLOW rules based on seed file (IN DEVELOPMENT)}
|
|
22
|
+
gem.email = "adamlucansky@gmail.com"
|
|
23
|
+
gem.authors = ["Adam Lucansky", "Gianni Antichi", "Jiri Matousek"]
|
|
24
|
+
# dependencies defined in Gemfile
|
|
25
|
+
end
|
|
26
|
+
Jeweler::RubygemsDotOrgTasks.new
|
|
27
|
+
|
|
28
|
+
require 'rake/testtask'
|
|
29
|
+
Rake::TestTask.new(:test) do |test|
|
|
30
|
+
test.libs << 'lib' << 'test'
|
|
31
|
+
test.pattern = 'test/**/test_*.rb'
|
|
32
|
+
test.verbose = true
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
desc "Code coverage detail"
|
|
36
|
+
task :simplecov do
|
|
37
|
+
ENV['COVERAGE'] = "true"
|
|
38
|
+
Rake::Task['test'].execute
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
task :default => :test
|
|
42
|
+
|
|
43
|
+
require 'rdoc/task'
|
|
44
|
+
Rake::RDocTask.new do |rdoc|
|
|
45
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
|
46
|
+
|
|
47
|
+
rdoc.rdoc_dir = 'rdoc'
|
|
48
|
+
rdoc.title = "classbench #{version}"
|
|
49
|
+
rdoc.rdoc_files.include('README*')
|
|
50
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
51
|
+
end
|
data/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.0.2
|
data/test/helper.rb
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
require 'simplecov'
|
|
2
|
+
|
|
3
|
+
module SimpleCov::Configuration
|
|
4
|
+
def clean_filters
|
|
5
|
+
@filters = []
|
|
6
|
+
end
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
SimpleCov.configure do
|
|
10
|
+
clean_filters
|
|
11
|
+
load_adapter 'test_frameworks'
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
ENV["COVERAGE"] && SimpleCov.start do
|
|
15
|
+
add_filter "/.rvm/"
|
|
16
|
+
end
|
|
17
|
+
require 'rubygems'
|
|
18
|
+
require 'bundler'
|
|
19
|
+
begin
|
|
20
|
+
Bundler.setup(:default, :development)
|
|
21
|
+
rescue Bundler::BundlerError => e
|
|
22
|
+
$stderr.puts e.message
|
|
23
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
|
24
|
+
exit e.status_code
|
|
25
|
+
end
|
|
26
|
+
require 'test/unit'
|
|
27
|
+
require 'shoulda'
|
|
28
|
+
|
|
29
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
30
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
31
|
+
require 'classbench'
|
|
32
|
+
|
|
33
|
+
class Test::Unit::TestCase
|
|
34
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: classbench
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Lucansky
|
|
@@ -10,16 +10,98 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2015-06-
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
13
|
+
date: 2015-06-19 00:00:00.000000000 Z
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: shoulda
|
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
|
18
|
+
requirements:
|
|
19
|
+
- - ">="
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
22
|
+
type: :development
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '0'
|
|
29
|
+
- !ruby/object:Gem::Dependency
|
|
30
|
+
name: rdoc
|
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
|
32
|
+
requirements:
|
|
33
|
+
- - "~>"
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: '3.12'
|
|
36
|
+
type: :development
|
|
37
|
+
prerelease: false
|
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
39
|
+
requirements:
|
|
40
|
+
- - "~>"
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '3.12'
|
|
43
|
+
- !ruby/object:Gem::Dependency
|
|
44
|
+
name: bundler
|
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
|
46
|
+
requirements:
|
|
47
|
+
- - "~>"
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '1.0'
|
|
50
|
+
type: :development
|
|
51
|
+
prerelease: false
|
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
53
|
+
requirements:
|
|
54
|
+
- - "~>"
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: '1.0'
|
|
57
|
+
- !ruby/object:Gem::Dependency
|
|
58
|
+
name: jeweler
|
|
59
|
+
requirement: !ruby/object:Gem::Requirement
|
|
60
|
+
requirements:
|
|
61
|
+
- - "~>"
|
|
62
|
+
- !ruby/object:Gem::Version
|
|
63
|
+
version: 2.0.1
|
|
64
|
+
type: :development
|
|
65
|
+
prerelease: false
|
|
66
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
67
|
+
requirements:
|
|
68
|
+
- - "~>"
|
|
69
|
+
- !ruby/object:Gem::Version
|
|
70
|
+
version: 2.0.1
|
|
71
|
+
- !ruby/object:Gem::Dependency
|
|
72
|
+
name: simplecov
|
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
|
74
|
+
requirements:
|
|
75
|
+
- - ">="
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: '0'
|
|
78
|
+
type: :development
|
|
79
|
+
prerelease: false
|
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
81
|
+
requirements:
|
|
82
|
+
- - ">="
|
|
83
|
+
- !ruby/object:Gem::Version
|
|
84
|
+
version: '0'
|
|
85
|
+
description: Statistical generation of firewall/OpenFLOW rules based on seed file
|
|
86
|
+
(IN DEVELOPMENT)
|
|
16
87
|
email: adamlucansky@gmail.com
|
|
17
88
|
executables: []
|
|
18
89
|
extensions: []
|
|
19
|
-
extra_rdoc_files:
|
|
90
|
+
extra_rdoc_files:
|
|
91
|
+
- LICENSE.txt
|
|
92
|
+
- README.rdoc
|
|
20
93
|
files:
|
|
94
|
+
- ".document"
|
|
95
|
+
- Gemfile
|
|
96
|
+
- Gemfile.lock
|
|
97
|
+
- LICENSE.txt
|
|
98
|
+
- README.rdoc
|
|
99
|
+
- Rakefile
|
|
100
|
+
- VERSION
|
|
21
101
|
- lib/classbench.rb
|
|
22
|
-
|
|
102
|
+
- test/helper.rb
|
|
103
|
+
- test/test_classbench.rb
|
|
104
|
+
homepage: http://github.com/lucansky/classbench
|
|
23
105
|
licenses:
|
|
24
106
|
- MIT
|
|
25
107
|
metadata: {}
|