forked from fastlane-old/spaceship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spaceship.gemspec
48 lines (39 loc) · 1.84 KB
/
spaceship.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'spaceship/version'
Gem::Specification.new do |spec|
spec.name = "spaceship"
spec.version = Spaceship::VERSION
spec.authors = ["Felix Krause", "Stefan Natchev"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = 'Because you would rather spend your time building stuff than fighting provisioning'
spec.description = 'Because you would rather spend your time building stuff than fighting provisioning'
spec.homepage = "https://fastlane.tools"
spec.license = "MIT"
spec.required_ruby_version = '>= 2.0.0'
spec.files = Dir["lib/**/*"] + %w(bin/spaceship README.md LICENSE)
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"]
# fastlane specific
spec.add_dependency 'credentials_manager', '>= 0.9.0' # to automatically get login information
# external
spec.add_dependency 'multi_xml', '~> 0.5'
spec.add_dependency 'plist', '~> 3.1'
spec.add_dependency 'faraday', '~> 0.9'
spec.add_dependency 'faraday_middleware', '~> 0.9'
spec.add_dependency 'fastimage', '~> 1.6'
# for the playground
spec.add_dependency 'pry'
spec.add_dependency 'colored'
# Development only
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'fastlane', ">= 1.15.0" # yes, we use fastlane to test fastlane
spec.add_development_dependency 'rake'
spec.add_development_dependency 'coveralls'
spec.add_development_dependency 'rspec', '~> 3.1.0'
spec.add_development_dependency 'yard', '~> 0.8.7.4'
spec.add_development_dependency 'webmock', '~> 1.21.0'
spec.add_development_dependency 'rubocop', '~> 0.32.1'
end