-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
23 lines (21 loc) · 954 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rubygems'
task :default => "build"
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "gabriel"
gemspec.summary = %Q{Bash completion for god}
gemspec.description = %Q{gabriel helps you communicate with god by giving you bash completions for commands, options, tasks, and groups}
gemspec.email = "enricob@gmail.com"
gemspec.homepage = "http://github.com/enricob/gabriel"
gemspec.authors = ["Enrico Bianco"]
gemspec.executables = ["gabriel-install"]
gemspec.files = ["README.md", "LICENSE", "VERSION", "install", "bin/*", "scripts/*", "lib/*"]
gemspec.post_install_message = <<-POST_INSTALL_MESSAGE
** To set up gabriel's completions for your environment, run gabriel-install and follow the directions given. **
POST_INSTALL_MESSAGE
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end