blob: 6ac263a2a43fd5649170428300caf0c1b93aef87 [file] [log] [blame]
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 = "rubys@intertwingly.net"
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