Sha256: a5df0d72d472aa7dbac4593e0f86ca994a3bcef0252b5be9072d1c40c3c7ba04

Contents?: true

Size: 958 Bytes

Versions: 1

Compression:

Stored size: 958 Bytes

Contents

require 'pathname'
require 'rubygems'
require 'hoe'

ROOT    = Pathname(__FILE__).dirname.expand_path
JRUBY   = RUBY_PLATFORM =~ /java/
WINDOWS = Gem.win_platform?
SUDO    = (WINDOWS || JRUBY) ? '' : ('sudo' unless ENV['SUDOLESS'])

require ROOT + 'lib/ldap_adapter/version'

# define some constants to help with task files
GEM_NAME    = 'dm-ldap-adapter'
GEM_VERSION = DataMapper::LdapAdapter::VERSION

Hoe.spec(GEM_NAME) do |p|
  p.developer('Ivan R. Judson', 'ivan.judson [a] montana [d] edu')

  p.description = 'A DataMapper Adapter for LDAP.'
  p.summary = 'A DataMapper Adapter for LDAP (The Lightweight Directory Access Protocol)'
  p.url = 'http://github.com/irjudson/dm-ldap-adapter'

  p.clean_globs |= %w[ log pkg coverage ]
  p.spec_extras = { :has_rdoc => true, :extra_rdoc_files => %w[ README.txt LICENSE TODO History.txt ] }

  p.extra_deps << ['dm-core', "0.9.11"]

end

Pathname.glob(ROOT.join('tasks/**/*.rb').to_s).each { |f| require f }

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
irjudson-dm-ldap-adapter-0.0.9 Rakefile