forked from IceskYsl/blackbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
28 lines (24 loc) · 1.08 KB
/
Rakefile
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
# -*- ruby -*-
require 'rubygems'
require 'rake'
require 'rake/testtask'
$LOAD_PATH.unshift 'lib'
require 'blackbook'
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "blackbook"
s.email = "[email protected]"
s.homepage = "http://contentfree.com"
s.summary = "Blackbook automates the nitty-gritty of importing contacts from various services and files and exporting them as VCard, XML, or simple Hash. Utilize those contacts from services like AOL, GMail, Yahoo Mail, Hotmail or CSV to help your social networking site become GIGANTIC overnight! You'll be able to get big and sell for millions before anyone figures out it's just like every other social network."
s.authors = ["Dave Myron", "Mike Mondragon", "purzelrekate", "jjolma", "bcardarella", "kieranj", "weplay", "and more..."]
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
Rake::TestTask.new do |t|
t.libs << 'test'
t.pattern = 'test/test_blackbook*.rb'
t.warning = true
t.verbose = true
end