-
Notifications
You must be signed in to change notification settings - Fork 5
/
buildr4osgi.gemspec
40 lines (38 loc) · 2.02 KB
/
buildr4osgi.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
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with this
# work for additional information regarding copyright ownership. The ASF
# licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
Gem::Specification.new do |spec|
spec.name = 'buildr4osgi'
spec.version = '0.9.4'
spec.author = 'Antoine Toulme'
spec.email = "[email protected]"
spec.homepage = "http://buildr.apache.org/"
spec.summary = "A plugin for adding OSGi support to Buildr."
spec.description = <<-TEXT
A plugin for adding OSGi support to Buildr. Ever dreamt you could resolve your OSGi dependencies ?
TEXT
#spec.rubyforge_project = 'buildr4osgi'
# Rakefile needs to create spec for both platforms (ruby and java), using the
# $platform global variable. In all other cases, we figure it out from RUBY_PLATFORM.
spec.platform = $platform || RUBY_PLATFORM[/java/] || 'ruby'
spec.files = Dir['{doc,etc,lib,rakelib,spec}/**/*', '*.{gemspec,buildfile}'] +
['LICENSE', 'NOTICE', 'README.rdoc', 'Rakefile']
spec.require_paths = ['lib']
spec.has_rdoc = true
spec.extra_rdoc_files = 'README.rdoc', 'LICENSE', 'NOTICE'
spec.rdoc_options = '--title', 'Buildr4osgi', '--main', 'README.rdoc',
'--webcvs', 'http://github.com/intalio/buildr4osgi'
spec.post_install_message = "To get started run buildr --help"
spec.add_dependency("manifest", "= 0.0.8")
end