-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtestflight.gemspec
25 lines (21 loc) · 1001 Bytes
/
testflight.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'testflight/version'
Gem::Specification.new do |spec|
spec.name = "testflight"
spec.version = Testflight::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["Michael Berkovich"]
spec.email = ["theiceberk@gmail.com"]
spec.homepage = "https://github.com/berk/testflight"
spec.summary = "iOS application deployment automation"
spec.description = "Mechanism for building, packaging, tagging and deploying Xcode projects to testflightapp.com"
spec.license = 'MIT'
spec.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.md)
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_path = ['lib', 'lib/testflight']
spec.add_runtime_dependency 'thor', '~> 0.19'
spec.add_dependency "plist", "~> 3.1"
end