forked from apache/whimsy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asf.gemspec
34 lines (29 loc) · 1.12 KB
/
asf.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
version = File.read(File.expand_path('../asf.version', __FILE__)).strip
Gem::Specification.new do |s|
# Change these as appropriate
s.name = "whimsy-asf"
s.license = 'Apache License, Version 2.0'
s.version = version
s.summary = "Whimsy 'model' of the ASF"
s.author = "Sam Ruby"
s.email = "[email protected]"
s.homepage = "https://whimsy.apache.org/"
s.description = <<-EOD
This package contains a set of classes which encapsulate access
to a number of data sources such as LDAP, ICLAs, auth lists, etc.
EOD
# Add any extra files to include in the gem
s.files = Dir.glob(["asf.*", "lib/**/*"])
s.require_paths = ["lib"]
# If you want to depend on other gems, add them here, along with any
# relevant versions
s.add_dependency("nokogiri")
s.add_dependency("rack")
s.add_dependency("ruby-ldap")
s.add_dependency("tzinfo")
s.add_dependency("tzinfo-data")
s.add_dependency("wunderbar")
s.add_dependency("rdoc")
# If your tests use any gems, include them here
# s.add_development_dependency("mocha") # for example
end