-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgem_minarc_client.gemspec
48 lines (32 loc) · 1.33 KB
/
gem_minarc_client.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
37
38
39
40
41
42
43
44
45
46
47
48
Gem::Specification.new do |s|
s.name = 'minarc_client'
s.version = '0.0.1'
s.licenses = ['Nonstandard']
s.summary = "DEC/MINARC component"
s.description = "Minimum Archive"
s.authors = ["Elecnor Deimos"]
s.email = '[email protected]'
s.files = Dir['code/arc/*.rb'] + \
Dir['code/arc/plugins/*.rb'] + \
Dir['code/arc/plugins/test/*'] + \
Dir['code/cuc/*.rb'] + \
Dir['code/ctc/WrapperCURL.rb'] + \
Dir['config/profile_minarc_sqlite3'] + \
Dir['config/profile_gem_minarc_sqlite3'] # + \
s.require_paths = ['code', 'code/arc']
s.bindir = ['code/arc']
# s.datadir # = ['code/arc/plugins/test']
s.executables = [
'minArcStore', \
'minArcDelete', \
'minArcRetrieve', \
'minArcSmokeTestRemote'
]
s.homepage = 'http://www.deimos-space.com'
s.metadata = { "source_code_uri" => "https://github.com/example/example" }
# ----------------------------------------------
s.add_dependency('test-unit', '~> 3.2')
# ----------------------------------------------
# you did document with RDoc, right?
# s.has_rdoc = true
end