panda-core 0.1.7 → 0.1.9
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/README.md +13 -12
- data/lib/generators/panda/core/authentication/templates/reek_spec.rb +16 -16
- data/lib/panda/core/version.rb +1 -1
- metadata +5 -8
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 11fba205179215c8eb0064d97f83bfdc6545da147b31e9a43d2ad4b71a3f7007
         | 
| 4 | 
            +
              data.tar.gz: 60c2313213a09d301f9e4d7d305fbf4ac024971d913662daf99435f3f9f3ade1
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: fa02327e78501c4b2712f39a5ba0aa7590ae9664afd7ec78669467e0f8a5ee7a754a3034462b41faad9e9c6f69ff4a63309a42518cbfee84fa13ca838949193c
         | 
| 7 | 
            +
              data.tar.gz: 38f663dfdf7cf947cfe92f689477c512961c62d383a01835ab6f7f0e3bf8f83f1bacc5ba86c136cdbe9ba6b276fdde4d862d1ed2f73e53fd2c3f46c6109f072e
         | 
    
        data/README.md
    CHANGED
    
    | @@ -117,20 +117,21 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/tastyb | |
| 117 117 |  | 
| 118 118 | 
             
            ## Releasing
         | 
| 119 119 |  | 
| 120 | 
            -
            For e.g. v0.1. | 
| 120 | 
            +
            For e.g. v0.1.8, run the following commands:
         | 
| 121 121 |  | 
| 122 | 
            -
            ```
         | 
| 122 | 
            +
            ```bash
         | 
| 123 | 
            +
            RELEASE_VERSION=0.1.8
         | 
| 124 | 
            +
            gem bump --no-commit --version $RELEASE_VERSION
         | 
| 123 125 | 
             
            bundle update
         | 
| 124 | 
            -
            git  | 
| 125 | 
            -
            git  | 
| 126 | 
            -
            git  | 
| 127 | 
            -
            git push origin  | 
| 128 | 
            -
             | 
| 129 | 
            -
             | 
| 130 | 
            -
             | 
| 131 | 
            -
             | 
| 132 | 
            -
             | 
| 133 | 
            -
            bundle exec rake release
         | 
| 126 | 
            +
            git commit -am "Release $RELEASE_VERSION"
         | 
| 127 | 
            +
            git tag -a $RELEASE_VERSION -m "Release $RELEASE_VERSION"
         | 
| 128 | 
            +
            git checkout -b release/v$RELEASE_VERSION
         | 
| 129 | 
            +
            git push origin release/v$RELEASE_VERSION
         | 
| 130 | 
            +
            gem tag
         | 
| 131 | 
            +
            gem release panda-core -v $RELEASE_VERSION -g
         | 
| 132 | 
            +
            git checkout main && git merge release/v$RELEASE_VERSION
         | 
| 133 | 
            +
            git push origin main
         | 
| 134 | 
            +
            git push origin :release/v$RELEASE_VERSION
         | 
| 134 135 | 
             
            ```
         | 
| 135 136 |  | 
| 136 137 | 
             
            ## License
         | 
| @@ -1,22 +1,22 @@ | |
| 1 1 | 
             
            require "spec_helper"
         | 
| 2 2 |  | 
| 3 | 
            -
             | 
| 4 | 
            -
             | 
| 5 | 
            -
               | 
| 6 | 
            -
             | 
| 7 | 
            -
             | 
| 8 | 
            -
             | 
| 9 | 
            -
             | 
| 10 | 
            -
             | 
| 11 | 
            -
             | 
| 12 | 
            -
             | 
| 13 | 
            -
             | 
| 14 | 
            -
             | 
| 15 | 
            -
             | 
| 16 | 
            -
             | 
| 17 | 
            -
             | 
| 18 | 
            -
              ].freeze
         | 
| 3 | 
            +
            RUBY_FILE_PATTERN = File.expand_path("../../**/*.rb", __dir__)
         | 
| 4 | 
            +
            EXCLUDED_PATHS = [
         | 
| 5 | 
            +
              "db/schema.rb",
         | 
| 6 | 
            +
              "bin/",
         | 
| 7 | 
            +
              "script/",
         | 
| 8 | 
            +
              "log/",
         | 
| 9 | 
            +
              "public/",
         | 
| 10 | 
            +
              "tmp/",
         | 
| 11 | 
            +
              "doc/",
         | 
| 12 | 
            +
              "vendor/",
         | 
| 13 | 
            +
              "storage/",
         | 
| 14 | 
            +
              "node_modules/",
         | 
| 15 | 
            +
              ".git/",
         | 
| 16 | 
            +
              "spec/dummy/"
         | 
| 17 | 
            +
            ].freeze
         | 
| 19 18 |  | 
| 19 | 
            +
            RSpec.describe "Reek" do
         | 
| 20 20 | 
             
              it "contains no code smells" do
         | 
| 21 21 | 
             
                failures = []
         | 
| 22 22 |  | 
    
        data/lib/panda/core/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,15 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: panda-core
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.1. | 
| 4 | 
            +
              version: 0.1.9
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Tasty Bamboo
         | 
| 8 8 | 
             
            - James Inman
         | 
| 9 | 
            -
            autorequire:
         | 
| 10 9 | 
             
            bindir: bin
         | 
| 11 10 | 
             
            cert_chain: []
         | 
| 12 | 
            -
            date: 2025-01- | 
| 11 | 
            +
            date: 2025-01-19 00:00:00.000000000 Z
         | 
| 13 12 | 
             
            dependencies:
         | 
| 14 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 14 | 
             
              name: activestorage-office-previewer
         | 
| @@ -185,14 +184,14 @@ dependencies: | |
| 185 184 | 
             
                requirements:
         | 
| 186 185 | 
             
                - - ">="
         | 
| 187 186 | 
             
                  - !ruby/object:Gem::Version
         | 
| 188 | 
            -
                    version: ' | 
| 187 | 
            +
                    version: '8.0'
         | 
| 189 188 | 
             
              type: :runtime
         | 
| 190 189 | 
             
              prerelease: false
         | 
| 191 190 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 192 191 | 
             
                requirements:
         | 
| 193 192 | 
             
                - - ">="
         | 
| 194 193 | 
             
                  - !ruby/object:Gem::Version
         | 
| 195 | 
            -
                    version: ' | 
| 194 | 
            +
                    version: '8.0'
         | 
| 196 195 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 197 196 | 
             
              name: redis
         | 
| 198 197 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -928,7 +927,6 @@ metadata: | |
| 928 927 | 
             
              homepage_uri: https://github.com/tastybamboo/panda-core
         | 
| 929 928 | 
             
              source_code_uri: https://github.com/tastybamboo/panda-core
         | 
| 930 929 | 
             
              changelog_uri: https://github.com/tastybamboo/panda-core/blob/main/CHANGELOG.md
         | 
| 931 | 
            -
            post_install_message:
         | 
| 932 930 | 
             
            rdoc_options: []
         | 
| 933 931 | 
             
            require_paths:
         | 
| 934 932 | 
             
            - lib
         | 
| @@ -943,8 +941,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 943 941 | 
             
                - !ruby/object:Gem::Version
         | 
| 944 942 | 
             
                  version: '0'
         | 
| 945 943 | 
             
            requirements: []
         | 
| 946 | 
            -
            rubygems_version: 3. | 
| 947 | 
            -
            signing_key:
         | 
| 944 | 
            +
            rubygems_version: 3.6.2
         | 
| 948 945 | 
             
            specification_version: 4
         | 
| 949 946 | 
             
            summary: Core libraries and development tools for Tasty Bamboo projects
         | 
| 950 947 | 
             
            test_files: []
         |