Skip to content

Commit

Permalink
add Virtual Openflow Switch Factory
Browse files Browse the repository at this point in the history
  • Loading branch information
kohoumas committed Feb 13, 2013
1 parent f26f1a4 commit f950034
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
1 change: 0 additions & 1 deletion bin/omf_rc_virtual_openflow_switch_factory
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ require "optparse"
require 'omf_rc'
require 'omf_rc/resource_factory'
require 'omf_rc_openflow'

$stdout.sync = true

options = {
Expand Down
5 changes: 4 additions & 1 deletion lib/omf_rc_openflow.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@

require 'omf_rc/resource_proxy/openflow_slice_factory.rb'
require 'omf_rc/resource_proxy/openflow_slice.rb'
require 'omf_rc/util/openflow_tools.rb'
require 'omf_rc/util/openflow_slice_tools.rb'
require 'omf_rc/resource_proxy/virtual_openflow_switch_factory.rb'
require 'omf_rc/resource_proxy/virtual_openflow_switch.rb'
require 'omf_rc/util/virtual_openflow_switch_tools.rb'
4 changes: 2 additions & 2 deletions omf_rc_openflow.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ require File.expand_path('../lib/omf_rc_openflow/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Kostas Choumas"]
gem.email = ["[email protected]"]
gem.description = %q{OMF Resource Controllers related to Openflow}
gem.summary = %q{OMF Resource Controllers related to Openflow}
gem.description = %q{OMF6 Resource Controllers related to the Openflow technology}
gem.summary = %q{OMF6 Resource Controllers related to the Openflow technology, including the Stanford software tools named FlowVisor and OpenvSwitch}
gem.homepage = "http://nitlab.inf.uth.gr"

gem.files = `git ls-files`.split($\)
Expand Down
18 changes: 18 additions & 0 deletions omf_rc_openflow.gemspec~
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/omf_rc_openflow/version', __FILE__)

Gem::Specification.new do |gem|
gem.authors = ["Kostas Choumas"]
gem.email = ["[email protected]"]
gem.description = %q{OMF Resource Controllers related to Openflow}
gem.summary = %q{OMF Resource Controllers related to Openflow}
gem.homepage = "http://nitlab.inf.uth.gr"

gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "omf_rc_openflow"
gem.require_paths = ["lib"]
gem.version = OmfRcOpenflow::VERSION
gem.add_runtime_dependency "omf_rc", "~> 6.0.0.pre"
end

0 comments on commit f950034

Please sign in to comment.