forked from quix/p4ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathp4ruby.gemspec
More file actions
31 lines (27 loc) · 776 Bytes
/
p4ruby.gemspec
File metadata and controls
31 lines (27 loc) · 776 Bytes
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
Gem::Specification.new { |t|
t.name = "p4ruby"
t.version = "1.0.11"
t.summary = "Ruby interface to the Perforce API"
t.description = t.summary + "."
t.author = "Perforce Software (ruby gem by James M. Lawrence)"
t.email = "quixoticsycophant@gmail.com"
t.homepage = "http://p4ruby.rubyforge.org"
t.rubyforge_project = "p4ruby"
t.extensions << "Rakefile"
t.add_dependency "rake"
t.require_paths << "ext"
t.files = %w[
README
CHANGES
Rakefile
install.rb
p4ruby.gemspec
]
t.extra_rdoc_files = ["README"]
rdoc_exclude = t.files - t.extra_rdoc_files
t.rdoc_options +=
["--title", "P4Ruby: #{t.summary}", "--main", "README"] +
rdoc_exclude.inject(Array.new) { |acc, pattern|
acc + ["--exclude", pattern]
}
}