forked from djberg96/sys-filesystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
41 lines (34 loc) · 945 Bytes
/
Copy pathRakefile
File metadata and controls
41 lines (34 loc) · 945 Bytes
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
require 'rake'
require 'rake/clean'
require 'rake/testtask'
CLEAN.include('**/*.gem', '**/*.rbc', '**/*.rbx')
desc "Run the test suite"
Rake::TestTask.new("test") do |t|
if File::ALT_SEPARATOR
t.libs << 'lib/windows'
else
t.libs << 'lib/unix'
end
t.warning = true
t.verbose = true
t.test_files = FileList['test/test_sys_filesystem.rb']
end
desc "Run the example program"
task :example do |t|
sh "ruby -Ilib -Ilib/unix -Ilib/windows examples/example_stat.rb"
end
namespace :gem do
desc "Build the sys-filesystem gem"
task :create => [:clean] do |t|
require 'rubygems/package'
spec = eval(IO.read('sys-filesystem.gemspec'))
spec.signing_key = File.join(Dir.home, '.ssh', 'gem-private_key.pem')
Gem::Package.build(spec, true)
end
desc "Install the sys-filesystem gem"
task :install => [:create] do
file = Dir['*.gem'].first
sh "gem install -l #{file}"
end
end
task :default => :test