shellboxCLI 0.1.16 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abe773b82f91137ba2116220d96fadb4dc6d0353e7bf14ebce0ca9c338e082b4
4
- data.tar.gz: 487e91bef15e4704ab2436bc0135008d275b940a0cef924fdcd7e581b146ecf0
3
+ metadata.gz: aac4b01bfb6c6db9b77dd060523ea4280c1a2f3a248d93f3a4139120203d7713
4
+ data.tar.gz: 01034bba077655b5c4fac55c3d3dfcf33a4032dd761c9874889481a1e86a9fc4
5
5
  SHA512:
6
- metadata.gz: 184d338842deb18153cf574ad662f9cf3245c2cd72bbb344b74cb69bd03d140a305c14942526bdf7ccd61bf9eceb650f9759cc55a8cd6c464e4b624fd5a279b2
7
- data.tar.gz: 463c4ca81d70c83a4bf1c07f3b3c09ddcb6ea67926b4fd4adf9607fe8aac0408a201161586c4c5e73346d7ea98ccb5e295e09594112c9eaeb290cca02dc49fee
6
+ metadata.gz: 2c595b85ad36ef2e4a96c30c733da356cddb28ba85a0e622d12c57a14712994a9732012d22a162ad6b903c3a18417e32b63c03a8af5dd947355813b7d8e9d3a7
7
+ data.tar.gz: b37d7f0795fb47d17ea6bcf75541a593f1dcc26dac3526075f14edc7db1ec0e4393b19612882d5fe10d638296e512aa47399ad5a676d60a245e567da926b9573
@@ -0,0 +1,30 @@
1
+ #!/bin/bash
2
+
3
+ # Path para o Swiftlint
4
+ SWIFTLINT_PATH=/opt/homebrew/bin/swiftlint
5
+
6
+ # Verifica se o Swiftlint está instalado
7
+ if ! command -v $SWIFTLINT_PATH &> /dev/null; then
8
+ echo "Swiftlint não encontrado. Certifique-se de que está instalado."
9
+ exit 1
10
+ fi
11
+
12
+ # Obtém arquivos em diff que ainda não foram commitados
13
+ files=$(git diff --cached --name-only --diff-filter=ACM | grep "\.swift$")
14
+
15
+ # Verifica se existem arquivos Swift para lint
16
+ if [ -n "$files" ]; then
17
+ echo "Executando Swiftlint nos arquivos alterados..."
18
+
19
+ # Executa o Swiftlint nos arquivos em diff
20
+ lint_output=$($SWIFTLINT_PATH lint --path $files)
21
+
22
+ if [ -n "$lint_output" ]; then
23
+ echo "Erros ou avisos do Swiftlint encontrados:"
24
+ echo "$lint_output"
25
+ echo "Corrija os problemas de lint antes de commitar."
26
+ exit 1
27
+ fi
28
+ fi
29
+
30
+ exit 0
@@ -0,0 +1,28 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'rugged'
5
+ require 'fileutils'
6
+
7
+ def install_pre_commit_hook(repository)
8
+ hooks_path = File.join(repository.workdir, '.git', 'hooks')
9
+ hook_type = 'pre-commit'
10
+ hook_path = File.join(hooks_path, hook_type)
11
+ source_hook_path = File.join(File.dirname(File.expand_path(__FILE__)), 'hooks', hook_type)
12
+
13
+ unless File.directory?(hooks_path)
14
+ puts "Pasta .git/hooks não encontrada. Certifique-se de estar no diretório raiz do seu repositório Git."
15
+ exit 1
16
+ end
17
+
18
+ # Copia o script do hook para o diretório .git/hooks
19
+ FileUtils.cp(source_hook_path, hook_path)
20
+ File.chmod(0755, hook_path)
21
+ end
22
+
23
+ repo_path = Dir.pwd
24
+ repo = Rugged::Repository.new(repo_path)
25
+
26
+ install_pre_commit_hook(repo)
27
+
28
+ puts "Hook pre-commit configurado com sucesso!"
data/lib/ios/iosOption.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  require 'ios/module/setup/Template_Configurator'
2
+ require 'ios/module/setup/TuistCommands'
2
3
 
3
4
  require 'thor'
4
5
 
@@ -6,48 +7,72 @@ module App
6
7
  class IOS_CLI < Thor
7
8
  desc "module", "Create a new module to iOS platform"
8
9
  def module
9
- IOS::TemplateConfigurator.new.run
10
- end
11
-
12
- desc "install", "Install scripts and templates in project"
13
- def install
14
- puts "Verificando se existe Homebrew instalado"
15
- brewExists = system('which -s brew')
16
- if brewExists
17
- puts "Atualizando Homebrew"
18
- system('brew update')
19
- else
20
- puts "Instalando Homebrew"
21
- system("/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"")
22
- end
23
- puts "Instalando swiftgen"
24
- system("brew install swiftgen")
25
-
26
- puts "✅ Instalado com sucesso"
27
-
28
- install_hooks
29
- end
30
-
31
- private
32
- def install_hooks
33
- project_directory = Dir.pwd
34
- install_hooks_path = File.join(project_directory, 'install-hooks.rb')
35
-
36
- unless File.exist?(install_hooks_path)
37
- puts "O arquivo install-hooks.rb não foi encontrado em #{File.join(project_directory)}."
38
- return
39
- end
40
-
41
- puts "Executando install_hooks..."
42
-
43
- Dir.chdir(File.join(project_directory)) do
44
- success = system('ruby install-hooks.rb')
45
- if success
46
- puts "✅ Hooks instalados com sucesso!"
47
- else
48
- puts "❌ Erro ao executar pre-hook"
49
- end
50
- end
51
- end
10
+ IOS::TemplateConfigurator.new.run
11
+ end
12
+
13
+ desc "generate_no_open", "Generate project using Tuist without open the project"
14
+ def generate_no_open
15
+ IOS::TuistCommands.new.generateExample(false)
16
+ end
17
+
18
+ desc "generate", "Generate project using Tuist opening the project"
19
+ def generate
20
+ IOS::TuistCommands.new.generateExample
21
+ end
22
+
23
+ desc "install", "Install scripts and templates in project"
24
+ def install
25
+ puts "Verificando se existe Homebrew instalado"
26
+ brewExists = system('which -s brew')
27
+ if brewExists
28
+ puts "Atualizando Homebrew"
29
+ system('brew update')
30
+ else
31
+ puts "Instalando Homebrew"
32
+ system("/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"")
33
+ end
34
+ puts "Instalando swiftgen"
35
+ system("brew install swiftgen")
36
+
37
+ puts "✅ Swiftgen instalado com sucesso"
38
+
39
+ install_tuist
40
+
41
+ install_hooks
42
+ end
43
+
44
+ private
45
+
46
+ def install_hooks
47
+ hooks_directory = File.expand_path(File.join(File.dirname(__FILE__)))
48
+ install_hooks_path = File.join(hooks_directory, 'install-hooks.rb')
49
+
50
+ unless File.exist?(install_hooks_path)
51
+ puts "O arquivo install-hooks.rb não foi encontrado em #{hooks_directory}."
52
+ return
53
+ end
54
+
55
+ puts "Executando install_hooks..."
56
+
57
+ Dir.chdir(hooks_directory) do
58
+ success = system('ruby install-hooks.rb')
59
+
60
+ if success
61
+ puts "✅ Hooks instalados com sucesso!"
62
+ else
63
+ puts "❌ Erro ao executar pre-hook"
64
+ end
65
+ end
66
+ end
67
+
68
+ def install_tuist
69
+ tuistExists = system("tuist version")
70
+ unless tuistExists
71
+ puts "Instalando o Tuist".green
72
+ system("brew tap tuist/tuist")
73
+ system("brew install tuist")
74
+ puts "✅ Tuist instalado com sucesso"
75
+ end
76
+ end
52
77
  end
53
78
  end
@@ -100,14 +100,16 @@ module IOS
100
100
  podDevInjection += "\n pod 'SBLoggerInterface', path: '../../../CoreModules/SBLogger'"
101
101
  if @mock_network == :yes
102
102
  podDevInjection += "\n pod 'SBUserSessionInterface', path: '../../../CoreModules/SBUserSession'"
103
- podDevInjection += "\n pod 'SBNetwork', path: '../../../CoreModules/SBNetwork'"
103
+ podDevInjection += "\n pod 'SBNetworkOld', path: '../../../CoreModules/SBNetworkOld'"
104
104
  podDevInjection += "\n pod 'Fetcher', path: '../../../CoreModules/Fetcher'"
105
105
  podDevInjection += "\n pod 'Flow', path: '../../../CoreModules/Flow'"
106
+ podDevInjection += "\n pod 'SecFoundation', path: '../../../CoreModules/SecFoundation'"
106
107
  podDevInjection += "\n pod 'SBSecurity', path: '../../../CoreModules/SBSecurity'"
107
108
  podDevInjection += "\n pod 'SBSecurityInterface', path: '../../../CoreModules/SBSecurity'"
108
109
  podDevInjection += "\n pod 'SBFeatureTogglesKitInterface', path: '../../../CoreModules/SBFeatureTogglesKit'"
109
110
  end
110
111
  podDevInjection += "\n pod 'SBAssets', :git => 'git@bitbucket.org:acelera/ios-ds-assets.git', :branch => 'master'"
112
+ podDevInjection += "\n pod 'IDwallToolkit', :git => 'git@bitbucket.org:acelera/ios-frameworks.git', :branch => 'master'"
111
113
 
112
114
  end
113
115
 
@@ -1,5 +1,6 @@
1
1
  require 'ios/module/setup/MessageBank'
2
2
  require 'ios/module/setup/ConfigureSwift'
3
+ require 'ios/module/setup/TuistCommands'
3
4
 
4
5
  require 'colored2'
5
6
  require 'fileutils'
@@ -7,7 +8,7 @@ require 'fileutils'
7
8
  module IOS
8
9
  class TemplateConfigurator
9
10
 
10
- attr_reader :pod_name, :pods_for_podfile, :prefixes, :project_filename, :template_path
11
+ attr_reader :pod_name, :pods_for_podfile, :prefixes, :project_filename, :template_path, :tuist_commands
11
12
 
12
13
  def initialize()
13
14
  @pod_name = ""
@@ -17,6 +18,7 @@ module IOS
17
18
  dir = App.gem_path
18
19
  @template_path = File.join(dir, "lib/ios/module/templates")
19
20
  @message_bank = MessageBank.new(self)
21
+ @tuist_commands = TuistCommands.new
20
22
  end
21
23
 
22
24
  def printMessage(message)
@@ -87,8 +89,7 @@ module IOS
87
89
  ConfigureSwift.perform(configurator: self)
88
90
 
89
91
  run_swiftgen
90
- run_pod_install
91
-
92
+ run_tuist_generate
92
93
  @message_bank.done_message
93
94
  end
94
95
 
@@ -106,11 +107,10 @@ module IOS
106
107
  return is_valid ? nil : github_user_name
107
108
  end
108
109
 
109
- def run_pod_install
110
+ def run_tuist_generate
110
111
  if Dir.exists? "Example"
111
112
  Dir.chdir "Example" do
112
- printMessage("Rodando " + "pod install".magenta + " no projeto Exemplo")
113
- @message_bank.run_command "pod install"
113
+ @tuist_commands.generateExample(false)
114
114
  printDone
115
115
  end
116
116
  end
@@ -125,4 +125,4 @@ module IOS
125
125
  end
126
126
 
127
127
  end
128
- end
128
+ end
@@ -0,0 +1,27 @@
1
+ module IOS
2
+ class TuistCommands
3
+ def initialize()
4
+ end
5
+
6
+ def generateExample(open_workspace = true)
7
+ current_directory = File.basename(Dir.pwd)
8
+ if current_directory == "Example"
9
+ puts "Rodando " + "tuist generate".magenta + " no projeto Exemplo"
10
+ system('tuist generate --no-open')
11
+ if File.exist?("Podfile")
12
+ puts "Rodando " + "pod install".magenta + " no projeto Exemplo"
13
+ system("pod install")
14
+ else
15
+ puts "\n❌ Arquivo Podfile não encontrado!".red
16
+ end
17
+ if File.exist?("Example.xcworkspace")
18
+ system('open Example.xcworkspace') if open_workspace
19
+ else
20
+ puts "\n❌ Arquivo Example.xcworkspace não encontrado!".red
21
+ end
22
+ else
23
+ puts "Navegue até o diretório do Example!".red
24
+ end
25
+ end
26
+ end
27
+ end
@@ -1,10 +1,9 @@
1
- platform :ios, '13.0'
1
+ platform :ios, '15.0'
2
2
 
3
3
  inhibit_all_warnings!
4
4
  use_modular_headers!
5
5
 
6
6
  target 'Example' do
7
-
8
7
  project 'Example.xcodeproj'
9
8
 
10
9
  ##################
@@ -17,6 +16,4 @@ target 'Example' do
17
16
  ## INTERNAL PODS ##
18
17
  #######################
19
18
 
20
-
21
-
22
19
  end
@@ -0,0 +1,67 @@
1
+ import ProjectDescription
2
+ import Foundation
3
+
4
+ func getSettingsFromXCConfigFile(at path: String) -> [String: SettingValue]? {
5
+ do {
6
+ let contents = try String(contentsOfFile: path)
7
+ return convertXCConfigFileContentToSettingsDictionary(contentsOfFile: contents)
8
+ } catch {
9
+ print("Error reading file at \(path): \(error)")
10
+ return nil
11
+ }
12
+ }
13
+
14
+ func convertXCConfigFileContentToSettingsDictionary(contentsOfFile contents: String) -> [String: SettingValue] {
15
+ var settings = [String: SettingValue]()
16
+ let lines = contents.split(whereSeparator: \.isNewline)
17
+ lines.forEach { line in
18
+ let parts = line.split(separator: "=", maxSplits: 1)
19
+ if parts.count == 2 {
20
+ let key = parts[0].trimmingCharacters(in: .whitespaces)
21
+ let rawValue = parts[1].trimmingCharacters(in: .whitespaces)
22
+ if rawValue.contains(" ") {
23
+ let arrayValue = rawValue.split(separator: " ").map { String($0) }
24
+ settings[key] = .array(arrayValue)
25
+ } else {
26
+ settings[key] = .string(rawValue)
27
+ }
28
+ }
29
+ }
30
+ return settings
31
+ }
32
+
33
+ let targetSettings = getSettingsFromXCConfigFile(at: "xcconfigs/ExampleTarget.xcconfig")
34
+ let testAction = TestAction.testPlans(["Example/Example.xctestplan"])
35
+ let buildAction = BuildAction.buildAction(targets: [TargetReference.target("Example")])
36
+
37
+ let project = Project(
38
+ name: "Example",
39
+ settings: .settings(base: ["IPHONEOS_DEPLOYMENT_TARGET": "15.0"],
40
+ configurations: [
41
+ .debug(name: "Debug", xcconfig: "xcconfigs/ExampleProject.xcconfig")
42
+ ]),
43
+ targets: [
44
+ .target(name: "Example",
45
+ destinations: [.iPhone],
46
+ product: .app,
47
+ bundleId: "raizen.Acelera.Example",
48
+ deploymentTargets: .iOS("15.0"),
49
+ sources: ["Example/*.swift", "Example/**/*.swift"],
50
+ resources: ["Example/Assets.xcassets", "Example/Base.lproj/LaunchScreen.storyboard"],
51
+ settings: .settings(base: ["IPHONEOS_DEPLOYMENT_TARGET": "15.0"],
52
+ configurations: [
53
+ .debug(name: "Debug",
54
+ settings: targetSettings!
55
+ )
56
+ ])
57
+ )
58
+ ],
59
+ schemes: [
60
+ .scheme(name: "Example",
61
+ shared: true,
62
+ hidden: false,
63
+ buildAction: buildAction,
64
+ testAction: testAction
65
+ )
66
+ ]
67
+ )
@@ -0,0 +1,9 @@
1
+ import ProjectDescription
2
+
3
+ let config = Config(
4
+ compatibleXcodeVersions: .upToNextMajor("15"),
5
+ cloud: nil,
6
+ swiftVersion: "5.0",
7
+ plugins: [],
8
+ generationOptions: .options(enforceExplicitDependencies: true)
9
+ )
@@ -0,0 +1,60 @@
1
+ ALWAYS_SEARCH_USER_PATHS=NO
2
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED=YES
3
+ CLANG_ANALYZER_NONNULL=YES
4
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION=YES_AGGRESSIVE
5
+ CLANG_CXX_LANGUAGE_STANDARD=gnu++17
6
+ CLANG_CXX_LIBRARY=libc++
7
+ CLANG_ENABLE_MODULES=YES
8
+ CLANG_ENABLE_OBJC_ARC=YES
9
+ CLANG_ENABLE_OBJC_WEAK=YES
10
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
11
+ CLANG_WARN_BOOL_CONVERSION=YES
12
+ CLANG_WARN_COMMA=YES
13
+ CLANG_WARN_CONSTANT_CONVERSION=YES
14
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS=YES
15
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
16
+ CLANG_WARN_DOCUMENTATION_COMMENTS=YES
17
+ CLANG_WARN_EMPTY_BODY=YES
18
+ CLANG_WARN_ENUM_CONVERSION=YES
19
+ CLANG_WARN_INFINITE_RECURSION=YES
20
+ CLANG_WARN_INT_CONVERSION=YES
21
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
22
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF=YES
23
+ CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
24
+ CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
25
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER=YES
26
+ CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
27
+ CLANG_WARN_STRICT_PROTOTYPES=YES
28
+ CLANG_WARN_SUSPICIOUS_MOVE=YES
29
+ CLANG_WARN_UNGUARDED_AVAILABILITY=YES_AGGRESSIVE
30
+ CLANG_WARN_UNREACHABLE_CODE=YES
31
+ CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
32
+ COPY_PHASE_STRIP=NO
33
+ ENABLE_STRICT_OBJC_MSGSEND=YES
34
+ GCC_C_LANGUAGE_STANDARD=gnu11
35
+ GCC_NO_COMMON_BLOCKS=YES
36
+ GCC_WARN_64_TO_32_BIT_CONVERSION=YES
37
+ GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
38
+ GCC_WARN_UNDECLARED_SELECTOR=YES
39
+ GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
40
+ GCC_WARN_UNUSED_FUNCTION=YES
41
+ GCC_WARN_UNUSED_VARIABLE=YES
42
+ IPHONEOS_DEPLOYMENT_TARGET=15.0
43
+ MTL_FAST_MATH=YES
44
+ SDKROOT=iphoneos
45
+
46
+ DEBUG_INFORMATION_FORMAT[config=Debug]=dwarf
47
+ DEBUG_INFORMATION_FORMAT[config=Release]=dwarf-with-dsym
48
+ ENABLE_NS_ASSERTIONS[config=Release]=NO
49
+ ENABLE_TESTABILITY[config=Debug]=YES
50
+ GCC_DYNAMIC_NO_PIC[config=Debug]=NO
51
+ GCC_OPTIMIZATION_LEVEL[config=Debug]=0
52
+ GCC_PREPROCESSOR_DEFINITIONS[config=Debug]=DEBUG=1 $(inherited)
53
+ MTL_ENABLE_DEBUG_INFO[config=Debug]=INCLUDE_SOURCE
54
+ MTL_ENABLE_DEBUG_INFO[config=Release]=NO
55
+ ONLY_ACTIVE_ARCH[config=Debug]=YES
56
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS[config=Debug]=DEBUG
57
+ SWIFT_COMPILATION_MODE[config=Release]=wholemodule
58
+ SWIFT_OPTIMIZATION_LEVEL[config=Debug]=-Onone
59
+ SWIFT_OPTIMIZATION_LEVEL[config=Release]=-O
60
+ VALIDATE_PRODUCT[config=Release]=YES
@@ -0,0 +1,22 @@
1
+ ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
2
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME=AccentColor
3
+ CODE_SIGN_STYLE=Automatic
4
+ CURRENT_PROJECT_VERSION=1
5
+ DEVELOPMENT_TEAM=B9EVGGBS8N
6
+ GENERATE_INFOPLIST_FILE=YES
7
+ INFOPLIST_FILE=Example/Info.plist
8
+ INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents=YES
9
+ INFOPLIST_KEY_UILaunchStoryboardName=LaunchScreen
10
+ INFOPLIST_KEY_UISupportedInterfaceOrientations=UIInterfaceOrientationPortrait
11
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad=UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
12
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone=UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
13
+ IPHONEOS_DEPLOYMENT_TARGET=15.0
14
+ MARKETING_VERSION=1.0
15
+ PRODUCT_BUNDLE_IDENTIFIER=raizen.Acelera.Example
16
+ PRODUCT_NAME=$(TARGET_NAME)
17
+ SWIFT_EMIT_LOC_STRINGS=YES
18
+ SWIFT_VERSION=5.0
19
+ TARGETED_DEVICE_FAMILY=1
20
+
21
+ LD_RUNPATH_SEARCH_PATHS[config=Debug]=$(inherited) @executable_path/Frameworks
22
+ LD_RUNPATH_SEARCH_PATHS[config=Release]=$(inherited) @executable_path/Frameworks
@@ -6,7 +6,7 @@ Pod::Spec.new do |s|
6
6
  s.homepage = 'https://bitbucket.org/acelera'
7
7
  s.author = { '${USER_NAME}' => '${USER_EMAIL}' }
8
8
  s.source = { :git => 'https://bitbucket.org/acelera/${POD_NAME}', :tag => s.version.to_s }
9
- s.platform = :ios, '13.0'
9
+ s.platform = :ios, '15.0'
10
10
  s.public_header_files = '${POD_NAME}/Resources/*.h'
11
11
 
12
12
  s.preserve_paths = '${POD_NAME}/Sources/**/*'
@@ -28,4 +28,4 @@ Pod::Spec.new do |s|
28
28
 
29
29
  ${FEATURE_TEST}
30
30
 
31
- end
31
+ end
@@ -6,19 +6,19 @@ Pod::Spec.new do |s|
6
6
  s.homepage = 'https://bitbucket.org/acelera'
7
7
  s.author = { '${USER_NAME}' => '${USER_EMAIL}' }
8
8
  s.source = { :git => 'https://bitbucket.org/acelera/${POD_NAME}Interface', :tag => s.version.to_s }
9
- s.platform = :ios, '13.0'
9
+ s.platform = :ios, '15.0'
10
10
 
11
11
  s.source_files = '${POD_NAME}Interface/**/*'
12
12
  s.exclude_files = '${POD_NAME}Interface/Resources/*.plist'
13
-
14
-
13
+
14
+
15
15
 
16
16
  # INTERNAL DEPENDENCY
17
17
  ${FEATURE_INTERNAL}
18
-
18
+
19
19
 
20
20
  # THIRTY PARTY
21
21
 
22
22
 
23
23
 
24
- end
24
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shellboxCLI
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.16
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ShellBox App
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-29 00:00:00.000000000 Z
11
+ date: 2024-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rugged
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.7'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.7'
55
69
  description: A ShellBox CLI to generate some patterns and templates
56
70
  email:
57
71
  - rodrigo.martins@raizen.com
@@ -64,14 +78,14 @@ files:
64
78
  - bin/install-hooks
65
79
  - bin/shellbox
66
80
  - lib/ShellboxCLI.rb
81
+ - lib/ios/hooks/pre-commit
82
+ - lib/ios/install-hooks.rb
67
83
  - lib/ios/iosOption.rb
68
84
  - lib/ios/module/setup/ConfigureSwift.rb
69
85
  - lib/ios/module/setup/MessageBank.rb
70
86
  - lib/ios/module/setup/ProjectManipulator.rb
71
87
  - lib/ios/module/setup/Template_Configurator.rb
72
- - lib/ios/module/templates/Example/Example/Example.xcodeproj/project.pbxproj
73
- - lib/ios/module/templates/Example/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata
74
- - lib/ios/module/templates/Example/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
88
+ - lib/ios/module/setup/TuistCommands.rb
75
89
  - lib/ios/module/templates/Example/Example/Example/AppDelegate.swift
76
90
  - lib/ios/module/templates/Example/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json
77
91
  - lib/ios/module/templates/Example/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -81,6 +95,10 @@ files:
81
95
  - lib/ios/module/templates/Example/Example/Example/SceneDelegate.swift
82
96
  - lib/ios/module/templates/Example/Example/Example/ViewController.swift
83
97
  - lib/ios/module/templates/Example/Example/Podfile
98
+ - lib/ios/module/templates/Example/Example/Project.swift
99
+ - lib/ios/module/templates/Example/Example/Tuist/Config.swift
100
+ - lib/ios/module/templates/Example/Example/xcconfigs/ExampleProject.xcconfig
101
+ - lib/ios/module/templates/Example/Example/xcconfigs/ExampleTarget.xcconfig
84
102
  - lib/ios/module/templates/Feature/Header_template
85
103
  - lib/ios/module/templates/Feature/Info_template
86
104
  - lib/ios/module/templates/Feature/bundle_template
@@ -91,7 +109,7 @@ homepage: https://bitbucket.org/acelera
91
109
  licenses:
92
110
  - MIT
93
111
  metadata: {}
94
- post_install_message:
112
+ post_install_message:
95
113
  rdoc_options: []
96
114
  require_paths:
97
115
  - lib
@@ -106,8 +124,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
124
  - !ruby/object:Gem::Version
107
125
  version: '0'
108
126
  requirements: []
109
- rubygems_version: 3.0.3.1
110
- signing_key:
127
+ rubygems_version: 3.5.11
128
+ signing_key:
111
129
  specification_version: 4
112
130
  summary: ShellBox CLI
113
131
  test_files: []
@@ -1,355 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 55;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- 19F9FFB52731C24D00B95474 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F9FFB42731C24D00B95474 /* AppDelegate.swift */; };
11
- 19F9FFB72731C24D00B95474 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F9FFB62731C24D00B95474 /* SceneDelegate.swift */; };
12
- 19F9FFB92731C24D00B95474 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F9FFB82731C24D00B95474 /* ViewController.swift */; };
13
- 19F9FFBE2731C25200B95474 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19F9FFBD2731C25200B95474 /* Assets.xcassets */; };
14
- 19F9FFC12731C25200B95474 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 19F9FFBF2731C25200B95474 /* LaunchScreen.storyboard */; };
15
- /* End PBXBuildFile section */
16
-
17
- /* Begin PBXFileReference section */
18
- 19F9FFB12731C24D00B95474 /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
19
- 19F9FFB42731C24D00B95474 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
20
- 19F9FFB62731C24D00B95474 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
21
- 19F9FFB82731C24D00B95474 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
22
- 19F9FFBD2731C25200B95474 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
23
- 19F9FFC02731C25200B95474 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
24
- 19F9FFC22731C25200B95474 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
25
- /* End PBXFileReference section */
26
-
27
- /* Begin PBXFrameworksBuildPhase section */
28
- 19F9FFAE2731C24D00B95474 /* Frameworks */ = {
29
- isa = PBXFrameworksBuildPhase;
30
- buildActionMask = 2147483647;
31
- files = (
32
- );
33
- runOnlyForDeploymentPostprocessing = 0;
34
- };
35
- /* End PBXFrameworksBuildPhase section */
36
-
37
- /* Begin PBXGroup section */
38
- 19F9FFA82731C24D00B95474 = {
39
- isa = PBXGroup;
40
- children = (
41
- 19F9FFB32731C24D00B95474 /* Example */,
42
- 19F9FFB22731C24D00B95474 /* Products */,
43
- );
44
- sourceTree = "<group>";
45
- };
46
- 19F9FFB22731C24D00B95474 /* Products */ = {
47
- isa = PBXGroup;
48
- children = (
49
- 19F9FFB12731C24D00B95474 /* Example.app */,
50
- );
51
- name = Products;
52
- sourceTree = "<group>";
53
- };
54
- 19F9FFB32731C24D00B95474 /* Example */ = {
55
- isa = PBXGroup;
56
- children = (
57
- 19F9FFB42731C24D00B95474 /* AppDelegate.swift */,
58
- 19F9FFB62731C24D00B95474 /* SceneDelegate.swift */,
59
- 19F9FFB82731C24D00B95474 /* ViewController.swift */,
60
- 19F9FFBD2731C25200B95474 /* Assets.xcassets */,
61
- 19F9FFBF2731C25200B95474 /* LaunchScreen.storyboard */,
62
- 19F9FFC22731C25200B95474 /* Info.plist */,
63
- );
64
- path = Example;
65
- sourceTree = "<group>";
66
- };
67
- /* End PBXGroup section */
68
-
69
- /* Begin PBXNativeTarget section */
70
- 19F9FFB02731C24D00B95474 /* Example */ = {
71
- isa = PBXNativeTarget;
72
- buildConfigurationList = 19F9FFC52731C25200B95474 /* Build configuration list for PBXNativeTarget "Example" */;
73
- buildPhases = (
74
- 19F9FFAD2731C24D00B95474 /* Sources */,
75
- 19F9FFAE2731C24D00B95474 /* Frameworks */,
76
- 19F9FFAF2731C24D00B95474 /* Resources */,
77
- );
78
- buildRules = (
79
- );
80
- dependencies = (
81
- );
82
- name = Example;
83
- productName = Example;
84
- productReference = 19F9FFB12731C24D00B95474 /* Example.app */;
85
- productType = "com.apple.product-type.application";
86
- };
87
- /* End PBXNativeTarget section */
88
-
89
- /* Begin PBXProject section */
90
- 19F9FFA92731C24D00B95474 /* Project object */ = {
91
- isa = PBXProject;
92
- attributes = {
93
- BuildIndependentTargetsInParallel = 1;
94
- LastSwiftUpdateCheck = 1310;
95
- LastUpgradeCheck = 1310;
96
- TargetAttributes = {
97
- 19F9FFB02731C24D00B95474 = {
98
- CreatedOnToolsVersion = 13.1;
99
- };
100
- };
101
- };
102
- buildConfigurationList = 19F9FFAC2731C24D00B95474 /* Build configuration list for PBXProject "Example" */;
103
- compatibilityVersion = "Xcode 13.0";
104
- developmentRegion = en;
105
- hasScannedForEncodings = 0;
106
- knownRegions = (
107
- en,
108
- Base,
109
- );
110
- mainGroup = 19F9FFA82731C24D00B95474;
111
- productRefGroup = 19F9FFB22731C24D00B95474 /* Products */;
112
- projectDirPath = "";
113
- projectRoot = "";
114
- targets = (
115
- 19F9FFB02731C24D00B95474 /* Example */,
116
- );
117
- };
118
- /* End PBXProject section */
119
-
120
- /* Begin PBXResourcesBuildPhase section */
121
- 19F9FFAF2731C24D00B95474 /* Resources */ = {
122
- isa = PBXResourcesBuildPhase;
123
- buildActionMask = 2147483647;
124
- files = (
125
- 19F9FFC12731C25200B95474 /* LaunchScreen.storyboard in Resources */,
126
- 19F9FFBE2731C25200B95474 /* Assets.xcassets in Resources */,
127
- );
128
- runOnlyForDeploymentPostprocessing = 0;
129
- };
130
- /* End PBXResourcesBuildPhase section */
131
-
132
- /* Begin PBXSourcesBuildPhase section */
133
- 19F9FFAD2731C24D00B95474 /* Sources */ = {
134
- isa = PBXSourcesBuildPhase;
135
- buildActionMask = 2147483647;
136
- files = (
137
- 19F9FFB92731C24D00B95474 /* ViewController.swift in Sources */,
138
- 19F9FFB52731C24D00B95474 /* AppDelegate.swift in Sources */,
139
- 19F9FFB72731C24D00B95474 /* SceneDelegate.swift in Sources */,
140
- );
141
- runOnlyForDeploymentPostprocessing = 0;
142
- };
143
- /* End PBXSourcesBuildPhase section */
144
-
145
- /* Begin PBXVariantGroup section */
146
- 19F9FFBF2731C25200B95474 /* LaunchScreen.storyboard */ = {
147
- isa = PBXVariantGroup;
148
- children = (
149
- 19F9FFC02731C25200B95474 /* Base */,
150
- );
151
- name = LaunchScreen.storyboard;
152
- sourceTree = "<group>";
153
- };
154
- /* End PBXVariantGroup section */
155
-
156
- /* Begin XCBuildConfiguration section */
157
- 19F9FFC32731C25200B95474 /* Debug */ = {
158
- isa = XCBuildConfiguration;
159
- buildSettings = {
160
- ALWAYS_SEARCH_USER_PATHS = NO;
161
- CLANG_ANALYZER_NONNULL = YES;
162
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
163
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
164
- CLANG_CXX_LIBRARY = "libc++";
165
- CLANG_ENABLE_MODULES = YES;
166
- CLANG_ENABLE_OBJC_ARC = YES;
167
- CLANG_ENABLE_OBJC_WEAK = YES;
168
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
169
- CLANG_WARN_BOOL_CONVERSION = YES;
170
- CLANG_WARN_COMMA = YES;
171
- CLANG_WARN_CONSTANT_CONVERSION = YES;
172
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
173
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
174
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
175
- CLANG_WARN_EMPTY_BODY = YES;
176
- CLANG_WARN_ENUM_CONVERSION = YES;
177
- CLANG_WARN_INFINITE_RECURSION = YES;
178
- CLANG_WARN_INT_CONVERSION = YES;
179
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
180
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
181
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
182
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
183
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
184
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
185
- CLANG_WARN_STRICT_PROTOTYPES = YES;
186
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
187
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
188
- CLANG_WARN_UNREACHABLE_CODE = YES;
189
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
190
- COPY_PHASE_STRIP = NO;
191
- DEBUG_INFORMATION_FORMAT = dwarf;
192
- ENABLE_STRICT_OBJC_MSGSEND = YES;
193
- ENABLE_TESTABILITY = YES;
194
- GCC_C_LANGUAGE_STANDARD = gnu11;
195
- GCC_DYNAMIC_NO_PIC = NO;
196
- GCC_NO_COMMON_BLOCKS = YES;
197
- GCC_OPTIMIZATION_LEVEL = 0;
198
- GCC_PREPROCESSOR_DEFINITIONS = (
199
- "DEBUG=1",
200
- "$(inherited)",
201
- );
202
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
203
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
204
- GCC_WARN_UNDECLARED_SELECTOR = YES;
205
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
206
- GCC_WARN_UNUSED_FUNCTION = YES;
207
- GCC_WARN_UNUSED_VARIABLE = YES;
208
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
209
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
210
- MTL_FAST_MATH = YES;
211
- ONLY_ACTIVE_ARCH = YES;
212
- SDKROOT = iphoneos;
213
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
214
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
215
- };
216
- name = Debug;
217
- };
218
- 19F9FFC42731C25200B95474 /* Release */ = {
219
- isa = XCBuildConfiguration;
220
- buildSettings = {
221
- ALWAYS_SEARCH_USER_PATHS = NO;
222
- CLANG_ANALYZER_NONNULL = YES;
223
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
224
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
225
- CLANG_CXX_LIBRARY = "libc++";
226
- CLANG_ENABLE_MODULES = YES;
227
- CLANG_ENABLE_OBJC_ARC = YES;
228
- CLANG_ENABLE_OBJC_WEAK = YES;
229
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
230
- CLANG_WARN_BOOL_CONVERSION = YES;
231
- CLANG_WARN_COMMA = YES;
232
- CLANG_WARN_CONSTANT_CONVERSION = YES;
233
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
234
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
235
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
236
- CLANG_WARN_EMPTY_BODY = YES;
237
- CLANG_WARN_ENUM_CONVERSION = YES;
238
- CLANG_WARN_INFINITE_RECURSION = YES;
239
- CLANG_WARN_INT_CONVERSION = YES;
240
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
241
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
242
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
243
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
244
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
245
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
246
- CLANG_WARN_STRICT_PROTOTYPES = YES;
247
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
248
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
249
- CLANG_WARN_UNREACHABLE_CODE = YES;
250
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
251
- COPY_PHASE_STRIP = NO;
252
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
253
- ENABLE_NS_ASSERTIONS = NO;
254
- ENABLE_STRICT_OBJC_MSGSEND = YES;
255
- GCC_C_LANGUAGE_STANDARD = gnu11;
256
- GCC_NO_COMMON_BLOCKS = YES;
257
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
258
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
259
- GCC_WARN_UNDECLARED_SELECTOR = YES;
260
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
261
- GCC_WARN_UNUSED_FUNCTION = YES;
262
- GCC_WARN_UNUSED_VARIABLE = YES;
263
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
264
- MTL_ENABLE_DEBUG_INFO = NO;
265
- MTL_FAST_MATH = YES;
266
- SDKROOT = iphoneos;
267
- SWIFT_COMPILATION_MODE = wholemodule;
268
- SWIFT_OPTIMIZATION_LEVEL = "-O";
269
- VALIDATE_PRODUCT = YES;
270
- };
271
- name = Release;
272
- };
273
- 19F9FFC62731C25200B95474 /* Debug */ = {
274
- isa = XCBuildConfiguration;
275
- buildSettings = {
276
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
277
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
278
- CODE_SIGN_STYLE = Automatic;
279
- CURRENT_PROJECT_VERSION = 1;
280
- DEVELOPMENT_TEAM = 88A2J39RZ6;
281
- GENERATE_INFOPLIST_FILE = YES;
282
- INFOPLIST_FILE = Example/Info.plist;
283
- INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
284
- INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
285
- INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
286
- INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
287
- INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
288
- IPHONEOS_DEPLOYMENT_TARGET = 13.0;
289
- LD_RUNPATH_SEARCH_PATHS = (
290
- "$(inherited)",
291
- "@executable_path/Frameworks",
292
- );
293
- MARKETING_VERSION = 1.0;
294
- PRODUCT_BUNDLE_IDENTIFIER = raizen.Acelera.Example;
295
- PRODUCT_NAME = "$(TARGET_NAME)";
296
- SWIFT_EMIT_LOC_STRINGS = YES;
297
- SWIFT_VERSION = 5.0;
298
- TARGETED_DEVICE_FAMILY = 1;
299
- };
300
- name = Debug;
301
- };
302
- 19F9FFC72731C25200B95474 /* Release */ = {
303
- isa = XCBuildConfiguration;
304
- buildSettings = {
305
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
306
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
307
- CODE_SIGN_STYLE = Automatic;
308
- CURRENT_PROJECT_VERSION = 1;
309
- DEVELOPMENT_TEAM = 88A2J39RZ6;
310
- GENERATE_INFOPLIST_FILE = YES;
311
- INFOPLIST_FILE = Example/Info.plist;
312
- INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
313
- INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
314
- INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
315
- INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
316
- INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
317
- IPHONEOS_DEPLOYMENT_TARGET = 13.0;
318
- LD_RUNPATH_SEARCH_PATHS = (
319
- "$(inherited)",
320
- "@executable_path/Frameworks",
321
- );
322
- MARKETING_VERSION = 1.0;
323
- PRODUCT_BUNDLE_IDENTIFIER = raizen.Acelera.Example;
324
- PRODUCT_NAME = "$(TARGET_NAME)";
325
- SWIFT_EMIT_LOC_STRINGS = YES;
326
- SWIFT_VERSION = 5.0;
327
- TARGETED_DEVICE_FAMILY = 1;
328
- };
329
- name = Release;
330
- };
331
- /* End XCBuildConfiguration section */
332
-
333
- /* Begin XCConfigurationList section */
334
- 19F9FFAC2731C24D00B95474 /* Build configuration list for PBXProject "Example" */ = {
335
- isa = XCConfigurationList;
336
- buildConfigurations = (
337
- 19F9FFC32731C25200B95474 /* Debug */,
338
- 19F9FFC42731C25200B95474 /* Release */,
339
- );
340
- defaultConfigurationIsVisible = 0;
341
- defaultConfigurationName = Release;
342
- };
343
- 19F9FFC52731C25200B95474 /* Build configuration list for PBXNativeTarget "Example" */ = {
344
- isa = XCConfigurationList;
345
- buildConfigurations = (
346
- 19F9FFC62731C25200B95474 /* Debug */,
347
- 19F9FFC72731C25200B95474 /* Release */,
348
- );
349
- defaultConfigurationIsVisible = 0;
350
- defaultConfigurationName = Release;
351
- };
352
- /* End XCConfigurationList section */
353
- };
354
- rootObject = 19F9FFA92731C24D00B95474 /* Project object */;
355
- }
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Workspace
3
- version = "1.0">
4
- <FileRef
5
- location = "self:">
6
- </FileRef>
7
- </Workspace>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>IDEDidComputeMac32BitWarning</key>
6
- <true/>
7
- </dict>
8
- </plist>