-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfastlane-plugin-testappio.gemspec
More file actions
executable file
·43 lines (37 loc) · 1.93 KB
/
Copy pathfastlane-plugin-testappio.gemspec
File metadata and controls
executable file
·43 lines (37 loc) · 1.93 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
37
38
39
40
41
42
43
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fastlane/plugin/testappio/version'
Gem::Specification.new do |spec|
spec.name = 'fastlane-plugin-testappio'
spec.version = Fastlane::Testappio::VERSION
spec.author = 'TestApp.io'
spec.email = 'support@testapp.io'
spec.summary = 'Deploy your Android & iOS to TestApp.io'
spec.description = <<~DESC
A Fastlane plugin that uploads Android (.apk) and iOS (.ipa) builds to TestApp.io,
notifying your team for testing and feedback. Wraps the ta-cli binary to provide a
single upload_to_testappio Fastlane action with platform detection, release notes
from git, and selective team notifications.
DESC
spec.homepage = "https://github.com/testappio/fastlane-plugin-testappio"
spec.license = "MIT"
spec.files = Dir["lib/**/*"] + %w(README.md LICENSE CHANGELOG.md)
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.0'
spec.metadata = {
"rubygems_mfa_required" => "true",
"source_code_uri" => "https://github.com/testappio/fastlane-plugin-testappio",
"changelog_uri" => "https://github.com/testappio/fastlane-plugin-testappio/blob/main/CHANGELOG.md",
"bug_tracker_uri" => "https://github.com/testappio/fastlane-plugin-testappio/issues"
}
spec.add_development_dependency('bundler', '~> 2.0')
spec.add_development_dependency('fastlane', '~> 2.217')
spec.add_development_dependency('pry', '~> 0.14')
spec.add_development_dependency('rake', '~> 13.0')
spec.add_development_dependency('rspec', '~> 3.0')
spec.add_development_dependency('rspec_junit_formatter', '~> 0.6')
spec.add_development_dependency('rubocop', '~> 1.50')
spec.add_development_dependency('rubocop-performance', '~> 1.20')
spec.add_development_dependency('simplecov', '~> 0.22')
spec.add_development_dependency('simplecov-cobertura', '~> 3.1')
end