ledger_sync-quickbooks_online 1.0.0 → 1.0.1
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/.github/workflows/codeql.yml +76 -0
 - data/Gemfile.lock +3 -3
 - data/ledger_sync-quickbooks_online.gemspec +1 -1
 - data/lib/ledger_sync/quickbooks_online/version.rb +1 -1
 - metadata +13 -6
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: b9be11e34932f5f4e11b1275a9dee94b96128e9053499ac593e5e0b70509f765
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 7441de3cd6261308325a63a292bdfca5710a5c447d3574d19b5fb574179814f8
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 9945f09695368723a80726cd14b19b198e4978ee8fe8059752d8e85e72b7ca30706779545b8e54747e8ab43343edf64d7bc6f3859b1fb9ac0f11a787c44be72e
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 371ed3fa83d066da7a11bd2f3d57b4d8df08ffce5a5ee67915e3782f66359db669e98ea7f2cb6bf3e846ae9a97e5ba3f521b3d47b5bb1ba5aa610f0da526d6c3
         
     | 
| 
         @@ -0,0 +1,76 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # For most projects, this workflow file will not need changing; you simply need
         
     | 
| 
      
 2 
     | 
    
         
            +
            # to commit it to your repository.
         
     | 
| 
      
 3 
     | 
    
         
            +
            #
         
     | 
| 
      
 4 
     | 
    
         
            +
            # You may wish to alter this file to override the set of languages analyzed,
         
     | 
| 
      
 5 
     | 
    
         
            +
            # or to provide custom queries or build logic.
         
     | 
| 
      
 6 
     | 
    
         
            +
            #
         
     | 
| 
      
 7 
     | 
    
         
            +
            # ******** NOTE ********
         
     | 
| 
      
 8 
     | 
    
         
            +
            # We have attempted to detect the languages in your repository. Please check
         
     | 
| 
      
 9 
     | 
    
         
            +
            # the `language` matrix defined below to confirm you have the correct set of
         
     | 
| 
      
 10 
     | 
    
         
            +
            # supported CodeQL languages.
         
     | 
| 
      
 11 
     | 
    
         
            +
            #
         
     | 
| 
      
 12 
     | 
    
         
            +
            name: "CodeQL"
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            on:
         
     | 
| 
      
 15 
     | 
    
         
            +
              push:
         
     | 
| 
      
 16 
     | 
    
         
            +
                branches: [ "master", develop ]
         
     | 
| 
      
 17 
     | 
    
         
            +
              pull_request:
         
     | 
| 
      
 18 
     | 
    
         
            +
                # The branches below must be a subset of the branches above
         
     | 
| 
      
 19 
     | 
    
         
            +
                branches: [ "master" ]
         
     | 
| 
      
 20 
     | 
    
         
            +
              schedule:
         
     | 
| 
      
 21 
     | 
    
         
            +
                - cron: '37 23 * * 3'
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            jobs:
         
     | 
| 
      
 24 
     | 
    
         
            +
              analyze:
         
     | 
| 
      
 25 
     | 
    
         
            +
                name: Analyze
         
     | 
| 
      
 26 
     | 
    
         
            +
                runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
         
     | 
| 
      
 27 
     | 
    
         
            +
                permissions:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  actions: read
         
     | 
| 
      
 29 
     | 
    
         
            +
                  contents: read
         
     | 
| 
      
 30 
     | 
    
         
            +
                  security-events: write
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
                strategy:
         
     | 
| 
      
 33 
     | 
    
         
            +
                  fail-fast: false
         
     | 
| 
      
 34 
     | 
    
         
            +
                  matrix:
         
     | 
| 
      
 35 
     | 
    
         
            +
                    language: [ 'ruby' ]
         
     | 
| 
      
 36 
     | 
    
         
            +
                    # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
         
     | 
| 
      
 37 
     | 
    
         
            +
                    # Use only 'java' to analyze code written in Java, Kotlin or both
         
     | 
| 
      
 38 
     | 
    
         
            +
                    # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
         
     | 
| 
      
 39 
     | 
    
         
            +
                    # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
                steps:
         
     | 
| 
      
 42 
     | 
    
         
            +
                - name: Checkout repository
         
     | 
| 
      
 43 
     | 
    
         
            +
                  uses: actions/checkout@v3
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
                # Initializes the CodeQL tools for scanning.
         
     | 
| 
      
 46 
     | 
    
         
            +
                - name: Initialize CodeQL
         
     | 
| 
      
 47 
     | 
    
         
            +
                  uses: github/codeql-action/init@v2
         
     | 
| 
      
 48 
     | 
    
         
            +
                  with:
         
     | 
| 
      
 49 
     | 
    
         
            +
                    languages: ${{ matrix.language }}
         
     | 
| 
      
 50 
     | 
    
         
            +
                    # If you wish to specify custom queries, you can do so here or in a config file.
         
     | 
| 
      
 51 
     | 
    
         
            +
                    # By default, queries listed here will override any specified in a config file.
         
     | 
| 
      
 52 
     | 
    
         
            +
                    # Prefix the list here with "+" to use these queries and those in the config file.
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
                    # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
         
     | 
| 
      
 55 
     | 
    
         
            +
                    # queries: security-extended,security-and-quality
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
                # Autobuild attempts to build any compiled languages  (C/C++, C#, Go, or Java).
         
     | 
| 
      
 59 
     | 
    
         
            +
                # If this step fails, then you should remove it and run the build manually (see below)
         
     | 
| 
      
 60 
     | 
    
         
            +
                - name: Autobuild
         
     | 
| 
      
 61 
     | 
    
         
            +
                  uses: github/codeql-action/autobuild@v2
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
                # ℹ️ Command-line programs to run using the OS shell.
         
     | 
| 
      
 64 
     | 
    
         
            +
                # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
                #   If the Autobuild fails above, remove it and uncomment the following three lines.
         
     | 
| 
      
 67 
     | 
    
         
            +
                #   modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
                # - run: |
         
     | 
| 
      
 70 
     | 
    
         
            +
                #     echo "Run, Build Application using script"
         
     | 
| 
      
 71 
     | 
    
         
            +
                #     ./location_of_script_within_repo/buildscript.sh
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
                - name: Perform CodeQL Analysis
         
     | 
| 
      
 74 
     | 
    
         
            +
                  uses: github/codeql-action/analyze@v2
         
     | 
| 
      
 75 
     | 
    
         
            +
                  with:
         
     | 
| 
      
 76 
     | 
    
         
            +
                    category: "/language:${{matrix.language}}"
         
     | 
    
        data/Gemfile.lock
    CHANGED
    
    | 
         @@ -1,9 +1,9 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            PATH
         
     | 
| 
       2 
2 
     | 
    
         
             
              remote: .
         
     | 
| 
       3 
3 
     | 
    
         
             
              specs:
         
     | 
| 
       4 
     | 
    
         
            -
                ledger_sync-quickbooks_online (1.0. 
     | 
| 
      
 4 
     | 
    
         
            +
                ledger_sync-quickbooks_online (1.0.1)
         
     | 
| 
       5 
5 
     | 
    
         
             
                  dotenv
         
     | 
| 
       6 
     | 
    
         
            -
                  ledger_sync (>= 2.0.2)
         
     | 
| 
      
 6 
     | 
    
         
            +
                  ledger_sync (>= 2.0.2, <= 3.0)
         
     | 
| 
       7 
7 
     | 
    
         
             
                  oauth2
         
     | 
| 
       8 
8 
     | 
    
         | 
| 
       9 
9 
     | 
    
         
             
            GEM
         
     | 
| 
         @@ -232,4 +232,4 @@ DEPENDENCIES 
     | 
|
| 
       232 
232 
     | 
    
         
             
              webmock
         
     | 
| 
       233 
233 
     | 
    
         | 
| 
       234 
234 
     | 
    
         
             
            BUNDLED WITH
         
     | 
| 
       235 
     | 
    
         
            -
               2. 
     | 
| 
      
 235 
     | 
    
         
            +
               2.4.22
         
     | 
| 
         @@ -41,7 +41,7 @@ Gem::Specification.new do |spec| 
     | 
|
| 
       41 
41 
     | 
    
         
             
              spec.add_development_dependency('vcr', '>= 0')
         
     | 
| 
       42 
42 
     | 
    
         
             
              spec.add_development_dependency('webmock', '>= 0')
         
     | 
| 
       43 
43 
     | 
    
         
             
              spec.add_runtime_dependency('dotenv')
         
     | 
| 
       44 
     | 
    
         
            -
              spec.add_runtime_dependency('ledger_sync', '>= 2.0.2')
         
     | 
| 
      
 44 
     | 
    
         
            +
              spec.add_runtime_dependency('ledger_sync', '>= 2.0.2', '<= 3.0')
         
     | 
| 
       45 
45 
     | 
    
         
             
              # spec.add_runtime_dependency('nokogiri', '>= 0')
         
     | 
| 
       46 
46 
     | 
    
         
             
              spec.add_runtime_dependency('oauth2', '>= 0')
         
     | 
| 
       47 
47 
     | 
    
         
             
              spec.metadata['rubygems_mfa_required'] = 'true'
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: ledger_sync-quickbooks_online
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.0.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Modern Treasury
         
     | 
| 
       8 
     | 
    
         
            -
            autorequire: 
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: exe
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date:  
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2024-12-26 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: awesome_print
         
     | 
| 
         @@ -227,6 +227,9 @@ dependencies: 
     | 
|
| 
       227 
227 
     | 
    
         
             
                - - ">="
         
     | 
| 
       228 
228 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       229 
229 
     | 
    
         
             
                    version: 2.0.2
         
     | 
| 
      
 230 
     | 
    
         
            +
                - - "<="
         
     | 
| 
      
 231 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 232 
     | 
    
         
            +
                    version: '3.0'
         
     | 
| 
       230 
233 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       231 
234 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       232 
235 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -234,6 +237,9 @@ dependencies: 
     | 
|
| 
       234 
237 
     | 
    
         
             
                - - ">="
         
     | 
| 
       235 
238 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       236 
239 
     | 
    
         
             
                    version: 2.0.2
         
     | 
| 
      
 240 
     | 
    
         
            +
                - - "<="
         
     | 
| 
      
 241 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 242 
     | 
    
         
            +
                    version: '3.0'
         
     | 
| 
       237 
243 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       238 
244 
     | 
    
         
             
              name: oauth2
         
     | 
| 
       239 
245 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -258,6 +264,7 @@ extensions: [] 
     | 
|
| 
       258 
264 
     | 
    
         
             
            extra_rdoc_files: []
         
     | 
| 
       259 
265 
     | 
    
         
             
            files:
         
     | 
| 
       260 
266 
     | 
    
         
             
            - ".env.test"
         
     | 
| 
      
 267 
     | 
    
         
            +
            - ".github/workflows/codeql.yml"
         
     | 
| 
       261 
268 
     | 
    
         
             
            - ".github/workflows/gem-workflow.yml"
         
     | 
| 
       262 
269 
     | 
    
         
             
            - ".gitignore"
         
     | 
| 
       263 
270 
     | 
    
         
             
            - ".overcommit.yml"
         
     | 
| 
         @@ -449,7 +456,7 @@ homepage: https://www.ledgersync.dev 
     | 
|
| 
       449 
456 
     | 
    
         
             
            licenses: []
         
     | 
| 
       450 
457 
     | 
    
         
             
            metadata:
         
     | 
| 
       451 
458 
     | 
    
         
             
              rubygems_mfa_required: 'true'
         
     | 
| 
       452 
     | 
    
         
            -
            post_install_message: 
     | 
| 
      
 459 
     | 
    
         
            +
            post_install_message:
         
     | 
| 
       453 
460 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       454 
461 
     | 
    
         
             
            require_paths:
         
     | 
| 
       455 
462 
     | 
    
         
             
            - lib
         
     | 
| 
         @@ -464,8 +471,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       464 
471 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       465 
472 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       466 
473 
     | 
    
         
             
            requirements: []
         
     | 
| 
       467 
     | 
    
         
            -
            rubygems_version: 3. 
     | 
| 
       468 
     | 
    
         
            -
            signing_key: 
     | 
| 
      
 474 
     | 
    
         
            +
            rubygems_version: 3.2.33
         
     | 
| 
      
 475 
     | 
    
         
            +
            signing_key:
         
     | 
| 
       469 
476 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       470 
477 
     | 
    
         
             
            summary: Sync common objects to accounting software.
         
     | 
| 
       471 
478 
     | 
    
         
             
            test_files: []
         
     |