forked from sam-github/vpim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vpim.gemspec
36 lines (32 loc) · 1.03 KB
/
vpim.gemspec
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
require 'rake'
spec_vpim = Gem::Specification.new do |s|
s.author = "Sam Roberts"
s.email = "[email protected]"
s.homepage = "http://vpim.rubyforge.org"
s.rubyforge_project = "vpim"
s.name = "vpim"
s.version = `ruby stamp.rb`
s.summary = "iCalendar and vCard support for ruby"
s.description = <<'---'
This is a pure-ruby library for decoding and encoding vCard and iCalendar data
("personal information") called vPim.
---
s.has_rdoc = true
s.extra_rdoc_files = ["README", "CHANGES", "COPYING", "samples/README.mutt" ]
candidates = FileList[
'lib/vpim/**/*.rb',
'lib/vpim.rb',
'bin/*',
'samples/*',
'test/test_*.rb',
'COPYING',
'README',
'CHANGES',
].to_a
s.files = candidates
s.test_files = Dir.glob("test/test_*.rb")
s.executables = FileList["bin/*"].map{|path| File.basename(path)}
s.require_path = "lib"
# s.add_dependency("plist")
# s.autorequire = "vpim"
end