forked from trema/trema
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtrema.gemspec
40 lines (33 loc) · 1.32 KB
/
trema.gemspec
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
$:.push File.expand_path( "../ruby", __FILE__ )
require "trema/version"
Gem::Specification.new do | s |
s.name = "trema"
s.version = Trema::VERSION
s.authors = [ "Yasuhito Takamiya" ]
s.email = [ "yasuhito@gmail.com" ]
s.homepage = "http://github.com/trema/trema"
s.summary = %q{Full-Stack OpenFlow Framework for Ruby and C}
s.description = %q{Trema is a full-stack, easy-to-use framework for developing OpenFlow controllers in Ruby and C}
s.license = "GPL2"
ignores = File.readlines(".gitignore").grep(/\S+/).map {|s| s.chomp }
s.files = Dir.glob("**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) || f =~ /^\.git\// || f =~ /^\.gitignore$/ || ignores.any? {|i| File.fnmatch(i, f) } }
s.test_files = s.files.grep(/^(spec|features)\//)
s.bindir = "."
s.executables = [ "trema", "trema-config" ]
s.require_path = "ruby"
s.extensions = [ "Rakefile" ]
s.extra_rdoc_files = [ "README.md" ]
# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
s.add_runtime_dependency "rake"
s.add_runtime_dependency "gli","2.0.0"
s.add_development_dependency "rake"
s.add_development_dependency "rdoc"
s.add_development_dependency "aruba"
s.add_development_dependency "rant"
end
### Local variables:
### mode: Ruby
### coding: utf-8-unix
### indent-tabs-mode: nil
### End: