-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
29 lines (29 loc) · 1.02 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
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "munin_manager"
s.executables = "munin_manager"
s.summary = "Tool to maintain and install munin plugins written in Ruby"
s.email = "[email protected]"
s.homepage = "http://github.com/entombedvirus/jeweler"
s.authors = ["Rohith Ravi"]
s.files = FileList["[A-Z]*", "{bin,generators,lib,test,ext}/**/*", 'lib/jeweler/templates/.gitignore']
end
rescue LoadError
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
#spec = Gem::Specification.new do |s|
# s.name = "MuninManager"
# s.version = "0.0.1"
# s.platform = Gem::Platform::RUBY
# s.files = FileList["{bin,lib,ext}/**/*"].to_a
# s.require_path = "lib"
# s.autorequire = "munin_manager"
# s.test_files = FileList["{test}/**/*test.rb"].to_a
# s.has_rdoc = false
# s.extra_rdoc_files = ["README.markdown"]
#end
#
#Rake::GemPackageTask.new(spec) do |pkg|
# pkg.need_tar = true
#end