forked from vertiginous/pik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
48 lines (32 loc) · 1.16 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require 'rubygems'
require 'rbconfig'
# I couldn't get hoe-isolate plugin to work
# require order problem, perhaps?
require 'isolate/now'
require 'isolate/lockdown'
require 'hoe'
Hoe.plugin :git
$LOAD_PATH.unshift('lib')
require 'pik'
Hoe.spec('pik') do
developer('Gordon Thiesfeld', '[email protected]')
self.need_tar = false
self.readme_file = 'README.rdoc'
self.post_install_message =<<-PIM
----------------------------------------------------------------------------
* If you're upgrading from a version <= 0.1.1, you'll want to delete the
pik.bat file from all of your ruby versions. Gem uninstall should do the
trick.
* Install pik to a location that's in your path, but someplace other than
your ruby\\bin dir If you're upgrading from a more recent version,
pik_install will overwrite the older files as needed.
>path
PATH=C:\\tools\\;C:\\ruby\\186-p368-mingw32\\bin;C:\\WINDOWS\\system32;C:\\WINDOWS
>pik_install C:\\tools
----------------------------------------------------------------------------
PIM
end
require 'tasks/common'
require 'tasks/package'
require 'tasks/build'
require 'tasks/cucumber'