-
Notifications
You must be signed in to change notification settings - Fork 9
/
deploygate.gemspec
57 lines (47 loc) · 2.16 KB
/
deploygate.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
49
50
51
52
53
54
55
56
57
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'deploygate/version'
Gem::Specification.new do |spec|
spec.name = 'deploygate'
spec.version = DeployGate::VERSION
spec.authors = ['deploygate']
spec.email = ['contact@deploygate.com']
spec.description = %q{You can control to DeployGate in your terminal}
spec.summary = %q{A command-line interface for DeployGate}
spec.homepage = 'https://deploygate.com'
spec.license = 'Apache-2.0'
spec.post_install_message = <<"POST_INSTALL_MESSAGE"
dg installed! To get started fast:
$ dg deploy
POST_INSTALL_MESSAGE
spec.required_ruby_version = '>= 2.6'
spec.add_runtime_dependency 'json', '~> 2.0'
spec.add_runtime_dependency 'httpclient', '~> 2.8'
spec.add_runtime_dependency 'commander', '~> 4.4'
spec.add_runtime_dependency 'plist', '~> 3.1'
spec.add_runtime_dependency 'xcodeproj', '~> 1.7'
spec.add_runtime_dependency 'highline', '~> 2.0'
spec.add_runtime_dependency 'uuid', '~> 2.3'
spec.add_runtime_dependency 'gem_update_checker', '~> 0.2'
spec.add_runtime_dependency 'activesupport', '~> 6.1'
spec.add_runtime_dependency 'launchy', '~> 2.4'
spec.add_runtime_dependency 'locale', '~> 2.1'
spec.add_runtime_dependency 'net-ping', '~> 2.0'
spec.add_runtime_dependency 'socket.io-client-simple', '~> 1.2'
spec.add_runtime_dependency 'workers', '~> 0.6'
spec.add_runtime_dependency 'sentry-ruby', '~> 5.8'
# Webrick has been removed from bundled gems since Ruby 3
spec.add_runtime_dependency 'webrick', '~> 1.8'
# ios build
spec.add_runtime_dependency 'fastlane', '~> 2.212.1'
spec.add_development_dependency 'bundler', '>= 2.1.4', '< 3.0'
spec.add_development_dependency 'rake', '~> 12.0'
spec.add_development_dependency 'rspec', '~> 3.5'
spec.add_development_dependency 'webmock', '~> 2.3'
spec.add_development_dependency 'i18n-tasks', '~> 1.0'
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']
end