public
Description: a card wall generator - it reads a story map from excel, numbers, csv and generates a graphical view of it in visio, omnigraffle, or dot
Homepage: http://rubyforge.org/projects/cardwallgen
Clone URL: git://github.com/jeremylightsmith/cards.git
Jeremy Lightsmith & Wes Maldonado (author)
Tue Mar 31 11:36:59 -0700 2009
cards / Rakefile
100644 33 lines (26 sloc) 0.895 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
require 'rubygems'
gem "rspec"
gem "hoe"
 
require 'rake/clean'
require 'spec/rake/spectask'
require 'hoe'
 
require 'lib/cards'
 
Spec::Rake::SpecTask.new(:spec) do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
end
 
desc "Default Task"
task :default => [:spec, :generate_manifest]
 
task :generate_manifest do
  File.open("Manifest.txt", "w") do |f|
    f << FileList["CHANGES.txt", "Rakefile", "README.txt", "examples/**/*", "lib/**/*", "spec/**/*"].to_a.join("\n")
  end
end
 
Hoe.new('cards', Cards::VERSION) do |p|
  p.rubyforge_name = 'cardwallgen'
  p.summary = p.description = p.paragraphs_of('README.txt', 2).first
  p.url = p.paragraphs_of('README.txt', -1).first.strip
  p.author = 'Jeremy Lightsmith'
  p.email = 'jeremy.lightsmith@gmail.com'
  p.changes = p.paragraphs_of('CHANGES.txt', 0..2).join("\n\n")
  p.extra_deps = ['rb-appscript','>= 0.5.1'], ['rest-client', '>= 0.9']
end