-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathomudid.gemspec
More file actions
36 lines (29 loc) · 1.31 KB
/
omudid.gemspec
File metadata and controls
36 lines (29 loc) · 1.31 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
#require 'rubygems'
#require 'omudid'
Gem::Specification.new do |spec|
spec.name = "omudid"
spec.version = "1.0.7"
spec.authors = ["David Lawson"]
spec.email = ["tech.lawson@gmail.com"]
spec.description = 'Conveniently add a UDID to the iOS Developer Portal, refresh a provisioning profile and download it. Uploading a new provisioning profile to TestFlight is also supported.'
spec.summary = 'Add one UDID to iOS Dev Portal & TestFlight'
spec.homepage = 'https://github.com/Papercloud/OneMoreUDID'
spec.license = 'MIT'
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "vcr"
spec.add_development_dependency "fakeweb"
spec.add_dependency "nokogiri", "1.5.9"
spec.add_dependency "cupertino"
spec.add_dependency "keychain_services"
spec.add_dependency "spinning_cursor"
spec.add_dependency "rainbow"
spec.add_dependency "commander", "~> 4.1.2"
end