Sha256: 9e893fa886f3c828a2441f976b37fc91ec5f501c117fe60154e75ed4769963eb
Contents?: true
Size: 889 Bytes
Versions: 1
Compression:
Stored size: 889 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 = [['xmp-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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
user-choices-1.1.0 | Rakefile.hoe |