proscenium 0.1.0.alpha1-arm64-darwin → 0.1.0.alpha2-arm64-darwin
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/LICENSE.txt +21 -0
- data/app/channels/proscenium/connection.rb +11 -0
- data/app/channels/proscenium/reload_channel.rb +7 -0
- data/app/components/application_component.rb +7 -0
- data/app/components/react_component.rb +14 -0
- data/bin/esbuild +0 -0
- data/bin/parcel_css +0 -0
- data/config/routes.rb +5 -0
- data/lib/proscenium/railtie.rb +1 -0
- data/lib/proscenium/version.rb +1 -1
- metadata +27 -3
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: f8247c82996a679f10da36d65c389e07ae4bad1b1399168338ffd937401b1cc6
         | 
| 4 | 
            +
              data.tar.gz: 113eeee3890bc5e35ed8c114d209f365fea71f6f3c6b87e1dffbef359208973d
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: faa3d8d5a0986b1b58b4bc0452dfd4e4144cf1517651fa416c487e7c155dbd67eea7d7a5fc0d583ad93226edfc5de4271cfd2bdfb6fa7bd1f3eb3071c816bfb9
         | 
| 7 | 
            +
              data.tar.gz: 522e92bbe7193632ed084eb69344408e1085319ff99a76c1c7994414038c6512324c3cc0e2e4dcc3d3ba91fab042fc8be9cf325fcda0264e734e631d58a205ca
         | 
    
        data/LICENSE.txt
    ADDED
    
    | @@ -0,0 +1,21 @@ | |
| 1 | 
            +
            The MIT License (MIT)
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            Copyright (c) 2021 Joel Moss
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            Permission is hereby granted, free of charge, to any person obtaining a copy
         | 
| 6 | 
            +
            of this software and associated documentation files (the "Software"), to deal
         | 
| 7 | 
            +
            in the Software without restriction, including without limitation the rights
         | 
| 8 | 
            +
            to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         | 
| 9 | 
            +
            copies of the Software, and to permit persons to whom the Software is
         | 
| 10 | 
            +
            furnished to do so, subject to the following conditions:
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            The above copyright notice and this permission notice shall be included in
         | 
| 13 | 
            +
            all copies or substantial portions of the Software.
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         | 
| 16 | 
            +
            IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         | 
| 17 | 
            +
            FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         | 
| 18 | 
            +
            AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         | 
| 19 | 
            +
            LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         | 
| 20 | 
            +
            OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
         | 
| 21 | 
            +
            THE SOFTWARE.
         | 
| @@ -0,0 +1,14 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            class ReactComponent < ApplicationComponent
         | 
| 4 | 
            +
              attr_accessor :props
         | 
| 5 | 
            +
             | 
| 6 | 
            +
              def initialize(props = {})
         | 
| 7 | 
            +
                @props = props
         | 
| 8 | 
            +
                super
         | 
| 9 | 
            +
              end
         | 
| 10 | 
            +
             | 
| 11 | 
            +
              def call
         | 
| 12 | 
            +
                tag.div data: { component: { path: virtual_path, props: @props } }
         | 
| 13 | 
            +
              end
         | 
| 14 | 
            +
            end
         | 
    
        data/bin/esbuild
    ADDED
    
    | Binary file | 
    
        data/bin/parcel_css
    ADDED
    
    | Binary file | 
    
        data/config/routes.rb
    ADDED
    
    
    
        data/lib/proscenium/railtie.rb
    CHANGED
    
    
    
        data/lib/proscenium/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: proscenium
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.1.0. | 
| 4 | 
            +
              version: 0.1.0.alpha2
         | 
| 5 5 | 
             
            platform: arm64-darwin
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Joel Moss
         | 
| 8 8 | 
             
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2022-07- | 
| 11 | 
            +
            date: 2022-07-26 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: actioncable
         | 
| @@ -98,15 +98,39 @@ dependencies: | |
| 98 98 | 
             
                - - "<"
         | 
| 99 99 | 
             
                  - !ruby/object:Gem::Version
         | 
| 100 100 | 
             
                    version: '8.0'
         | 
| 101 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 102 | 
            +
              name: view_component
         | 
| 103 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 104 | 
            +
                requirements:
         | 
| 105 | 
            +
                - - "~>"
         | 
| 106 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 107 | 
            +
                    version: '2.0'
         | 
| 108 | 
            +
              type: :runtime
         | 
| 109 | 
            +
              prerelease: false
         | 
| 110 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 111 | 
            +
                requirements:
         | 
| 112 | 
            +
                - - "~>"
         | 
| 113 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 114 | 
            +
                    version: '2.0'
         | 
| 101 115 | 
             
            description:
         | 
| 102 116 | 
             
            email:
         | 
| 103 117 | 
             
            - joel@developwithstyle.com
         | 
| 104 | 
            -
            executables: | 
| 118 | 
            +
            executables:
         | 
| 119 | 
            +
            - esbuild
         | 
| 120 | 
            +
            - parcel_css
         | 
| 105 121 | 
             
            extensions: []
         | 
| 106 122 | 
             
            extra_rdoc_files: []
         | 
| 107 123 | 
             
            files:
         | 
| 108 124 | 
             
            - CODE_OF_CONDUCT.md
         | 
| 125 | 
            +
            - LICENSE.txt
         | 
| 109 126 | 
             
            - README.md
         | 
| 127 | 
            +
            - app/channels/proscenium/connection.rb
         | 
| 128 | 
            +
            - app/channels/proscenium/reload_channel.rb
         | 
| 129 | 
            +
            - app/components/application_component.rb
         | 
| 130 | 
            +
            - app/components/react_component.rb
         | 
| 131 | 
            +
            - bin/esbuild
         | 
| 132 | 
            +
            - bin/parcel_css
         | 
| 133 | 
            +
            - config/routes.rb
         | 
| 110 134 | 
             
            - lib/proscenium.rb
         | 
| 111 135 | 
             
            - lib/proscenium/cli/argument_error.js
         | 
| 112 136 | 
             
            - lib/proscenium/cli/builders/index.js
         |