File: Rakefile

package info (click to toggle)
ruby-echoe 4.6.5-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 252 kB
  • ctags: 100
  • sloc: ruby: 1,045; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 611 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
($:.unshift File.expand_path(File.join( File.dirname(__FILE__), 'lib' ))).uniq!
require 'echoe'

Echoe.new('echoe') do |p|
  p.project = 'fauna'
  p.author = 'Evan Weaver'
  p.summary = 'A Rubygems packaging tool that provides Rake tasks for documentation, extension compiling, testing, and deployment.'
  p.runtime_dependencies = ['rubyforge >=2.0.4', 'allison >=2.0.3', 'rdoc >=2.5.11', 'rake >=0.9.2']
  p.development_dependencies = []
  p.certificate_chain = "echoe.pem"
  p.require_signed
  p.retain_gemspec = true
  p.licenses = ["Academic Free License (AFL) v. 3.0"]
  p.rubygems_version = ">=1.8.4"
end