fastlane-plugin-setup_app_feedback_sdk 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +52 -0
- data/lib/fastlane/plugin/setup_app_feedback_sdk/actions/setup_app_feedback_sdk_action.rb +157 -0
- data/lib/fastlane/plugin/setup_app_feedback_sdk/helper/setup_app_feedback_sdk_helper.rb +16 -0
- data/lib/fastlane/plugin/setup_app_feedback_sdk/version.rb +5 -0
- data/lib/fastlane/plugin/setup_app_feedback_sdk.rb +16 -0
- metadata +175 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: e75528959c92353f164b07aee9903cb28172f5b5d7b0389504de5d7fedcf7f64
|
|
4
|
+
data.tar.gz: bdbb6b3ffd2b649289f698a8b66623914b4578b35ddd820fdb83cd3bb7c42f2c
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: b7d6c7d72c14986ae6de5e973146fdd7dc6ce623656756578cfdd7f16416210e97ed288106feb947582f7ceb5533da1db8ac5f0400a261c961d561488ad420c4
|
|
7
|
+
data.tar.gz: 76cc51d0cf9e6e37ea635fc0f59c43184fb234ea4ccbc25a24ca4880196ff7f961bafbc0b0a09378901e161252c3851026d74446964ac25001d56c7fa10e8476
|
data/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018 Yahoo Japan Corporation
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is furnished
|
|
10
|
+
to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# setup_app_feedback_sdk plugin
|
|
2
|
+
|
|
3
|
+
[](https://rubygems.org/gems/fastlane-plugin-setup_app_feedback_sdk)
|
|
4
|
+
[](https://circleci.com/gh/yahoojapan/fastlane-plugin-setup_app_feedback_sdk)
|
|
5
|
+
|
|
6
|
+
## Getting Started
|
|
7
|
+
|
|
8
|
+
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-setup_app_feedback_sdk`, add it to your project by running:
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
fastlane add_plugin setup_app_feedback_sdk
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## About setup_app_feedback_sdk
|
|
15
|
+
|
|
16
|
+
This fastlane plugin add the following information into the Info.plist for [AppFeedback SDK](https://github.com/yahoojapan/AppFeedback).
|
|
17
|
+
|
|
18
|
+
- Slack token and channel id
|
|
19
|
+
- Build information from CI environment variables
|
|
20
|
+
|
|
21
|
+
## Example
|
|
22
|
+
|
|
23
|
+
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
|
24
|
+
|
|
25
|
+
## Run tests for this plugin
|
|
26
|
+
|
|
27
|
+
To run both the tests, and code style validation, run
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
rake
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
To automatically fix many of the styling issues, use
|
|
34
|
+
```
|
|
35
|
+
rubocop -a
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Issues and Feedback
|
|
39
|
+
|
|
40
|
+
For any other issues and feedback about this plugin, please submit it to this repository.
|
|
41
|
+
|
|
42
|
+
## Troubleshooting
|
|
43
|
+
|
|
44
|
+
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
|
|
45
|
+
|
|
46
|
+
## Using _fastlane_ Plugins
|
|
47
|
+
|
|
48
|
+
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
|
|
49
|
+
|
|
50
|
+
## About _fastlane_
|
|
51
|
+
|
|
52
|
+
_fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
require 'fastlane/action'
|
|
2
|
+
require_relative '../helper/setup_app_feedback_sdk_helper'
|
|
3
|
+
|
|
4
|
+
module Fastlane
|
|
5
|
+
module Actions
|
|
6
|
+
class SetupAppFeedbackSdkAction < Action
|
|
7
|
+
def self.run(params)
|
|
8
|
+
require 'xcodeproj'
|
|
9
|
+
require 'shellwords'
|
|
10
|
+
require 'pathname'
|
|
11
|
+
|
|
12
|
+
plist = plist_path(params)
|
|
13
|
+
|
|
14
|
+
SetInfoPlistValueAction.run(key: 'AppFeedback_SlackApiToken', value: params[:slack_api_token], path: plist)
|
|
15
|
+
SetInfoPlistValueAction.run(key: 'AppFeedback_SlackChannel', value: params[:slack_channel], path: plist)
|
|
16
|
+
|
|
17
|
+
if other_action.git_branch
|
|
18
|
+
SetInfoPlistValueAction.run(key: 'AppFeedback_Branch', value: other_action.git_branch, path: plist)
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def self.plist_path(params)
|
|
23
|
+
require 'xcodeproj'
|
|
24
|
+
|
|
25
|
+
project_path = params[:project]
|
|
26
|
+
|
|
27
|
+
shared_data_dir = Xcodeproj::XCScheme.shared_data_dir(project_path)
|
|
28
|
+
scheme_path = File.join(shared_data_dir, params[:scheme] + '.xcscheme')
|
|
29
|
+
UI.verbose("scheme_path = #{scheme_path}")
|
|
30
|
+
|
|
31
|
+
scheme = Xcodeproj::XCScheme.new(scheme_path)
|
|
32
|
+
|
|
33
|
+
build_action = scheme.build_action
|
|
34
|
+
archive_entries = build_action.entries.select(&:build_for_archiving?)
|
|
35
|
+
target_names = archive_entries.flat_map { |entry| entry.buildable_references.map(&:target_name) }
|
|
36
|
+
UI.verbose("target_names = #{target_names}")
|
|
37
|
+
project = Xcodeproj::Project.open(project_path)
|
|
38
|
+
|
|
39
|
+
# select iOS Target
|
|
40
|
+
target = project.native_targets.detect do |t|
|
|
41
|
+
target_names.include?(t.name) && t.platform_name == :ios && t.product_type == 'com.apple.product-type.application'
|
|
42
|
+
end
|
|
43
|
+
UI.user_error!("Couldn't find iOS target for scheme '#{params[:scheme]}'") unless target
|
|
44
|
+
|
|
45
|
+
UI.verbose("target = #{target}")
|
|
46
|
+
|
|
47
|
+
config = target.build_configurations.detect { |c| c.name == params[:configuration] }
|
|
48
|
+
UI.user_error!("Couldn't find configuration named '#{params[:configuration]}'") unless config
|
|
49
|
+
|
|
50
|
+
plist = config.build_settings['INFOPLIST_FILE']
|
|
51
|
+
UI.user_error!("Couldn't find INFOPLIST_FILE") unless plist
|
|
52
|
+
|
|
53
|
+
# Use showBuildSettings when plist path contains variable.
|
|
54
|
+
# ( showBuildSettings is slow )
|
|
55
|
+
if plist.include?('$')
|
|
56
|
+
settings = build_settings(project: params[:project], configuration: params[:configuration], target: target.name)
|
|
57
|
+
plist = settings['INFOPLIST_FILE']
|
|
58
|
+
UI.user_error!("Couldn't find INFOPLIST_FILE in showBuildSettings") unless plist
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
plist = File.join(File.dirname(params[:project]), plist) if Pathname.new(plist).relative?
|
|
62
|
+
UI.user_error!("Couldn't find plist file at path '#{plist}'") unless File.exist?(plist)
|
|
63
|
+
|
|
64
|
+
plist = File.expand_path(plist)
|
|
65
|
+
|
|
66
|
+
UI.verbose("plist path = #{plist}")
|
|
67
|
+
plist
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
def self.build_settings(params)
|
|
71
|
+
command = build_settings_command(params)
|
|
72
|
+
output = FastlaneCore::Project.run_command(command,
|
|
73
|
+
timeout: FastlaneCore::Project.xcode_build_settings_timeout,
|
|
74
|
+
retries: FastlaneCore::Project.xcode_build_settings_retries,
|
|
75
|
+
print: FastlaneCore::Globals.verbose?)
|
|
76
|
+
parse_build_settings(output)
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
def self.build_settings_command(params)
|
|
80
|
+
params = {
|
|
81
|
+
'-project' => params[:project],
|
|
82
|
+
'-target' => params[:target],
|
|
83
|
+
'-configuration' => params[:configuration]
|
|
84
|
+
}
|
|
85
|
+
params_str = params.map { |k, v| "#{k} #{v.shellescape}" }.join(' ')
|
|
86
|
+
"xcodebuild clean -showBuildSettings #{params_str}"
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
def self.parse_build_settings(output)
|
|
90
|
+
settings = {}
|
|
91
|
+
output.lines.each do |line|
|
|
92
|
+
m = line.match(/^\s*(\S+)\s*=\s*(.+)$/)
|
|
93
|
+
settings[m[1]] = m[2] if m
|
|
94
|
+
end
|
|
95
|
+
settings
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
def self.description
|
|
99
|
+
"Setup the Info.plist for App Feedback SDK"
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
def self.authors
|
|
103
|
+
["Yahoo! Japan"]
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
def self.return_value
|
|
107
|
+
# If your method provides a return value, you can describe here what it does
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
def self.details
|
|
111
|
+
"This fastlane plugin helps with App Feedback SDK integration for CI services"
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
def self.available_options
|
|
115
|
+
[
|
|
116
|
+
FastlaneCore::ConfigItem.new(key: :slack_api_token,
|
|
117
|
+
env_name: "SLACK_API_TOKEN",
|
|
118
|
+
description: "Slack API token",
|
|
119
|
+
sensitive: true,
|
|
120
|
+
optional: false,
|
|
121
|
+
type: String),
|
|
122
|
+
FastlaneCore::ConfigItem.new(key: :slack_channel,
|
|
123
|
+
env_name: "APP_FEEDBACK_SDK_SLACK_CHANNEL",
|
|
124
|
+
description: "Slack channel",
|
|
125
|
+
optional: false,
|
|
126
|
+
type: String),
|
|
127
|
+
FastlaneCore::ConfigItem.new(key: :project,
|
|
128
|
+
env_name: 'APP_FEEDBACK_SDK_PROJECT',
|
|
129
|
+
description: 'Path to your Xcode project',
|
|
130
|
+
type: String,
|
|
131
|
+
optional: false,
|
|
132
|
+
verify_block: proc do |value|
|
|
133
|
+
UI.user_error!('Please pass the path to the project, not the workspace') if value.end_with?('.xcworkspace')
|
|
134
|
+
UI.user_error!('Could not find Xcode project') unless File.exist?(value)
|
|
135
|
+
end),
|
|
136
|
+
FastlaneCore::ConfigItem.new(key: :scheme,
|
|
137
|
+
env_name: 'APP_FEEDBACK_SDK_SCHEME',
|
|
138
|
+
description: 'Scheme of info plist',
|
|
139
|
+
type: String,
|
|
140
|
+
optional: false),
|
|
141
|
+
FastlaneCore::ConfigItem.new(key: :configuration,
|
|
142
|
+
env_name: 'APP_FEEDBACK_SDK_CONFIGURATION',
|
|
143
|
+
description: 'Configuration of info plist',
|
|
144
|
+
type: String,
|
|
145
|
+
optional: false)
|
|
146
|
+
]
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
def self.is_supported?(platform)
|
|
150
|
+
# Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
|
|
151
|
+
# See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
|
|
152
|
+
#
|
|
153
|
+
[:ios].include?(platform)
|
|
154
|
+
end
|
|
155
|
+
end
|
|
156
|
+
end
|
|
157
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
require 'fastlane_core/ui/ui'
|
|
2
|
+
|
|
3
|
+
module Fastlane
|
|
4
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
|
|
5
|
+
|
|
6
|
+
module Helper
|
|
7
|
+
class SetupAppFeedbackSdkHelper
|
|
8
|
+
# class methods that you define here become available in your action
|
|
9
|
+
# as `Helper::SetupAppFeedbackSdkHelper.your_method`
|
|
10
|
+
#
|
|
11
|
+
def self.show_message
|
|
12
|
+
UI.message("Hello from the setup_app_feedback_sdk plugin helper!")
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
require 'fastlane/plugin/setup_app_feedback_sdk/version'
|
|
2
|
+
|
|
3
|
+
module Fastlane
|
|
4
|
+
module SetupAppFeedbackSdk
|
|
5
|
+
# Return all .rb files inside the "actions" and "helper" directory
|
|
6
|
+
def self.all_classes
|
|
7
|
+
Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
# By default we want to import all available actions and helpers
|
|
13
|
+
# A plugin can contain any number of actions and plugins
|
|
14
|
+
Fastlane::SetupAppFeedbackSdk.all_classes.each do |current|
|
|
15
|
+
require current
|
|
16
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: fastlane-plugin-setup_app_feedback_sdk
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Yahoo Japan Corporation
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2019-01-11 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: pry
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: bundler
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rspec
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ">="
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: rspec_junit_formatter
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: rake
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: rubocop
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - '='
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 0.49.1
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - '='
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: 0.49.1
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: rubocop-require_tools
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ">="
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0'
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: simplecov
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - ">="
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '0'
|
|
118
|
+
type: :development
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - ">="
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '0'
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: fastlane
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - ">="
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: 2.105.2
|
|
132
|
+
type: :development
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - ">="
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: 2.105.2
|
|
139
|
+
description:
|
|
140
|
+
email: dummy@mail.yahoo.co.jp
|
|
141
|
+
executables: []
|
|
142
|
+
extensions: []
|
|
143
|
+
extra_rdoc_files: []
|
|
144
|
+
files:
|
|
145
|
+
- LICENSE
|
|
146
|
+
- README.md
|
|
147
|
+
- lib/fastlane/plugin/setup_app_feedback_sdk.rb
|
|
148
|
+
- lib/fastlane/plugin/setup_app_feedback_sdk/actions/setup_app_feedback_sdk_action.rb
|
|
149
|
+
- lib/fastlane/plugin/setup_app_feedback_sdk/helper/setup_app_feedback_sdk_helper.rb
|
|
150
|
+
- lib/fastlane/plugin/setup_app_feedback_sdk/version.rb
|
|
151
|
+
homepage: https://github.com/yahoojapan/fastlane-plugin-setup_app_feedback_sdk
|
|
152
|
+
licenses:
|
|
153
|
+
- MIT
|
|
154
|
+
metadata: {}
|
|
155
|
+
post_install_message:
|
|
156
|
+
rdoc_options: []
|
|
157
|
+
require_paths:
|
|
158
|
+
- lib
|
|
159
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
160
|
+
requirements:
|
|
161
|
+
- - ">="
|
|
162
|
+
- !ruby/object:Gem::Version
|
|
163
|
+
version: '0'
|
|
164
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
165
|
+
requirements:
|
|
166
|
+
- - ">="
|
|
167
|
+
- !ruby/object:Gem::Version
|
|
168
|
+
version: '0'
|
|
169
|
+
requirements: []
|
|
170
|
+
rubyforge_project:
|
|
171
|
+
rubygems_version: 2.7.3
|
|
172
|
+
signing_key:
|
|
173
|
+
specification_version: 4
|
|
174
|
+
summary: Setup the Info.plist for App Feedback SDK
|
|
175
|
+
test_files: []
|