fastlane-plugin-ionic_integration 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 091a16670e7565c9be7dea52824444a242053362
|
4
|
+
data.tar.gz: a8a80952be3662ee66ffeb10cf0ca21e23e518b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b8ac88830869292a2cae07b8579d8ebb50f63e154c58b6dbbb0ca3294fb906eeea99328ff5dd67c0a5a67b357fa90c918f71f057751a262e050a3647967aab6
|
7
|
+
data.tar.gz: a758c34ada04ebb2150593be840c77d4d75d7cf117e804047b3aaf7bbf5d7d28453a50a87287f5a3e095a3e740a3b9630d79b8ecafdff34405eceffcc4517ff5
|
@@ -77,7 +77,7 @@ module Fastlane
|
|
77
77
|
# Ok, let's rock and roll
|
78
78
|
#
|
79
79
|
UI.message "Creating UI Test Group #{scheme_name} for snapshots testing"
|
80
|
-
snap_group = proj.new_group(scheme_name.to_s, File.absolute_path(config_folder))
|
80
|
+
snap_group = proj.new_group(scheme_name.to_s, File.absolute_path(config_folder), '<absolute>')
|
81
81
|
|
82
82
|
UI.message "Finding Main Target (of the Project)..."
|
83
83
|
main_target = nil
|
@@ -121,7 +121,7 @@ module Fastlane
|
|
121
121
|
# Link our fastlane configured UI Unit Tests into the project
|
122
122
|
Dir["#{config_folder}/*.plist", "#{config_folder}/*.swift"].each do |file|
|
123
123
|
UI.message "Adding UI Test Source #{file}"
|
124
|
-
files << snap_group.new_reference(File.absolute_path(file))
|
124
|
+
files << snap_group.new_reference(File.absolute_path(file), '<absolute>')
|
125
125
|
end
|
126
126
|
|
127
127
|
target.add_file_references(files)
|
@@ -143,7 +143,7 @@ module Fastlane
|
|
143
143
|
proj.root_object.attributes.store('TargetAttributes', { target.uuid => target_config })
|
144
144
|
end
|
145
145
|
|
146
|
-
target.build_configuration_list.set_setting('INFOPLIST_FILE', "#{
|
146
|
+
target.build_configuration_list.set_setting('INFOPLIST_FILE', File.absolute_path("#{config_folder}/Info.plist"))
|
147
147
|
target.build_configuration_list.set_setting('SWIFT_VERSION', '3.0')
|
148
148
|
target.build_configuration_list.set_setting('PRODUCT_NAME', "$(TARGET_NAME)")
|
149
149
|
target.build_configuration_list.set_setting('TEST_TARGET_NAME', project_name)
|