parse-stack 1.9.0 → 1.9.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/ruby.yml +36 -0
- data/Gemfile +1 -0
- data/Gemfile.lock +44 -33
- data/bin/parse-console +1 -0
- data/lib/parse/stack/version.rb +1 -1
- data/parse-stack.gemspec +1 -1
- metadata +8 -13
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 9ba01ee44cc13c4f77c705ff40c42192429bf37b400ef0cc174538a9d18a80cb
         | 
| 4 | 
            +
              data.tar.gz: cfb5e045f35baf6d7398eb68235624b269e4cf54a75313ad28f707006ccd8568
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 4890914ace7b73e8876ce7c55b269ce80f1481c2f490e0802156edf9fc266592bd4b6e5c04271bf7c024b545d77d5f651415bad2153e5bda5861abe48fe435f7
         | 
| 7 | 
            +
              data.tar.gz: 9f7ccb4db15dff09592f0657673acaa99589a82e255f056692e02c6789399339c4d68422474e80b969f4505d523ce4162c2c6992ce17dc66140bb0cb0132172e
         | 
| @@ -0,0 +1,36 @@ | |
| 1 | 
            +
            # This workflow uses actions that are not certified by GitHub.
         | 
| 2 | 
            +
            # They are provided by a third-party and are governed by
         | 
| 3 | 
            +
            # separate terms of service, privacy policy, and support
         | 
| 4 | 
            +
            # documentation.
         | 
| 5 | 
            +
            # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
         | 
| 6 | 
            +
            # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            name: Gem Tests
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            on:
         | 
| 11 | 
            +
              push:
         | 
| 12 | 
            +
                branches: [master]
         | 
| 13 | 
            +
              pull_request:
         | 
| 14 | 
            +
                branches: [master]
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            jobs:
         | 
| 17 | 
            +
              test:
         | 
| 18 | 
            +
                strategy:
         | 
| 19 | 
            +
                  fail-fast: false
         | 
| 20 | 
            +
                  matrix:
         | 
| 21 | 
            +
                    os: [ubuntu-latest, macos-latest]
         | 
| 22 | 
            +
                    ruby: [2.5, 2.6, 2.7]
         | 
| 23 | 
            +
                runs-on: ${{ matrix.os }}
         | 
| 24 | 
            +
                steps:
         | 
| 25 | 
            +
                  - uses: actions/checkout@v2
         | 
| 26 | 
            +
                  - name: Set up Ruby
         | 
| 27 | 
            +
                    # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
         | 
| 28 | 
            +
                    # change this to (see https://github.com/ruby/setup-ruby#versioning):
         | 
| 29 | 
            +
                    uses: ruby/setup-ruby@v1
         | 
| 30 | 
            +
                    # uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
         | 
| 31 | 
            +
                    with:
         | 
| 32 | 
            +
                      ruby-version: ${{ matrix.ruby }}
         | 
| 33 | 
            +
                  - name: Install dependencies
         | 
| 34 | 
            +
                    run: bundle install
         | 
| 35 | 
            +
                  - name: Run tests
         | 
| 36 | 
            +
                    run: bundle exec rake
         | 
    
        data/Gemfile
    CHANGED
    
    
    
        data/Gemfile.lock
    CHANGED
    
    | @@ -1,11 +1,11 @@ | |
| 1 1 | 
             
            PATH
         | 
| 2 2 | 
             
              remote: .
         | 
| 3 3 | 
             
              specs:
         | 
| 4 | 
            -
                parse-stack (1.9. | 
| 4 | 
            +
                parse-stack (1.9.1)
         | 
| 5 5 | 
             
                  active_model_serializers (>= 0.9, < 1)
         | 
| 6 6 | 
             
                  activemodel (>= 5, < 7)
         | 
| 7 7 | 
             
                  activesupport (>= 5, < 7)
         | 
| 8 | 
            -
                  faraday ( | 
| 8 | 
            +
                  faraday (< 1)
         | 
| 9 9 | 
             
                  faraday_middleware (>= 0.9, < 2)
         | 
| 10 10 | 
             
                  moneta (< 2)
         | 
| 11 11 | 
             
                  parallel (>= 1.6, < 2)
         | 
| @@ -14,15 +14,15 @@ PATH | |
| 14 14 | 
             
            GEM
         | 
| 15 15 | 
             
              remote: https://rubygems.org/
         | 
| 16 16 | 
             
              specs:
         | 
| 17 | 
            -
                actionpack (6.0. | 
| 18 | 
            -
                  actionview (= 6.0. | 
| 19 | 
            -
                  activesupport (= 6.0. | 
| 17 | 
            +
                actionpack (6.0.3.2)
         | 
| 18 | 
            +
                  actionview (= 6.0.3.2)
         | 
| 19 | 
            +
                  activesupport (= 6.0.3.2)
         | 
| 20 20 | 
             
                  rack (~> 2.0, >= 2.0.8)
         | 
| 21 21 | 
             
                  rack-test (>= 0.6.3)
         | 
| 22 22 | 
             
                  rails-dom-testing (~> 2.0)
         | 
| 23 23 | 
             
                  rails-html-sanitizer (~> 1.0, >= 1.2.0)
         | 
| 24 | 
            -
                actionview (6.0. | 
| 25 | 
            -
                  activesupport (= 6.0. | 
| 24 | 
            +
                actionview (6.0.3.2)
         | 
| 25 | 
            +
                  activesupport (= 6.0.3.2)
         | 
| 26 26 | 
             
                  builder (~> 3.1)
         | 
| 27 27 | 
             
                  erubi (~> 1.4)
         | 
| 28 28 | 
             
                  rails-dom-testing (~> 2.0)
         | 
| @@ -32,15 +32,16 @@ GEM | |
| 32 32 | 
             
                  activemodel (>= 4.1, < 6.1)
         | 
| 33 33 | 
             
                  case_transform (>= 0.2)
         | 
| 34 34 | 
             
                  jsonapi-renderer (>= 0.1.1.beta1, < 0.3)
         | 
| 35 | 
            -
                activemodel (6.0. | 
| 36 | 
            -
                  activesupport (= 6.0. | 
| 37 | 
            -
                activesupport (6.0. | 
| 35 | 
            +
                activemodel (6.0.3.2)
         | 
| 36 | 
            +
                  activesupport (= 6.0.3.2)
         | 
| 37 | 
            +
                activesupport (6.0.3.2)
         | 
| 38 38 | 
             
                  concurrent-ruby (~> 1.0, >= 1.0.2)
         | 
| 39 39 | 
             
                  i18n (>= 0.7, < 2)
         | 
| 40 40 | 
             
                  minitest (~> 5.1)
         | 
| 41 41 | 
             
                  tzinfo (~> 1.1)
         | 
| 42 | 
            -
                  zeitwerk (~> 2.2)
         | 
| 43 | 
            -
                 | 
| 42 | 
            +
                  zeitwerk (~> 2.2, >= 2.2.2)
         | 
| 43 | 
            +
                ansi (1.5.0)
         | 
| 44 | 
            +
                ast (2.4.1)
         | 
| 44 45 | 
             
                backport (1.1.2)
         | 
| 45 46 | 
             
                benchmark (0.1.0)
         | 
| 46 47 | 
             
                binding_of_caller (0.8.0)
         | 
| @@ -49,37 +50,42 @@ GEM | |
| 49 50 | 
             
                byebug (11.1.3)
         | 
| 50 51 | 
             
                case_transform (0.2)
         | 
| 51 52 | 
             
                  activesupport
         | 
| 52 | 
            -
                coderay (1.1. | 
| 53 | 
            +
                coderay (1.1.3)
         | 
| 53 54 | 
             
                concurrent-ruby (1.1.6)
         | 
| 54 55 | 
             
                crass (1.0.6)
         | 
| 55 56 | 
             
                daemons (1.3.1)
         | 
| 56 57 | 
             
                debug_inspector (0.0.3)
         | 
| 57 | 
            -
                dotenv (2.7. | 
| 58 | 
            +
                dotenv (2.7.6)
         | 
| 58 59 | 
             
                e2mmap (0.1.0)
         | 
| 59 60 | 
             
                erubi (1.9.0)
         | 
| 60 61 | 
             
                eventmachine (1.2.7)
         | 
| 61 | 
            -
                faraday ( | 
| 62 | 
            +
                faraday (0.17.3)
         | 
| 62 63 | 
             
                  multipart-post (>= 1.2, < 3)
         | 
| 63 | 
            -
                faraday_middleware ( | 
| 64 | 
            -
                  faraday ( | 
| 65 | 
            -
                i18n (1.8. | 
| 64 | 
            +
                faraday_middleware (0.14.0)
         | 
| 65 | 
            +
                  faraday (>= 0.7.4, < 1.0)
         | 
| 66 | 
            +
                i18n (1.8.5)
         | 
| 66 67 | 
             
                  concurrent-ruby (~> 1.0)
         | 
| 67 68 | 
             
                jaro_winkler (1.5.4)
         | 
| 68 69 | 
             
                jsonapi-renderer (0.2.2)
         | 
| 69 | 
            -
                loofah (2. | 
| 70 | 
            +
                loofah (2.6.0)
         | 
| 70 71 | 
             
                  crass (~> 1.0.2)
         | 
| 71 72 | 
             
                  nokogiri (>= 1.5.9)
         | 
| 72 73 | 
             
                maruku (0.7.3)
         | 
| 73 74 | 
             
                method_source (0.9.2)
         | 
| 74 75 | 
             
                mini_portile2 (2.4.0)
         | 
| 75 | 
            -
                minitest (5.14. | 
| 76 | 
            +
                minitest (5.14.1)
         | 
| 77 | 
            +
                minitest-reporters (1.4.2)
         | 
| 78 | 
            +
                  ansi
         | 
| 79 | 
            +
                  builder
         | 
| 80 | 
            +
                  minitest (>= 5.0)
         | 
| 81 | 
            +
                  ruby-progressbar
         | 
| 76 82 | 
             
                moneta (1.3.0)
         | 
| 77 83 | 
             
                multipart-post (2.1.1)
         | 
| 78 | 
            -
                nokogiri (1.10. | 
| 84 | 
            +
                nokogiri (1.10.10)
         | 
| 79 85 | 
             
                  mini_portile2 (~> 2.4.0)
         | 
| 80 | 
            -
                parallel (1.19. | 
| 81 | 
            -
                parser (2.7.1. | 
| 82 | 
            -
                  ast (~> 2.4. | 
| 86 | 
            +
                parallel (1.19.2)
         | 
| 87 | 
            +
                parser (2.7.1.4)
         | 
| 88 | 
            +
                  ast (~> 2.4.1)
         | 
| 83 89 | 
             
                pry (0.12.2)
         | 
| 84 90 | 
             
                  coderay (~> 1.1.0)
         | 
| 85 91 | 
             
                  method_source (~> 0.9.0)
         | 
| @@ -88,7 +94,7 @@ GEM | |
| 88 94 | 
             
                pry-stack_explorer (0.4.9.3)
         | 
| 89 95 | 
             
                  binding_of_caller (>= 0.7)
         | 
| 90 96 | 
             
                  pry (>= 0.9.11)
         | 
| 91 | 
            -
                rack (2.2. | 
| 97 | 
            +
                rack (2.2.3)
         | 
| 92 98 | 
             
                rack-test (1.1.0)
         | 
| 93 99 | 
             
                  rack (>= 1.0, < 3)
         | 
| 94 100 | 
             
                rails-dom-testing (2.0.3)
         | 
| @@ -99,20 +105,24 @@ GEM | |
| 99 105 | 
             
                rainbow (3.0.0)
         | 
| 100 106 | 
             
                rake (13.0.1)
         | 
| 101 107 | 
             
                redcarpet (3.5.0)
         | 
| 102 | 
            -
                redis (4.1 | 
| 103 | 
            -
                 | 
| 108 | 
            +
                redis (4.2.1)
         | 
| 109 | 
            +
                regexp_parser (1.7.1)
         | 
| 110 | 
            +
                reverse_markdown (2.0.0)
         | 
| 104 111 | 
             
                  nokogiri
         | 
| 105 112 | 
             
                rexml (3.2.4)
         | 
| 106 | 
            -
                rubocop (0. | 
| 107 | 
            -
                  jaro_winkler (~> 1.5.1)
         | 
| 113 | 
            +
                rubocop (0.88.0)
         | 
| 108 114 | 
             
                  parallel (~> 1.10)
         | 
| 109 | 
            -
                  parser (>= 2.7. | 
| 115 | 
            +
                  parser (>= 2.7.1.1)
         | 
| 110 116 | 
             
                  rainbow (>= 2.2.2, < 4.0)
         | 
| 117 | 
            +
                  regexp_parser (>= 1.7)
         | 
| 111 118 | 
             
                  rexml
         | 
| 119 | 
            +
                  rubocop-ast (>= 0.1.0, < 1.0)
         | 
| 112 120 | 
             
                  ruby-progressbar (~> 1.7)
         | 
| 113 121 | 
             
                  unicode-display_width (>= 1.4.0, < 2.0)
         | 
| 122 | 
            +
                rubocop-ast (0.2.0)
         | 
| 123 | 
            +
                  parser (>= 2.7.0.1)
         | 
| 114 124 | 
             
                ruby-progressbar (1.10.1)
         | 
| 115 | 
            -
                solargraph (0.39. | 
| 125 | 
            +
                solargraph (0.39.12)
         | 
| 116 126 | 
             
                  backport (~> 1.1)
         | 
| 117 127 | 
             
                  benchmark
         | 
| 118 128 | 
             
                  bundler (>= 1.17.2)
         | 
| @@ -121,7 +131,7 @@ GEM | |
| 121 131 | 
             
                  maruku (~> 0.7, >= 0.7.3)
         | 
| 122 132 | 
             
                  nokogiri (~> 1.9, >= 1.9.1)
         | 
| 123 133 | 
             
                  parser (~> 2.3)
         | 
| 124 | 
            -
                  reverse_markdown ( | 
| 134 | 
            +
                  reverse_markdown (>= 1.0.5, < 3)
         | 
| 125 135 | 
             
                  rubocop (~> 0.52)
         | 
| 126 136 | 
             
                  thor (~> 1.0)
         | 
| 127 137 | 
             
                  tilt (~> 2.0)
         | 
| @@ -137,7 +147,7 @@ GEM | |
| 137 147 | 
             
                  thread_safe (~> 0.1)
         | 
| 138 148 | 
             
                unicode-display_width (1.7.0)
         | 
| 139 149 | 
             
                yard (0.9.25)
         | 
| 140 | 
            -
                zeitwerk (2. | 
| 150 | 
            +
                zeitwerk (2.4.0)
         | 
| 141 151 |  | 
| 142 152 | 
             
            PLATFORMS
         | 
| 143 153 | 
             
              ruby
         | 
| @@ -146,6 +156,7 @@ DEPENDENCIES | |
| 146 156 | 
             
              byebug
         | 
| 147 157 | 
             
              dotenv
         | 
| 148 158 | 
             
              minitest
         | 
| 159 | 
            +
              minitest-reporters
         | 
| 149 160 | 
             
              parse-stack!
         | 
| 150 161 | 
             
              pry
         | 
| 151 162 | 
             
              pry-nav
         | 
    
        data/bin/parse-console
    CHANGED
    
    | @@ -62,6 +62,7 @@ opt_parser = OptionParser.new do |o| | |
| 62 62 | 
             
                  file = File.read(filepath)
         | 
| 63 63 | 
             
                  config = JSON.parse file
         | 
| 64 64 | 
             
                  app = config["apps"].is_a?(Array) ?  config["apps"].first : config["apps"]
         | 
| 65 | 
            +
                  app = config if app.nil? # uses parse-server config.json
         | 
| 65 66 | 
             
                  opts[:server_url] ||= app["serverURL"]
         | 
| 66 67 | 
             
                  opts[:app_id] ||= app["appId"]
         | 
| 67 68 | 
             
                  opts[:api_key] ||= app["restAPIKey"]
         | 
    
        data/lib/parse/stack/version.rb
    CHANGED
    
    
    
        data/parse-stack.gemspec
    CHANGED
    
    | @@ -31,7 +31,7 @@ Gem::Specification.new do |spec| | |
| 31 31 | 
             
              spec.add_runtime_dependency "active_model_serializers", [">= 0.9", "< 1"]
         | 
| 32 32 | 
             
              spec.add_runtime_dependency "activesupport", [">= 5", "< 7"]
         | 
| 33 33 | 
             
              spec.add_runtime_dependency "parallel", [">= 1.6", "< 2"]
         | 
| 34 | 
            -
              spec.add_runtime_dependency "faraday",  | 
| 34 | 
            +
              spec.add_runtime_dependency "faraday", "< 1"
         | 
| 35 35 | 
             
              spec.add_runtime_dependency "faraday_middleware", [">= 0.9", "< 2"]
         | 
| 36 36 | 
             
              spec.add_runtime_dependency "moneta", "< 2"
         | 
| 37 37 | 
             
              spec.add_runtime_dependency "rack", ">= 2.0.6", "< 3"
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: parse-stack
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1.9. | 
| 4 | 
            +
              version: 1.9.1
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Anthony Persaud
         | 
| 8 | 
            -
            autorequire: | 
| 8 | 
            +
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2020- | 
| 11 | 
            +
            date: 2020-08-07 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: activemodel
         | 
| @@ -94,22 +94,16 @@ dependencies: | |
| 94 94 | 
             
              name: faraday
         | 
| 95 95 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 96 96 | 
             
                requirements:
         | 
| 97 | 
            -
                - - ">="
         | 
| 98 | 
            -
                  - !ruby/object:Gem::Version
         | 
| 99 | 
            -
                    version: '0.8'
         | 
| 100 97 | 
             
                - - "<"
         | 
| 101 98 | 
             
                  - !ruby/object:Gem::Version
         | 
| 102 | 
            -
                    version: ' | 
| 99 | 
            +
                    version: '1'
         | 
| 103 100 | 
             
              type: :runtime
         | 
| 104 101 | 
             
              prerelease: false
         | 
| 105 102 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 106 103 | 
             
                requirements:
         | 
| 107 | 
            -
                - - ">="
         | 
| 108 | 
            -
                  - !ruby/object:Gem::Version
         | 
| 109 | 
            -
                    version: '0.8'
         | 
| 110 104 | 
             
                - - "<"
         | 
| 111 105 | 
             
                  - !ruby/object:Gem::Version
         | 
| 112 | 
            -
                    version: ' | 
| 106 | 
            +
                    version: '1'
         | 
| 113 107 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 114 108 | 
             
              name: faraday_middleware
         | 
| 115 109 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -174,6 +168,7 @@ executables: | |
| 174 168 | 
             
            extensions: []
         | 
| 175 169 | 
             
            extra_rdoc_files: []
         | 
| 176 170 | 
             
            files:
         | 
| 171 | 
            +
            - ".github/workflows/ruby.yml"
         | 
| 177 172 | 
             
            - ".gitignore"
         | 
| 178 173 | 
             
            - ".solargraph.yml"
         | 
| 179 174 | 
             
            - ".travis.yml"
         | 
| @@ -267,7 +262,7 @@ homepage: https://github.com/modernistik/parse-stack | |
| 267 262 | 
             
            licenses:
         | 
| 268 263 | 
             
            - MIT
         | 
| 269 264 | 
             
            metadata: {}
         | 
| 270 | 
            -
            post_install_message: | 
| 265 | 
            +
            post_install_message:
         | 
| 271 266 | 
             
            rdoc_options: []
         | 
| 272 267 | 
             
            require_paths:
         | 
| 273 268 | 
             
            - lib
         | 
| @@ -283,7 +278,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 283 278 | 
             
                  version: '0'
         | 
| 284 279 | 
             
            requirements: []
         | 
| 285 280 | 
             
            rubygems_version: 3.0.8
         | 
| 286 | 
            -
            signing_key: | 
| 281 | 
            +
            signing_key:
         | 
| 287 282 | 
             
            specification_version: 4
         | 
| 288 283 | 
             
            summary: Parse Server Ruby Client SDK
         | 
| 289 284 | 
             
            test_files: []
         |