-
Notifications
You must be signed in to change notification settings - Fork 0
/
combat.gemspec
34 lines (27 loc) · 964 Bytes
/
combat.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
Gem::Specification.new do |s|
s.name = 'combat'
s.version = '0.8.2'
s.date = '2011-07-28'
s.summary = "Deploy your iPhone and Android apps to clients with ease. It's like Capistrano, only for mobile apps."
s.description = "Deploy your iPhone and Android apps to clients with ease. It's like Capistrano, only for mobile apps."
s.authors = ['Tomislav Car']
s.email = ['[email protected]']
s.homepage = 'http://github.com/infinum/combat'
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.has_rdoc = true
s.rdoc_options = ['--main', 'Readme.md']
s.rdoc_options << '--inline-source' << '--charset=UTF-8'
s.extra_rdoc_files = ['Readme.md', 'LICENSE']
s.require_paths = ["lib"]
s.files = %w(
Readme.md
LICENSE
Gemfile
Gemfile.lock
bin/combat
Readme.md
lib/settings.rb
templates/template.erb
)
s.test_files = %w()
end