Sha256: 37585592fae6d21bc90b16cf86b97219de5fb761adcf1fac39184e63847527e9
Contents?: true
Size: 782 Bytes
Versions: 4
Compression:
Stored size: 782 Bytes
Contents
# Rakefile that uses echoe to manage mit_stalker's gemspec. # # Author:: Victor Costan # Copyright:: Copyright (C) 2009 Zergling.Net # License:: MIT require 'rubygems' require 'echoe' Echoe.new('mit_stalker') do |p| p.project = 'zerglings' # RubyForge project. p.author = 'Victor Costan' p.email = 'victor@zergling.net' p.summary = "Fetches publicly available information about MIT students." p.url = 'http://github.com/costan/mit_stalker' p.dependencies = [] p.development_dependencies = ["echoe >=3.1.1", "flexmock >=0.8.6"] p.need_tar_gz = true p.need_zip = true p.rdoc_pattern = /^(lib|bin|tasks|ext)|^BUILD|^README|^CHANGELOG|^TODO|^LICENSE|^COPYING$/ end if $0 == __FILE__ Rake.application = Rake::Application.new Rake.application.run end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
mit_stalker-1.0.4 | Rakefile |
mit_stalker-1.0.3 | Rakefile |
mit_stalker-1.0.2 | Rakefile |
mit_stalker-1.0.1 | Rakefile |