shellboxCLI 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/bin/setup +8 -0
 - data/bin/shellbox +6 -0
 - data/lib/ShellboxCLI.rb +28 -0
 - data/lib/ios/iosOption.rb +31 -0
 - data/lib/ios/module/setup/ConfigureSwift.rb +33 -0
 - data/lib/ios/module/setup/MessageBank.rb +52 -0
 - data/lib/ios/module/setup/ProjectManipulator.rb +269 -0
 - data/lib/ios/module/setup/Template_Configurator.rb +128 -0
 - data/lib/ios/module/templates/Example/Example/Example/AppDelegate.swift +24 -0
 - data/lib/ios/module/templates/Example/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
 - data/lib/ios/module/templates/Example/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
 - data/lib/ios/module/templates/Example/Example/Example/Assets.xcassets/Contents.json +6 -0
 - data/lib/ios/module/templates/Example/Example/Example/Base.lproj/LaunchScreen.storyboard +25 -0
 - data/lib/ios/module/templates/Example/Example/Example/Info.plist +23 -0
 - data/lib/ios/module/templates/Example/Example/Example/SceneDelegate.swift +19 -0
 - data/lib/ios/module/templates/Example/Example/Example/ViewController.swift +13 -0
 - data/lib/ios/module/templates/Example/Example/Example.xcodeproj/project.pbxproj +355 -0
 - data/lib/ios/module/templates/Example/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
 - data/lib/ios/module/templates/Example/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
 - data/lib/ios/module/templates/Example/Example/Podfile +22 -0
 - data/lib/ios/module/templates/Feature/Header_template +9 -0
 - data/lib/ios/module/templates/Feature/Info_template +22 -0
 - data/lib/ios/module/templates/Feature/bundle_template +20 -0
 - data/lib/ios/module/templates/NAME.podspec +31 -0
 - data/lib/ios/module/templates/NAMEInterface.podspec +24 -0
 - data/lib/ios/module/templates/swiftgen.yml +13 -0
 - metadata +113 -0
 
| 
         @@ -0,0 +1,24 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Pod::Spec.new do |s|
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
                s.name              = '${POD_NAME}Interface'
         
     | 
| 
      
 4 
     | 
    
         
            +
                s.version           = '0.1.0'
         
     | 
| 
      
 5 
     | 
    
         
            +
                s.summary           = '${POD_NAME}Interface Module'
         
     | 
| 
      
 6 
     | 
    
         
            +
                s.homepage          = 'https://bitbucket.org/acelera'
         
     | 
| 
      
 7 
     | 
    
         
            +
                s.author            = { '${USER_NAME}' => '${USER_EMAIL}' }
         
     | 
| 
      
 8 
     | 
    
         
            +
                s.source            = { :git => 'https://bitbucket.org/acelera/${POD_NAME}Interface', :tag => s.version.to_s }
         
     | 
| 
      
 9 
     | 
    
         
            +
                s.platform          = :ios, '13.0'
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
                s.source_files      = '${POD_NAME}Interface/**/*'
         
     | 
| 
      
 12 
     | 
    
         
            +
                s.exclude_files     = '${POD_NAME}Interface/Resources/*.plist'
         
     | 
| 
      
 13 
     | 
    
         
            +
                
         
     | 
| 
      
 14 
     | 
    
         
            +
                
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
                # INTERNAL DEPENDENCY
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
                
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
                # THIRTY PARTY
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,13 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            strings:
         
     | 
| 
      
 2 
     | 
    
         
            +
              inputs:
         
     | 
| 
      
 3 
     | 
    
         
            +
                - ${POD_NAME}/Resources/Localizable.strings
         
     | 
| 
      
 4 
     | 
    
         
            +
              outputs:
         
     | 
| 
      
 5 
     | 
    
         
            +
                templatePath: ../../scripts/swiftgen/custom-strings-template.stencil
         
     | 
| 
      
 6 
     | 
    
         
            +
                output: ${POD_NAME}/Resources/Strings.swift
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            xcassets:
         
     | 
| 
      
 9 
     | 
    
         
            +
              inputs:
         
     | 
| 
      
 10 
     | 
    
         
            +
                - ${POD_NAME}/Resources/Assets.xcassets
         
     | 
| 
      
 11 
     | 
    
         
            +
              outputs:
         
     | 
| 
      
 12 
     | 
    
         
            +
                templatePath: ../../scripts/swiftgen/internal-assets-template.stencil
         
     | 
| 
      
 13 
     | 
    
         
            +
                output: ${POD_NAME}/Resources/Assets.swift
         
     | 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,113 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: shellboxCLI
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.1.0
         
     | 
| 
      
 5 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 6 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 7 
     | 
    
         
            +
            - ShellBox App
         
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 9 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 10 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2022-07-25 00:00:00.000000000 Z
         
     | 
| 
      
 12 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 13 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 14 
     | 
    
         
            +
              name: thor
         
     | 
| 
      
 15 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 16 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 17 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 19 
     | 
    
         
            +
                    version: '1.2'
         
     | 
| 
      
 20 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 21 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 22 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 23 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 24 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 25 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 26 
     | 
    
         
            +
                    version: '1.2'
         
     | 
| 
      
 27 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 28 
     | 
    
         
            +
              name: bundler
         
     | 
| 
      
 29 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 30 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 31 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 33 
     | 
    
         
            +
                    version: '1.17'
         
     | 
| 
      
 34 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 35 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 36 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 37 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 38 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 39 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 40 
     | 
    
         
            +
                    version: '1.17'
         
     | 
| 
      
 41 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 42 
     | 
    
         
            +
              name: rake
         
     | 
| 
      
 43 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 44 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 45 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 47 
     | 
    
         
            +
                    version: '10.0'
         
     | 
| 
      
 48 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 49 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 50 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 51 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 52 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 53 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 54 
     | 
    
         
            +
                    version: '10.0'
         
     | 
| 
      
 55 
     | 
    
         
            +
            description: A ShellBox CLI to generate some patterns and templates
         
     | 
| 
      
 56 
     | 
    
         
            +
            email:
         
     | 
| 
      
 57 
     | 
    
         
            +
            - rodrigo.martins@raizen.com
         
     | 
| 
      
 58 
     | 
    
         
            +
            executables:
         
     | 
| 
      
 59 
     | 
    
         
            +
            - setup
         
     | 
| 
      
 60 
     | 
    
         
            +
            - shellbox
         
     | 
| 
      
 61 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 62 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 63 
     | 
    
         
            +
            files:
         
     | 
| 
      
 64 
     | 
    
         
            +
            - bin/setup
         
     | 
| 
      
 65 
     | 
    
         
            +
            - bin/shellbox
         
     | 
| 
      
 66 
     | 
    
         
            +
            - lib/ShellboxCLI.rb
         
     | 
| 
      
 67 
     | 
    
         
            +
            - lib/ios/iosOption.rb
         
     | 
| 
      
 68 
     | 
    
         
            +
            - lib/ios/module/setup/ConfigureSwift.rb
         
     | 
| 
      
 69 
     | 
    
         
            +
            - lib/ios/module/setup/MessageBank.rb
         
     | 
| 
      
 70 
     | 
    
         
            +
            - lib/ios/module/setup/ProjectManipulator.rb
         
     | 
| 
      
 71 
     | 
    
         
            +
            - 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
         
     | 
| 
      
 75 
     | 
    
         
            +
            - lib/ios/module/templates/Example/Example/Example/AppDelegate.swift
         
     | 
| 
      
 76 
     | 
    
         
            +
            - lib/ios/module/templates/Example/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json
         
     | 
| 
      
 77 
     | 
    
         
            +
            - lib/ios/module/templates/Example/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json
         
     | 
| 
      
 78 
     | 
    
         
            +
            - lib/ios/module/templates/Example/Example/Example/Assets.xcassets/Contents.json
         
     | 
| 
      
 79 
     | 
    
         
            +
            - lib/ios/module/templates/Example/Example/Example/Base.lproj/LaunchScreen.storyboard
         
     | 
| 
      
 80 
     | 
    
         
            +
            - lib/ios/module/templates/Example/Example/Example/Info.plist
         
     | 
| 
      
 81 
     | 
    
         
            +
            - lib/ios/module/templates/Example/Example/Example/SceneDelegate.swift
         
     | 
| 
      
 82 
     | 
    
         
            +
            - lib/ios/module/templates/Example/Example/Example/ViewController.swift
         
     | 
| 
      
 83 
     | 
    
         
            +
            - lib/ios/module/templates/Example/Example/Podfile
         
     | 
| 
      
 84 
     | 
    
         
            +
            - lib/ios/module/templates/Feature/Header_template
         
     | 
| 
      
 85 
     | 
    
         
            +
            - lib/ios/module/templates/Feature/Info_template
         
     | 
| 
      
 86 
     | 
    
         
            +
            - lib/ios/module/templates/Feature/bundle_template
         
     | 
| 
      
 87 
     | 
    
         
            +
            - lib/ios/module/templates/NAME.podspec
         
     | 
| 
      
 88 
     | 
    
         
            +
            - lib/ios/module/templates/NAMEInterface.podspec
         
     | 
| 
      
 89 
     | 
    
         
            +
            - lib/ios/module/templates/swiftgen.yml
         
     | 
| 
      
 90 
     | 
    
         
            +
            homepage: https://bitbucket.org/acelera
         
     | 
| 
      
 91 
     | 
    
         
            +
            licenses:
         
     | 
| 
      
 92 
     | 
    
         
            +
            - MIT
         
     | 
| 
      
 93 
     | 
    
         
            +
            metadata: {}
         
     | 
| 
      
 94 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 95 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 96 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 97 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 98 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 99 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 100 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 101 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 102 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 103 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 104 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 105 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 106 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 107 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 108 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 109 
     | 
    
         
            +
            rubygems_version: 3.0.3.1
         
     | 
| 
      
 110 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 111 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
      
 112 
     | 
    
         
            +
            summary: ShellBox CLI
         
     | 
| 
      
 113 
     | 
    
         
            +
            test_files: []
         
     |