-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathRakefile
More file actions
23 lines (22 loc) · 751 Bytes
/
Rakefile
File metadata and controls
23 lines (22 loc) · 751 Bytes
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'
Gem::manage_gems
require 'rake/gempackagetask'
spec = Gem::Specification.new do |s|
s.name = 'sambala'
s.version = '0.9.8'
s.author = 'Louis-Philippe Perron'
s.email = 'lp@spiralix.org'
s.homepage = 'http://sambala.rubyforge.org/'
s.rubyforge_project = 'Sambala'
s.platform = Gem::Platform::RUBY
s.summary = 'ruby samba client, interactive smbclient commands session and multi-threaded smb transfer queued mode'
s.files = FileList["{lib,test}/**/*"].exclude("doc").to_a
s.require_path = "lib"
s.test_file = "test/tc_sambala_main.rb"
s.has_rdoc = true
s.add_dependency("abundance", ">= 1.3.5")
s.add_dependency("globalog", ">= 0.1.3")
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_tar = true
end