You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
975 B
26 lines
975 B
# coding: utf-8
|
|
lib = File.expand_path('../lib', __FILE__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
require 'cocoapods_trunk'
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "cocoapods-trunk"
|
|
spec.version = CocoaPodsTrunk::VERSION
|
|
spec.authors = ["Eloy Durán"]
|
|
spec.email = ["eloy.de.enige@gmail.com"]
|
|
spec.summary = "Interact with trunk.cocoapods.org"
|
|
spec.homepage = "https://github.com/CocoaPods/cocoapods-trunk"
|
|
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_dependency 'nap', '>= 0.8', '< 2.0'
|
|
spec.add_dependency 'netrc', '~> 0.11'
|
|
spec.add_development_dependency "bundler", "~> 1.3"
|
|
spec.add_development_dependency "rake", '~> 10.0'
|
|
|
|
spec.required_ruby_version = '>= 2.0.0'
|
|
end
|
|
|