Sha256: 96abd682478ccf9acd6786518a682a02bbc3812883061bc3ac0b4e1b77c3cbf2
Contents?: true
Size: 1.33 KB
Versions: 2
Compression:
Stored size: 1.33 KB
Contents
# -*- ruby -*- require 'rubygems' require 'hoe' $:<<'./lib' require 'active_ldap' Hoe.new('ruby-activeldap', ActiveLdap::VERSION) do |project| project.rubyforge_name = 'ruby-activeldap' project.author = ['Will Drewry', 'Kouhei Sutou'] project.email = ['will@alum.bu.edu', 'kou@cozmixng.org'] project.summary = 'Ruby/ActiveLdap is a object-oriented API to LDAP' project.url = 'http://rubyforge.org/projects/ruby-activeldap/' project.test_globs = ['test/**'] project.changes = project.paragraphs_of('CHANGES', 0..1).join("\n\n") project.extra_deps = [['log4r','>= 1.0.4'], 'activerecord'] project.spec_extras = { :requirements => ['ruby-ldap >= 0.8.2', '(Open)LDAP server'], :autorequire => 'active_ldap' } project.description = String.new(<<-EOF) 'Ruby/ActiveLdap' is a ruby extension library which provides a clean objected oriented interface to the Ruby/LDAP library. It was inspired by ActiveRecord. This is not nearly as clean or as flexible as ActiveRecord, but it is still trivial to define new objects and manipulate them with minimal difficulty. EOF end desc 'Tag the repository for release.' task :tag do system "svn copy -m 'New release tag' https://ruby-activeldap.googlecode.com/svn/trunk https://ruby-activeldap.googlecode.com/svn/tags/r#{ActiveLdap::VERSION}" end # vim: syntax=Ruby
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruby-activeldap-0.8.1 | Rakefile |
ruby-activeldap-0.8.0 | Rakefile |