-
Notifications
You must be signed in to change notification settings - Fork 0
/
treerepl.gemspec.in
executable file
·38 lines (29 loc) · 1.02 KB
/
treerepl.gemspec.in
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
37
38
# -*- ruby -*-
Gem::Specification.new do |s|
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.rubygems_version = '1.3.7'
s.name = '%NAME%'
s.version = '%VERSION%'
s.date = '%DATE%'
s.rubyforge_project = '%NAME'
s.summary = "Tree Repl"
s.description = "System for accessing web services for tree-like things via the repl"
s.authors = ["Jeffrey Palm"]
s.email = '[email protected]'
s.homepage = 'http://github.com/spudtrooper/treerepl'
s.require_paths = %w[lib]
s.rdoc_options = ["--charset=UTF-8"]
s.has_rdoc = false
s.extra_rdoc_files = %w[README LICENSE doc]
# = MANIFEST =
s.files = %w[
README
LICENSE
lib/treerepl.rb
lib/treerepl/tree.rb
lib/treerepl/repl.rb
lib/treerepl/cmds.rb
]
s.test_files = s.files.select { |path| path =~ /^test\/test_.*\.rb/ }
end