forked from trema/trema
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrema.gemspec
More file actions
41 lines (30 loc) · 1.1 KB
/
trema.gemspec
File metadata and controls
41 lines (30 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
$:.push File.expand_path( "../ruby", __FILE__ )
require "trema/version"
Gem::Specification.new do | gem |
gem.name = "trema"
gem.version = Trema::VERSION
gem.summary = "Full-stack OpenFlow framework."
gem.description = "Trema is a full-stack, easy-to-use framework for developing OpenFlow controllers in Ruby and C."
gem.required_ruby_version = ">= 1.8.7"
gem.license = "GPL2"
gem.authors = [ "Yasuhito Takamiya" ]
gem.email = [ "[email protected]" ]
gem.homepage = "http://github.com/trema/trema"
gem.executables = [ "trema", "trema-config" ]
gem.files = `git ls-files`.split( "\n" )
gem.require_path = "ruby"
gem.extensions = [ "Rakefile" ]
gem.extra_rdoc_files = [ "README.md" ]
gem.test_files = `git ls-files -- {spec,features}/*`.split( "\n" )
gem.add_dependency "bundler"
gem.add_dependency "gli", "~> 2.8.0"
gem.add_dependency "paper_house", "~> 0.4.0"
gem.add_dependency "pio", "~> 0.2.4"
gem.add_dependency "rake", "~> 10.1.0"
gem.add_dependency "rdoc", "~> 4.0.1"
end
### Local variables:
### mode: Ruby
### coding: utf-8-unix
### indent-tabs-mode: nil
### End: