forked from innoq/iqvoc_skosxl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiqvoc_skosxl.gemspec
23 lines (20 loc) · 905 Bytes
/
iqvoc_skosxl.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'iqvoc/skosxl/version'
Gem::Specification.new do |s|
s.name = 'iqvoc_skosxl'
s.version = Iqvoc::SKOSXL::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Robert Glaser', 'Till Schulte-Coerne', 'Frederik Dohr']
s.email = ['till.schulte-coerne@innoq.com']
s.homepage = 'http://iqvoc.net'
s.summary = 'iQvoc SKOS-XL extension'
s.license = 'Apache License 2.0'
s.description = 'iQvoc - a SKOS(-XL) vocabulary management system built on the Semantic Web'
s.add_dependency 'iqvoc', '>= 4.4.0', '~> 4.11'
s.add_development_dependency 'bundler', '~> 1.6'
s.files = %w(README.md Gemfile Gemfile.lock Rakefile iqvoc_skosxl.gemspec) +
Dir.glob('{app,config,db,public,lib,test}/**/*')
s.test_files = s.files.grep(%r{^test/})
s.require_paths = ['lib']
end