aniero / iphone_data

A script to dump data from an iPhone's sync backup files

This URL has Read+Write access

commit  3e17f6815f895d03a7d4412d83d707b3fac1988c
tree    25da008bcc1d8b430075cd1fd74d94d55165cbc1
parent  d4bbe956a932c3feaa1660ef8f6a7dd1a76701ac
iphone_data / Rakefile
100644 24 lines (17 sloc) 0.613 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
# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.
 
load 'tasks/setup.rb'
 
ensure_in_path 'lib'
require 'iphone_data'
 
task :default => 'spec:run'
 
PROJ.name = 'iphone_data'
PROJ.authors = 'Nathan Witmer'
PROJ.email = 'nwitmer@gmail.com'
PROJ.url = 'http://github.com/aniero/iphone_data'
PROJ.version = IPhoneData.version
PROJ.rubyforge.name = ''
 
PROJ.spec.opts << '--color --format specdoc'
 
depend_on "plist", ">= 3.0.0"
depend_on "sqlite3-ruby", ">= 1.2.1"
depend_on "main", ">= 2.8.0"