fwtoolkit 2.6.2 → 2.6.4
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 +4 -4
- data/lib/fwtoolkit/cli/cocoapods.rb +1 -1
- data/lib/fwtoolkit/cli/project.rb +1 -1
- data/lib/fwtoolkit/config.rb +3 -3
- data/lib/fwtoolkit/git_client/git_client.rb +2 -2
- data/lib/fwtoolkit/version.rb +1 -1
- data/spec/git_client_spec.rb +2 -2
- data/templates/bitrise/android/bitrise.yml.tt +16 -24
- data/templates/bitrise/ios/bitrise.yml.tt +5 -5
- data/templates/default_project/bitrise/android/bitrise.yml.tt +16 -24
- data/templates/default_project/bitrise/ios/bitrise.yml.tt +5 -5
- data/templates/default_project/gemset/Gemfile +4 -1
- data/templates/default_project/git/.gitignore +3 -0
- data/templates/swift_project/xcode/.arkana.yml +7 -0
- data/templates/swift_project/xcode/Podfile.tt +4 -0
- metadata +56 -57
- data/templates/.DS_Store +0 -0
- data/templates/swift_project/xcode/%project_name%.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f4e620b1f0adb2eec46522f2b0b18ba87771083f1d65ecb6bab6fd05a4a297c
|
4
|
+
data.tar.gz: d5f767936dfa94fee2c52ed029e848a9e2d6917d9a6cdd92b634d1bb50dd143e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6361772cc34e8c0569d606ac65b6d9deb8abcd3659c8e40e411e102dacb8114d651f5842a0e657acb7736bd0cd6c368af8edf69cdb57abc36bcdc353dadcad3
|
7
|
+
data.tar.gz: f4e48f5a5afc97b5e830c3f2cf7504f83412bbd3a087c6e859cbe9ec9eb2ddf2a0e8a6527a15f2a7eade3ac68667fb8d8e30ec1233ec140f38bad73a72f3f702
|
@@ -16,7 +16,7 @@ module FWToolkit
|
|
16
16
|
desc 'install [PROJECT_DIR]', 'Installs pods for the project at project_dir'
|
17
17
|
def install(project_root)
|
18
18
|
add_cocoapods_to_project project_root
|
19
|
-
if File.
|
19
|
+
if File.exist? File.join(project_root, 'Podfile')
|
20
20
|
inside(project_root) {
|
21
21
|
run! "bundle exec pod install", :capture => true
|
22
22
|
}
|
data/lib/fwtoolkit/config.rb
CHANGED
@@ -30,15 +30,15 @@ module FWToolkit
|
|
30
30
|
end
|
31
31
|
|
32
32
|
def load!
|
33
|
-
unless File.
|
33
|
+
unless File.exist? config_file
|
34
34
|
puts "Config file not found"
|
35
35
|
|
36
|
-
unless File.
|
36
|
+
unless File.exist? config_path
|
37
37
|
puts "Creating basic path"
|
38
38
|
FileUtils.mkpath config_path
|
39
39
|
end
|
40
40
|
|
41
|
-
if File.
|
41
|
+
if File.exist? old_file
|
42
42
|
puts "Moving old configuration file to new path"
|
43
43
|
FileUtils.copy_file old_file, config_file
|
44
44
|
FileUtils.remove_file old_file
|
@@ -21,7 +21,7 @@ module GitClient
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def initialized?
|
24
|
-
File.
|
24
|
+
File.exist? @git_folder
|
25
25
|
end
|
26
26
|
|
27
27
|
def merging?
|
@@ -112,7 +112,7 @@ module GitClient
|
|
112
112
|
|
113
113
|
def submodules
|
114
114
|
submodules_hash = Hash.new
|
115
|
-
return submodules_hash unless File.
|
115
|
+
return submodules_hash unless File.exist? File.join(@repo_root, '.gitmodules')
|
116
116
|
|
117
117
|
submodules = git "config -f .gitmodules --get-regexp '^submodule\..*\.path$'"
|
118
118
|
submodules.split("\n").each do |line|
|
data/lib/fwtoolkit/version.rb
CHANGED
data/spec/git_client_spec.rb
CHANGED
@@ -14,7 +14,7 @@ describe GitClient do
|
|
14
14
|
|
15
15
|
it "initialize and empty repository on an new folder" do
|
16
16
|
@repo.init
|
17
|
-
File.
|
17
|
+
File.exist?(File.join(@project_folder, '.git')).should be_true
|
18
18
|
end
|
19
19
|
|
20
20
|
it "fails to initialise a repository on a folder containing a git repo" do
|
@@ -311,6 +311,6 @@ describe GitClient do
|
|
311
311
|
end
|
312
312
|
|
313
313
|
def file_exists_in_repo?(filename)
|
314
|
-
File.
|
314
|
+
File.exist? File.join(@project_folder, filename)
|
315
315
|
end
|
316
316
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
---
|
2
|
-
format_version:
|
2
|
+
format_version: "11"
|
3
3
|
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
|
4
4
|
project_type: android
|
5
5
|
trigger_map:
|
@@ -23,7 +23,6 @@ workflows:
|
|
23
23
|
after_run:
|
24
24
|
- _preflight
|
25
25
|
- _test
|
26
|
-
- _commit_status
|
27
26
|
staging:
|
28
27
|
envs:
|
29
28
|
- KEYSTORE_NAME: fw_internal.keystore
|
@@ -81,15 +80,15 @@ workflows:
|
|
81
80
|
- s3_bucket: fw.ci.certificates
|
82
81
|
- output_location: "$KEYSTORE_OUTPUT_PATH"
|
83
82
|
- s3_filepath: "$KEYSTORE_NAME"
|
84
|
-
- gradle-runner@
|
83
|
+
- gradle-runner@2:
|
85
84
|
inputs:
|
86
|
-
- gradle_file:
|
87
|
-
- gradle_task:
|
88
|
-
-Pproject.bundleId=$PACKAGE_NAME bundle$BUILD_FLAVOUR$BUILD_TASK
|
85
|
+
- gradle_file: $GRADLE_BUILD_FILE_PATH
|
86
|
+
- gradle_task: -Pproject.buildnumber=$BITRISE_BUILD_NUMBER -Pproject.buildversion=$BUILD_VERSION
|
87
|
+
-Pproject.bundleId=$PACKAGE_NAME bundle$BUILD_FLAVOUR$BUILD_TASK
|
89
88
|
- app_file_include_filter: |
|
90
89
|
*-universal-*.apk
|
91
90
|
*.aab
|
92
|
-
- gradlew_path:
|
91
|
+
- gradlew_path: $GRADLEW_PATH
|
93
92
|
- bitrise-step-export-universal-apk@0:
|
94
93
|
inputs:
|
95
94
|
- keystore_alias: "$KEYSTORE_ALIAS"
|
@@ -100,12 +99,10 @@ workflows:
|
|
100
99
|
- KEYSTORE_PATH: "$KEYSTORE_OUTPUT_PATH/$KEYSTORE_NAME"
|
101
100
|
_deploy_bitrise:
|
102
101
|
steps:
|
103
|
-
- deploy-to-bitrise-io@
|
104
|
-
inputs:
|
105
|
-
- generate_universal_apk_if_none: 'false'
|
102
|
+
- deploy-to-bitrise-io@2: {}
|
106
103
|
_deploy_google:
|
107
104
|
steps:
|
108
|
-
- google-play-deploy@3
|
105
|
+
- google-play-deploy@3:
|
109
106
|
inputs:
|
110
107
|
- service_account_json_key_path: "$BITRISEIO_GOOGLE_PLAY_JSON_AUTH_PATH_URL"
|
111
108
|
- package_name: "$PACKAGE_NAME"
|
@@ -114,26 +111,26 @@ workflows:
|
|
114
111
|
- app_path: "$BITRISE_AAB_PATH"
|
115
112
|
_preflight:
|
116
113
|
steps:
|
117
|
-
- build-number-adjust@1
|
114
|
+
- build-number-adjust@1:
|
118
115
|
inputs:
|
119
116
|
- change: ''
|
120
117
|
- increase: "$FW_BUILD_NUMBER_OFFSET"
|
121
118
|
- decrease: ''
|
122
|
-
- activate-ssh-key@4
|
119
|
+
- activate-ssh-key@4:
|
123
120
|
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
|
124
|
-
- git-clone@
|
121
|
+
- git-clone@7:
|
125
122
|
inputs:
|
126
123
|
- manual_merge: 'no'
|
127
|
-
- install-missing-android-tools@
|
124
|
+
- install-missing-android-tools@3:
|
128
125
|
inputs:
|
129
|
-
-
|
126
|
+
- ndk_version: $ANDROID_NDK_VERSION
|
130
127
|
_test:
|
131
128
|
steps:
|
132
|
-
- gradle-unit-test@1
|
129
|
+
- gradle-unit-test@1:
|
133
130
|
inputs:
|
134
131
|
- unit_test_task: "$TEST_COMMAND"
|
135
132
|
- unit_test_flags:
|
136
|
-
- deploy-to-bitrise-io@
|
133
|
+
- deploy-to-bitrise-io@2:
|
137
134
|
inputs:
|
138
135
|
- deploy_path: "$TEST_REPORTS_PATH"
|
139
136
|
- notify_user_groups: none
|
@@ -141,11 +138,6 @@ workflows:
|
|
141
138
|
envs:
|
142
139
|
- TEST_REPORTS_PATH: "$BITRISE_SOURCE_DIR/app/build/reports/"
|
143
140
|
- TEST_COMMAND: check test
|
144
|
-
_commit_status:
|
145
|
-
steps:
|
146
|
-
- github-status@2.3:
|
147
|
-
inputs:
|
148
|
-
- auth_token: "$FW_GITHUB_STATUS_AUTH_TOKEN"
|
149
141
|
app:
|
150
142
|
envs:
|
151
143
|
- BUILD_FLAVOUR:
|
@@ -172,4 +164,4 @@ app:
|
|
172
164
|
- KEYSTORE_OUTPUT_PATH: "$BITRISE_SOURCE_DIR"
|
173
165
|
meta:
|
174
166
|
bitrise.io:
|
175
|
-
|
167
|
+
stack: linux-docker-android-20.04
|
@@ -1,5 +1,5 @@
|
|
1
1
|
---
|
2
|
-
format_version:
|
2
|
+
format_version: '11'
|
3
3
|
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
|
4
4
|
trigger_map:
|
5
5
|
- push_branch: dev
|
@@ -173,9 +173,9 @@ workflows:
|
|
173
173
|
- recreate-user-schemes:
|
174
174
|
inputs:
|
175
175
|
- project_path: "$BITRISE_PROJECT_PATH"
|
176
|
-
- install-bundler@1.0.0: {}
|
177
176
|
_build:
|
178
177
|
steps:
|
178
|
+
- cocoapods-install: {}
|
179
179
|
- git::https://github.com/FutureWorkshops/bitrise-step-extract-xcode-settings@master:
|
180
180
|
title: Extract Info.plist path
|
181
181
|
inputs:
|
@@ -218,7 +218,6 @@ workflows:
|
|
218
218
|
- configuration: Release
|
219
219
|
- xcode_setting_keys: PROVISIONING_PROFILE_SPECIFIER | DEVELOPMENT_TEAM | CODE_SIGN_IDENTITY
|
220
220
|
- new_values: "$PROVISIONING_PROFILE_NAME | $DEVPORTAL_TEAM | $CODESIGN_IDENTITY"
|
221
|
-
- cocoapods-install: {}
|
222
221
|
- script:
|
223
222
|
title: Set environment
|
224
223
|
inputs:
|
@@ -283,10 +282,11 @@ workflows:
|
|
283
282
|
- s3_bucket: fw.ci.certificates
|
284
283
|
- output_location: "$BITRISE_SOURCE_DIR"
|
285
284
|
- s3_filepath: "$FW_ITUNES_CONNECT_API_KEY"
|
286
|
-
- deploy-to-itunesconnect-application-loader@
|
285
|
+
- deploy-to-itunesconnect-application-loader@1:
|
287
286
|
run_if: .IsCI
|
288
287
|
inputs:
|
289
|
-
- api_issuer:
|
288
|
+
- api_issuer: $FW_ITUNES_CONNECT_API_KEY_ISSUER_ID
|
289
|
+
- connection: api_key
|
290
290
|
- api_key_path: file://$BITRISE_SOURCE_DIR/$FW_ITUNES_CONNECT_API_KEY
|
291
291
|
app:
|
292
292
|
envs:
|
@@ -1,5 +1,5 @@
|
|
1
1
|
---
|
2
|
-
format_version:
|
2
|
+
format_version: "11"
|
3
3
|
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
|
4
4
|
project_type: android
|
5
5
|
trigger_map:
|
@@ -23,7 +23,6 @@ workflows:
|
|
23
23
|
after_run:
|
24
24
|
- _preflight
|
25
25
|
- _test
|
26
|
-
- _commit_status
|
27
26
|
staging:
|
28
27
|
envs:
|
29
28
|
- KEYSTORE_NAME: fw_internal.keystore
|
@@ -81,15 +80,15 @@ workflows:
|
|
81
80
|
- s3_bucket: fw.ci.certificates
|
82
81
|
- output_location: "$KEYSTORE_OUTPUT_PATH"
|
83
82
|
- s3_filepath: "$KEYSTORE_NAME"
|
84
|
-
- gradle-runner@
|
83
|
+
- gradle-runner@2:
|
85
84
|
inputs:
|
86
|
-
- gradle_file:
|
87
|
-
- gradle_task:
|
88
|
-
-Pproject.bundleId=$PACKAGE_NAME bundle$BUILD_FLAVOUR$BUILD_TASK
|
85
|
+
- gradle_file: $GRADLE_BUILD_FILE_PATH
|
86
|
+
- gradle_task: -Pproject.buildnumber=$BITRISE_BUILD_NUMBER -Pproject.buildversion=$BUILD_VERSION
|
87
|
+
-Pproject.bundleId=$PACKAGE_NAME bundle$BUILD_FLAVOUR$BUILD_TASK
|
89
88
|
- app_file_include_filter: |
|
90
89
|
*-universal-*.apk
|
91
90
|
*.aab
|
92
|
-
- gradlew_path:
|
91
|
+
- gradlew_path: $GRADLEW_PATH
|
93
92
|
- bitrise-step-export-universal-apk@0:
|
94
93
|
inputs:
|
95
94
|
- keystore_alias: "$KEYSTORE_ALIAS"
|
@@ -100,12 +99,10 @@ workflows:
|
|
100
99
|
- KEYSTORE_PATH: "$KEYSTORE_OUTPUT_PATH/$KEYSTORE_NAME"
|
101
100
|
_deploy_bitrise:
|
102
101
|
steps:
|
103
|
-
- deploy-to-bitrise-io@
|
104
|
-
inputs:
|
105
|
-
- generate_universal_apk_if_none: 'false'
|
102
|
+
- deploy-to-bitrise-io@2: {}
|
106
103
|
_deploy_google:
|
107
104
|
steps:
|
108
|
-
- google-play-deploy@3
|
105
|
+
- google-play-deploy@3:
|
109
106
|
inputs:
|
110
107
|
- service_account_json_key_path: "$BITRISEIO_GOOGLE_PLAY_JSON_AUTH_PATH_URL"
|
111
108
|
- package_name: "$PACKAGE_NAME"
|
@@ -114,26 +111,26 @@ workflows:
|
|
114
111
|
- app_path: "$BITRISE_AAB_PATH"
|
115
112
|
_preflight:
|
116
113
|
steps:
|
117
|
-
- build-number-adjust@1
|
114
|
+
- build-number-adjust@1:
|
118
115
|
inputs:
|
119
116
|
- change: ''
|
120
117
|
- increase: "$FW_BUILD_NUMBER_OFFSET"
|
121
118
|
- decrease: ''
|
122
|
-
- activate-ssh-key@4
|
119
|
+
- activate-ssh-key@4:
|
123
120
|
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
|
124
|
-
- git-clone@
|
121
|
+
- git-clone@7:
|
125
122
|
inputs:
|
126
123
|
- manual_merge: 'no'
|
127
|
-
- install-missing-android-tools@
|
124
|
+
- install-missing-android-tools@3:
|
128
125
|
inputs:
|
129
|
-
-
|
126
|
+
- ndk_version: $ANDROID_NDK_VERSION
|
130
127
|
_test:
|
131
128
|
steps:
|
132
|
-
- gradle-unit-test@1
|
129
|
+
- gradle-unit-test@1:
|
133
130
|
inputs:
|
134
131
|
- unit_test_task: "$TEST_COMMAND"
|
135
132
|
- unit_test_flags:
|
136
|
-
- deploy-to-bitrise-io@
|
133
|
+
- deploy-to-bitrise-io@2:
|
137
134
|
inputs:
|
138
135
|
- deploy_path: "$TEST_REPORTS_PATH"
|
139
136
|
- notify_user_groups: none
|
@@ -141,11 +138,6 @@ workflows:
|
|
141
138
|
envs:
|
142
139
|
- TEST_REPORTS_PATH: "$BITRISE_SOURCE_DIR/app/build/reports/"
|
143
140
|
- TEST_COMMAND: check test
|
144
|
-
_commit_status:
|
145
|
-
steps:
|
146
|
-
- github-status@2.3:
|
147
|
-
inputs:
|
148
|
-
- auth_token: "$FW_GITHUB_STATUS_AUTH_TOKEN"
|
149
141
|
app:
|
150
142
|
envs:
|
151
143
|
- BUILD_FLAVOUR:
|
@@ -172,4 +164,4 @@ app:
|
|
172
164
|
- KEYSTORE_OUTPUT_PATH: "$BITRISE_SOURCE_DIR"
|
173
165
|
meta:
|
174
166
|
bitrise.io:
|
175
|
-
|
167
|
+
stack: linux-docker-android-20.04
|
@@ -1,5 +1,5 @@
|
|
1
1
|
---
|
2
|
-
format_version:
|
2
|
+
format_version: '11'
|
3
3
|
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
|
4
4
|
trigger_map:
|
5
5
|
- push_branch: dev
|
@@ -173,9 +173,9 @@ workflows:
|
|
173
173
|
- recreate-user-schemes:
|
174
174
|
inputs:
|
175
175
|
- project_path: "$BITRISE_PROJECT_PATH"
|
176
|
-
- install-bundler@1.0.0: {}
|
177
176
|
_build:
|
178
177
|
steps:
|
178
|
+
- cocoapods-install: {}
|
179
179
|
- git::https://github.com/FutureWorkshops/bitrise-step-extract-xcode-settings@master:
|
180
180
|
title: Extract Info.plist path
|
181
181
|
inputs:
|
@@ -218,7 +218,6 @@ workflows:
|
|
218
218
|
- configuration: Release
|
219
219
|
- xcode_setting_keys: PROVISIONING_PROFILE_SPECIFIER | DEVELOPMENT_TEAM | CODE_SIGN_IDENTITY
|
220
220
|
- new_values: "$PROVISIONING_PROFILE_NAME | $DEVPORTAL_TEAM | $CODESIGN_IDENTITY"
|
221
|
-
- cocoapods-install: {}
|
222
221
|
- script:
|
223
222
|
title: Set environment
|
224
223
|
inputs:
|
@@ -283,10 +282,11 @@ workflows:
|
|
283
282
|
- s3_bucket: fw.ci.certificates
|
284
283
|
- output_location: "$BITRISE_SOURCE_DIR"
|
285
284
|
- s3_filepath: "$FW_ITUNES_CONNECT_API_KEY"
|
286
|
-
- deploy-to-itunesconnect-application-loader@
|
285
|
+
- deploy-to-itunesconnect-application-loader@1:
|
287
286
|
run_if: .IsCI
|
288
287
|
inputs:
|
289
|
-
- api_issuer:
|
288
|
+
- api_issuer: $FW_ITUNES_CONNECT_API_KEY_ISSUER_ID
|
289
|
+
- connection: api_key
|
290
290
|
- api_key_path: file://$BITRISE_SOURCE_DIR/$FW_ITUNES_CONNECT_API_KEY
|
291
291
|
app:
|
292
292
|
envs:
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import_name: 'ArkanaKeys' # Optional. Name of the framework to be imported. Defaults to ArkanaKeys.
|
2
|
+
namespace: 'ArkanaKeys' # Optional. Namespace used to access the secrets in the codebase. Defaults to ArkanaKeys.
|
3
|
+
pod_name: 'ArkanaKeys' # Optional. Name of the pod to be declared in your Podfile. Defaults to ArkanaKeys.
|
4
|
+
result_path: 'dependencies' # Optional. Destination path of the generated code, related to the path of this config file. Defaults to ArkanaKeys.
|
5
|
+
swift_declaration_strategy: let # Optional. One of: lazy var, var, let. Defaults to let.
|
6
|
+
package_manager: cocoapods # Optional. One of: spm, cocoapods. If you use both, declare cocoapods. Defaults to spm.
|
7
|
+
global_secrets: []
|
@@ -1,3 +1,5 @@
|
|
1
|
+
`bundle exec arkana --config-filepath .arkana.yml`
|
2
|
+
|
1
3
|
project '<%= File.join(config[:project_name], "#{config[:project_name]}.xcodeproj")%>'
|
2
4
|
platform :ios, '<%= config[:target_platform]%>'
|
3
5
|
|
@@ -5,6 +7,8 @@ inhibit_all_warnings!
|
|
5
7
|
use_frameworks!
|
6
8
|
|
7
9
|
target '<%= config[:project_name]%>' do
|
10
|
+
pod "ArkanaKeys", path: "dependencies/ArkanaKeys"
|
11
|
+
pod "ArkanaKeysInterfaces", path: "dependencies/ArkanaKeysInterfaces"
|
8
12
|
end
|
9
13
|
|
10
14
|
post_install do | installer |
|
metadata
CHANGED
@@ -1,233 +1,233 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fwtoolkit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.
|
4
|
+
version: 2.6.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Future Workshops
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec-rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 3.8.2
|
20
|
-
- - "
|
20
|
+
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 3.8.2
|
23
23
|
type: :development
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- - "
|
27
|
+
- - "~>"
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: 3.8.2
|
30
|
-
- - "
|
30
|
+
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 3.8.2
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aruba
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - "
|
37
|
+
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
39
|
version: 0.14.12
|
40
|
-
- - "
|
40
|
+
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
42
|
version: 0.14.12
|
43
43
|
type: :development
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- - "
|
47
|
+
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
49
|
version: 0.14.12
|
50
|
-
- - "
|
50
|
+
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: 0.14.12
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: cucumber
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
|
-
- - "
|
57
|
+
- - "~>"
|
58
58
|
- !ruby/object:Gem::Version
|
59
59
|
version: 3.1.2
|
60
|
-
- - "
|
60
|
+
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
62
|
version: 3.1.2
|
63
63
|
type: :development
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
|
-
- - "
|
67
|
+
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: 3.1.2
|
70
|
-
- - "
|
70
|
+
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
72
|
version: 3.1.2
|
73
73
|
- !ruby/object:Gem::Dependency
|
74
74
|
name: aruba-doubles
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
76
76
|
requirements:
|
77
|
-
- - "
|
77
|
+
- - "~>"
|
78
78
|
- !ruby/object:Gem::Version
|
79
79
|
version: 1.2.1
|
80
|
-
- - "
|
80
|
+
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 1.2.1
|
83
83
|
type: :development
|
84
84
|
prerelease: false
|
85
85
|
version_requirements: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- - "
|
87
|
+
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: 1.2.1
|
90
|
-
- - "
|
90
|
+
- - ">="
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: 1.2.1
|
93
93
|
- !ruby/object:Gem::Dependency
|
94
94
|
name: thor
|
95
95
|
requirement: !ruby/object:Gem::Requirement
|
96
96
|
requirements:
|
97
|
-
- - "
|
97
|
+
- - "~>"
|
98
98
|
- !ruby/object:Gem::Version
|
99
99
|
version: 0.20.3
|
100
|
-
- - "
|
100
|
+
- - ">="
|
101
101
|
- !ruby/object:Gem::Version
|
102
102
|
version: 0.20.3
|
103
103
|
type: :runtime
|
104
104
|
prerelease: false
|
105
105
|
version_requirements: !ruby/object:Gem::Requirement
|
106
106
|
requirements:
|
107
|
-
- - "
|
107
|
+
- - "~>"
|
108
108
|
- !ruby/object:Gem::Version
|
109
109
|
version: 0.20.3
|
110
|
-
- - "
|
110
|
+
- - ">="
|
111
111
|
- !ruby/object:Gem::Version
|
112
112
|
version: 0.20.3
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: rake
|
115
115
|
requirement: !ruby/object:Gem::Requirement
|
116
116
|
requirements:
|
117
|
-
- - "
|
117
|
+
- - "~>"
|
118
118
|
- !ruby/object:Gem::Version
|
119
119
|
version: 13.0.0
|
120
|
-
- - "
|
120
|
+
- - ">="
|
121
121
|
- !ruby/object:Gem::Version
|
122
122
|
version: 13.0.0
|
123
123
|
type: :runtime
|
124
124
|
prerelease: false
|
125
125
|
version_requirements: !ruby/object:Gem::Requirement
|
126
126
|
requirements:
|
127
|
-
- - "
|
127
|
+
- - "~>"
|
128
128
|
- !ruby/object:Gem::Version
|
129
129
|
version: 13.0.0
|
130
|
-
- - "
|
130
|
+
- - ">="
|
131
131
|
- !ruby/object:Gem::Version
|
132
132
|
version: 13.0.0
|
133
133
|
- !ruby/object:Gem::Dependency
|
134
134
|
name: bundler
|
135
135
|
requirement: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
|
-
- - ">="
|
138
|
-
- !ruby/object:Gem::Version
|
139
|
-
version: 2.2.0
|
140
137
|
- - "~>"
|
141
138
|
- !ruby/object:Gem::Version
|
142
|
-
version: 2.
|
139
|
+
version: 2.4.1
|
140
|
+
- - ">="
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: 2.4.1
|
143
143
|
type: :runtime
|
144
144
|
prerelease: false
|
145
145
|
version_requirements: !ruby/object:Gem::Requirement
|
146
146
|
requirements:
|
147
|
-
- - ">="
|
148
|
-
- !ruby/object:Gem::Version
|
149
|
-
version: 2.2.0
|
150
147
|
- - "~>"
|
151
148
|
- !ruby/object:Gem::Version
|
152
|
-
version: 2.
|
149
|
+
version: 2.4.1
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 2.4.1
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
154
|
name: multi_json
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
156
156
|
requirements:
|
157
|
-
- - "
|
157
|
+
- - "~>"
|
158
158
|
- !ruby/object:Gem::Version
|
159
159
|
version: 1.13.1
|
160
|
-
- - "
|
160
|
+
- - ">="
|
161
161
|
- !ruby/object:Gem::Version
|
162
162
|
version: 1.13.1
|
163
163
|
type: :runtime
|
164
164
|
prerelease: false
|
165
165
|
version_requirements: !ruby/object:Gem::Requirement
|
166
166
|
requirements:
|
167
|
-
- - "
|
167
|
+
- - "~>"
|
168
168
|
- !ruby/object:Gem::Version
|
169
169
|
version: 1.13.1
|
170
|
-
- - "
|
170
|
+
- - ">="
|
171
171
|
- !ruby/object:Gem::Version
|
172
172
|
version: 1.13.1
|
173
173
|
- !ruby/object:Gem::Dependency
|
174
174
|
name: xcodeproj
|
175
175
|
requirement: !ruby/object:Gem::Requirement
|
176
176
|
requirements:
|
177
|
-
- - ">="
|
178
|
-
- !ruby/object:Gem::Version
|
179
|
-
version: 1.12.0
|
180
177
|
- - "~>"
|
181
178
|
- !ruby/object:Gem::Version
|
182
|
-
version: 1.
|
179
|
+
version: 1.21.0
|
180
|
+
- - ">="
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: 1.21.0
|
183
183
|
type: :runtime
|
184
184
|
prerelease: false
|
185
185
|
version_requirements: !ruby/object:Gem::Requirement
|
186
186
|
requirements:
|
187
|
-
- - ">="
|
188
|
-
- !ruby/object:Gem::Version
|
189
|
-
version: 1.12.0
|
190
187
|
- - "~>"
|
191
188
|
- !ruby/object:Gem::Version
|
192
|
-
version: 1.
|
189
|
+
version: 1.21.0
|
190
|
+
- - ">="
|
191
|
+
- !ruby/object:Gem::Version
|
192
|
+
version: 1.21.0
|
193
193
|
- !ruby/object:Gem::Dependency
|
194
194
|
name: xcodebuild-rb
|
195
195
|
requirement: !ruby/object:Gem::Requirement
|
196
196
|
requirements:
|
197
|
-
- - "
|
197
|
+
- - "~>"
|
198
198
|
- !ruby/object:Gem::Version
|
199
199
|
version: 0.3.0
|
200
|
-
- - "
|
200
|
+
- - ">="
|
201
201
|
- !ruby/object:Gem::Version
|
202
202
|
version: 0.3.0
|
203
203
|
type: :runtime
|
204
204
|
prerelease: false
|
205
205
|
version_requirements: !ruby/object:Gem::Requirement
|
206
206
|
requirements:
|
207
|
-
- - "
|
207
|
+
- - "~>"
|
208
208
|
- !ruby/object:Gem::Version
|
209
209
|
version: 0.3.0
|
210
|
-
- - "
|
210
|
+
- - ">="
|
211
211
|
- !ruby/object:Gem::Version
|
212
212
|
version: 0.3.0
|
213
213
|
- !ruby/object:Gem::Dependency
|
214
214
|
name: rubyzip
|
215
215
|
requirement: !ruby/object:Gem::Requirement
|
216
216
|
requirements:
|
217
|
-
- - "
|
217
|
+
- - "~>"
|
218
218
|
- !ruby/object:Gem::Version
|
219
219
|
version: 2.0.0
|
220
|
-
- - "
|
220
|
+
- - ">="
|
221
221
|
- !ruby/object:Gem::Version
|
222
222
|
version: 2.0.0
|
223
223
|
type: :runtime
|
224
224
|
prerelease: false
|
225
225
|
version_requirements: !ruby/object:Gem::Requirement
|
226
226
|
requirements:
|
227
|
-
- - "
|
227
|
+
- - "~>"
|
228
228
|
- !ruby/object:Gem::Version
|
229
229
|
version: 2.0.0
|
230
|
-
- - "
|
230
|
+
- - ">="
|
231
231
|
- !ruby/object:Gem::Version
|
232
232
|
version: 2.0.0
|
233
233
|
description: A collection of iOS development tools used by Future Workshops
|
@@ -290,7 +290,6 @@ files:
|
|
290
290
|
- spec/support/ctx_rake.rb
|
291
291
|
- spec/support/double_helper.rb
|
292
292
|
- spec/support/project_generator.rb
|
293
|
-
- templates/.DS_Store
|
294
293
|
- templates/bitrise/android/bitrise.yml.tt
|
295
294
|
- templates/bitrise/ios/bitrise.yml.tt
|
296
295
|
- templates/default_project/bitrise/android/bitrise.yml.tt
|
@@ -339,7 +338,6 @@ files:
|
|
339
338
|
- templates/objc_project/xcode/Podfile.tt
|
340
339
|
- templates/objc_project/xcode/Rakefile.tt
|
341
340
|
- templates/swift_project/xcode/%project_name%.xcworkspace/contents.xcworkspacedata.tt
|
342
|
-
- templates/swift_project/xcode/%project_name%.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
|
343
341
|
- templates/swift_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt
|
344
342
|
- templates/swift_project/xcode/%project_name%/%project_name%.xcodeproj/project.xcworkspace/contents.xcworkspacedata.tt
|
345
343
|
- templates/swift_project/xcode/%project_name%/%project_name%.xcodeproj/xcshareddata/xcschemes/%project_name%.xcscheme.tt
|
@@ -374,6 +372,7 @@ files:
|
|
374
372
|
- templates/swift_project/xcode/%project_name%/%target_name%/ViewController.swift.tt
|
375
373
|
- templates/swift_project/xcode/%project_name%/%tests_target_name%/%project_name%Tests.swift.tt
|
376
374
|
- templates/swift_project/xcode/%project_name%/%tests_target_name%/Supporting Files/Info.plist
|
375
|
+
- templates/swift_project/xcode/.arkana.yml
|
377
376
|
- templates/swift_project/xcode/Podfile.tt
|
378
377
|
- templates/swift_project/xcode/Rakefile.tt
|
379
378
|
homepage: https://github.com/FutureWorkshops/FWToolkit
|
@@ -395,7 +394,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
395
394
|
- !ruby/object:Gem::Version
|
396
395
|
version: '0'
|
397
396
|
requirements: []
|
398
|
-
rubygems_version: 3.
|
397
|
+
rubygems_version: 3.4.1
|
399
398
|
signing_key:
|
400
399
|
specification_version: 4
|
401
400
|
summary: Future Workshops project tools
|
data/templates/.DS_Store
DELETED
Binary file
|