topologygenerator 0.0.13 → 0.0.14
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/lib/topologygenerator/version.rb +1 -1
- data/topologygenerator.gemspec +11 -8
- metadata +12 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aebf02d9e22bc33b8e03d2e2f01e3ace4688921b
|
4
|
+
data.tar.gz: 900b820d45f14d763911c2f7327989f04e80c390
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 220e81ed264452e49adbbea34119c16d938a6a21518d545785044784637e10156c37cffefa7a36f21a0cfbe32c60a8d1adf040a9750e7345902e2f7a80e469a3
|
7
|
+
data.tar.gz: 54f68692e12491fd4f8e5ab19289be0859917ca3e576793ef9a8d1e41565aa281c977a44507635d834f43b4d0ce5aa2d9b0b2a64f03fa973a3b137b08c9e1db6
|
data/topologygenerator.gemspec
CHANGED
@@ -12,14 +12,17 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.email = ["andy.laurito@gmail.com"]
|
13
13
|
|
14
14
|
spec.summary = %q{Build a topology from a source provider and generates an output using a custom builder.}
|
15
|
-
spec.description = %q{The topologygenerator gem is a tool for building
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
15
|
+
spec.description = %q{The topologygenerator gem is a tool for building a custom output file format out of a
|
16
|
+
given network topology.
|
17
|
+
The topology can be retrieved from a custom file written in ruby by the user, or from an
|
18
|
+
SDN controller (by specifying the API uri).
|
19
|
+
The ONOS controller is currently supported, while the API for OpenDayLight is in
|
20
|
+
progress.
|
21
|
+
|
22
|
+
When building your output, you have to write a module that describes how to each
|
23
|
+
class defined in the network topology. The topologygenerator gem will then use the
|
24
|
+
defined modules to generate the output desired. You can see examples of how to use
|
25
|
+
this gem in the public github webpage.
|
23
26
|
}
|
24
27
|
spec.homepage = "https://github.com/andyLaurito92/topologygenerator"
|
25
28
|
spec.license = "MIT"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: topologygenerator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrés Laurito
|
@@ -80,16 +80,17 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
|
-
description: "The topologygenerator gem is a tool for building
|
84
|
-
|
85
|
-
from a custom file written in ruby by the user, or
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
The topologygenerator gem will then use
|
91
|
-
defined to generate the output desired
|
92
|
-
of how to use this gem in the public
|
83
|
+
description: "The topologygenerator gem is a tool for building a custom output file
|
84
|
+
format out of a \n given network topology. \n The
|
85
|
+
topology can be retrieved from a custom file written in ruby by the user, or from
|
86
|
+
an \n SDN controller (by specifying the API uri).\n The
|
87
|
+
ONOS controller is currently supported, while the API for OpenDayLight is in \n
|
88
|
+
\ progress. \n\n When building
|
89
|
+
your output, you have to write a module that describes how to each \n class
|
90
|
+
defined in the network topology. The topologygenerator gem will then use the \n
|
91
|
+
\ defined modules to generate the output desired. You
|
92
|
+
can see examples of how to use \n this gem in the public
|
93
|
+
github webpage.\n "
|
93
94
|
email:
|
94
95
|
- andy.laurito@gmail.com
|
95
96
|
executables: []
|