forked from afiore/gexf.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgexf.gemspec
29 lines (23 loc) · 1001 Bytes
/
gexf.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
lib = File.expand_path('../lib', __FILE__)
$:.unshift(lib) unless $:.include?(lib)
require 'gexf/version'
Gem::Specification.new do |s|
s.name = 'gexf'
s.version = GEXF::VERSION
s.summary = "GEXF Ruby library"
s.description = "A library for parsing, manipulating, and exporting graphs in the GEXF format."
s.authors = ["Andrea Fiore"]
s.email = '[email protected]'
s.homepage = 'http://github.com/afiore/gexf.rb'
s.rdoc_options = ["--charset= UTF-8"]
s.add_runtime_dependency('nokogiri', "~> 1.5.5")
s.add_development_dependency('rspec', "~> 2.7.0")
s.add_development_dependency('pry', "~> 0.9.10")
s.add_development_dependency('rake', "~> 0.9.2.2")
# = MANIFEST =
s.files = (Dir['lib/**/*']).reject {|f| !File.file?(f) }
s.test_files = (Dir['spec/**/*','.gitignore']).reject {|f| !File.file?(f) }
#s.executables = Dir['bin/*'].map { |f| File.basename(f) }
s.require_paths = ['lib']
# = MANIFEST =
end