Sha256: 97bd997ea897f8b2c24d6d90c85c65f9741395673df723e113d4da502d3f84a6
Contents?: true
Size: 1.68 KB
Versions: 7
Compression:
Stored size: 1.68 KB
Contents
require 'hoe' require './lib/sportdb/version.rb' ## NB: plugin (hoe-manifest) not required; just used for future testing/development ## Hoe::plugin :manifest # more options for manifests (in the future; not yet) Hoe.spec 'sportdb' do self.version = SportDb::VERSION self.summary = 'sportdb - sport.db command line tool' self.description = summary self.urls = ['https://github.com/sportdb/sport.db.ruby'] self.author = 'Gerald Bauer' self.email = 'opensport@googlegroups.com' # switch extension to .markdown for gihub formatting # -- NB: auto-changed when included in manifest self.readme_file = 'README.md' self.history_file = 'HISTORY.md' self.extra_deps = [ ['props' ], ['logutils'], ['textutils'], ['worlddb', '>= 2.0.2'], # NB: worlddb already includes # - logutils # - textutils ['tagutils'], # tags n tagging tables ['persondb'], # persons (people) table ['activerecord-utils'], # extras e.g. rnd, find_by! for 3.x etc. ['fetcher', '>= 0.3'], ## 3rd party ['gli', '>= 2.5.6'], ['activerecord'] # NB: will include activesupport,etc. ### ['sqlite3', '~> 1.3'] # NB: install on your own; remove dependency ] self.licenses = ['Public Domain'] self.spec_extras = { :required_ruby_version => '>= 1.9.2' } self.post_install_message =<<EOS ****************************************************************************** Questions? Comments? Send them along to the mailing list. https://groups.google.com/group/opensport ****************************************************************************** EOS end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
sportdb-1.9.5 | Rakefile |
sportdb-1.9.4 | Rakefile |
sportdb-1.9.3 | Rakefile |
sportdb-1.9.2 | Rakefile |
sportdb-1.9.1 | Rakefile |
sportdb-1.9.0 | Rakefile |
sportdb-1.8.29 | Rakefile |