File: Rakefile

package info (click to toggle)
ruby-dirty-memoize 0.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 120 kB
  • sloc: ruby: 246; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$:.unshift(File.expand_path(File.dirname(__FILE__)+"/lib"))
$:.unshift(File.expand_path(File.dirname(__FILE__)))

require 'rubygems'
require 'rake'
require 'hoe'
require 'dirty-memoize'
require 'rspec'
require 'rspec/core/rake_task'


Hoe.plugin :git

h=Hoe.spec 'dirty-memoize' do
  self.testlib=:rspec
  self.rspec_options << "-c" << "-b"
  self.developer('Claudio Bustos', 'clbustos_at_gmail.com')
  self.version=DirtyMemoize::VERSION
  self.extra_dev_deps << ["rspec",">=2.0"] 
end