forked from adamwiggins/rush
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
60 lines (45 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
58
59
require 'rake'
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "rush"
s.summary = "A Ruby replacement for bash+ssh."
s.description = "A Ruby replacement for bash+ssh, providing both an interactive shell and a library. Manage both local and remote unix systems from a single client."
s.author = "Adam Wiggins"
s.email = "adam@heroku.com"
s.homepage = "http://rush.heroku.com/"
s.executables = [ "rush", "rushd" ]
s.rubyforge_project = "ruby-shell"
s.has_rdoc = true
s.add_dependency 'session'
s.files = FileList["[A-Z]*", "{bin,lib,spec}/**/*"]
end
Jeweler::GemcutterTasks.new
######################################################
require 'spec/rake/spectask'
desc "Run all specs"
Spec::Rake::SpecTask.new('spec') do |t|
t.spec_files = FileList['spec/*_spec.rb']
end
desc "Print specdocs"
Spec::Rake::SpecTask.new(:doc) do |t|
t.spec_opts = ["--format", "specdoc", "--dry-run"]
t.spec_files = FileList['spec/*_spec.rb']
end
desc "Run all examples with RCov"
Spec::Rake::SpecTask.new('rcov') do |t|
t.spec_files = FileList['spec/*_spec.rb']
t.rcov = true
t.rcov_opts = ['--exclude', 'examples']
end
task :default => :spec
######################################################
require 'rake/rdoctask'
Rake::RDocTask.new do |t|
t.rdoc_dir = 'rdoc'
t.title = "rush, a Ruby replacement for bash+ssh"
t.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object'
t.options << '--charset' << 'utf-8'
t.rdoc_files.include('README.rdoc')
t.rdoc_files.include('lib/rush.rb')
t.rdoc_files.include('lib/rush/*.rb')
end