-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgcmd.gemspec
26 lines (25 loc) · 1.04 KB
/
gcmd.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
# encoding: utf-8
# https://github.com/radar/guides/blob/master/gem-development.md
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
Gem::Specification.new do |s|
s.name = "gcmd"
s.version = "0.6.0"
s.platform = Gem::Platform::RUBY
s.authors = ["Conrad Helgeland", "Ruben Dens"]
s.email = ["data*npolar.no"]
s.homepage = "http://github.com/npolar/gcmd"
s.summary = "Ruby GCMD libray"
s.description = "Ruby library for working with GCMD services and data, contains\n
* DIF XML parser and builder\n
* HTTP client\n
* skos:Concept parser\n"
s.add_development_dependency "rspec", "~> 2.0"
s.files = Dir.glob("{lib}/**/*") + %w(README.md)
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
git_files = `git ls-files`.split("\n") rescue ''
s.files = git_files # + whatever_else
s.test_files = `git ls-files -- {test,spec}/*`.split("\n")
s.require_paths = ["lib"]
end