public
Description: PIvotal traCKer Liaison to cucumbER
Homepage:
Clone URL: git://github.com/tpope/pickler.git
Click here to lend your support to: pickler and make a donation at www.pledgie.com !
tpope (author)
Mon Aug 31 14:45:51 -0700 2009
commit  ae1cd0826a076a1a14941fe146ab38a3f107429b
tree    1af867c1d9cd86bd9152e259678d6e489ddd3169
parent  dece0808a528d979a98359a2356d9393fa0c7f8c
pickler / Rakefile
100644 18 lines (15 sloc) 0.413 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
begin; require 'rubygems'; rescue LoadError; end
require 'rake'
require 'rake/gempackagetask'
 
spec = eval(File.read(File.join(File.dirname(__FILE__),'pickler.gemspec')))
Rake::GemPackageTask.new(spec) do |p|
  p.gem_spec = spec
end
 
begin
  require 'spec/rake/spectask'
  Spec::Rake::SpecTask.new(:spec) do |t|
    t.spec_files = FileList["spec/**/*_spec.rb"]
  end
  task :default => :spec
rescue LoadError
end