Sha256: 20669874ef94322524919690d0553487ed8f9d6774375f300dc8ea9165763fc0

Contents?: true

Size: 890 Bytes

Versions: 2

Compression:

Stored size: 890 Bytes

Contents

#!/usr/bin/env ruby
#
#  Created by Brian Marick on 2007-07-03.
#  Copyright (c) 2007. All rights reserved.

require 'hoe'
require 'lib/user-choices/version'

Hoe.new("user-choices", UserChoices::Version) do |p|
  p.rubyforge_name = "user-choices"
  p.changes = "See History.txt"
  p.author = "Brian Marick"
  p.description = "Unified interface to command-line, environment, and configuration files."
  p.summary = p.description
  p.email = "marick@exampler.com"
  p.extra_deps = [['xml-simple', '>= 1.0.11'], 
                  ['s4t-utils', '>= 1.0.2'],
                  ['extensions', '>= 0.6.0'],    # for testing
                  ['builder', '>= 2.1.2']]        # for testing
  p.test_globs = "test/**/*-tests.rb"
  p.rdoc_pattern = %r{README.txt|History.txt|lib/user-choices.rb|lib/user-choices/.+\.rb}
  p.url = "http://user-choices.rubyforge.org"
  p.remote_rdoc_dir = 'rdoc'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
user-choices-1.1.2 Rakefile.hoe
user-choices-1.1.3 Rakefile.hoe