meta-tags 2.13.0 → 2.19.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/Appraisals +25 -0
- data/CHANGELOG.md +158 -78
- data/CONTRIBUTING.md +6 -6
- data/Gemfile +5 -19
- data/README.md +174 -137
- data/Rakefile +44 -6
- data/Steepfile +13 -0
- data/certs/kpumuk.pem +19 -18
- data/gemfiles/rails_5.1.gemfile +8 -0
- data/gemfiles/rails_5.1.gemfile.lock +200 -0
- data/gemfiles/rails_5.2.gemfile +8 -0
- data/gemfiles/rails_5.2.gemfile.lock +200 -0
- data/gemfiles/rails_6.0.gemfile +8 -0
- data/gemfiles/rails_6.0.gemfile.lock +202 -0
- data/gemfiles/rails_6.1.gemfile +8 -0
- data/gemfiles/rails_6.1.gemfile.lock +201 -0
- data/gemfiles/rails_7.0.gemfile +8 -0
- data/gemfiles/rails_7.0.gemfile.lock +201 -0
- data/gemfiles/rails_7.1.gemfile +8 -0
- data/gemfiles/rails_7.1.gemfile.lock +231 -0
- data/lib/generators/meta_tags/install_generator.rb +1 -1
- data/lib/meta-tags.rb +1 -1
- data/lib/meta_tags/configuration.rb +23 -16
- data/lib/meta_tags/controller_helper.rb +4 -4
- data/lib/meta_tags/meta_tags_collection.rb +31 -22
- data/lib/meta_tags/railtie.rb +4 -4
- data/lib/meta_tags/renderer.rb +55 -28
- data/lib/meta_tags/tag.rb +1 -1
- data/lib/meta_tags/text_normalizer.rb +44 -39
- data/lib/meta_tags/version.rb +1 -1
- data/lib/meta_tags/view_helper.rb +7 -7
- data/lib/meta_tags.rb +13 -10
- data/meta-tags.gemspec +41 -22
- data/sig/lib/_internal/rails.rbs +58 -0
- data/sig/lib/meta_tags/configuration.rbs +19 -0
- data/sig/lib/meta_tags/content_tag.rbs +5 -0
- data/sig/lib/meta_tags/controller_helper.rbs +14 -0
- data/sig/lib/meta_tags/meta_tags_collection.rbs +41 -0
- data/sig/lib/meta_tags/renderer.rbs +50 -0
- data/sig/lib/meta_tags/tag.rbs +12 -0
- data/sig/lib/meta_tags/text_normalizer.rbs +36 -0
- data/sig/lib/meta_tags/version.rbs +4 -0
- data/sig/lib/meta_tags/view_helper.rbs +57 -0
- data/sig/lib/meta_tags.rbs +18 -0
- data.tar.gz.sig +0 -0
- metadata +165 -35
- metadata.gz.sig +0 -0
    
        data/Rakefile
    CHANGED
    
    | @@ -1,18 +1,56 @@ | |
| 1 1 | 
             
            # frozen_string_literal: true
         | 
| 2 2 |  | 
| 3 | 
            -
            require  | 
| 3 | 
            +
            require "bundler"
         | 
| 4 4 | 
             
            Bundler::GemHelper.install_tasks
         | 
| 5 5 |  | 
| 6 | 
            -
            require  | 
| 6 | 
            +
            require "rspec/core/rake_task"
         | 
| 7 7 | 
             
            RSpec::Core::RakeTask.new(:spec)
         | 
| 8 8 |  | 
| 9 | 
            +
            desc "Run RSpec tests"
         | 
| 9 10 | 
             
            task test: :spec
         | 
| 10 11 | 
             
            task default: :spec
         | 
| 11 12 |  | 
| 12 | 
            -
            desc  | 
| 13 | 
            +
            desc "Rebuild Circle CI configuration based on the build matrix template .circleci/config.yml.erb"
         | 
| 13 14 | 
             
            task :circleci do
         | 
| 14 | 
            -
              require  | 
| 15 | 
            -
              template_path = File.expand_path( | 
| 16 | 
            -
              config_path = File.expand_path( | 
| 15 | 
            +
              require "erb"
         | 
| 16 | 
            +
              template_path = File.expand_path(".circleci/config.yml.erb", __dir__)
         | 
| 17 | 
            +
              config_path = File.expand_path(".circleci/config.yml", __dir__)
         | 
| 17 18 | 
             
              File.write config_path, ERB.new(File.read(template_path)).result
         | 
| 18 19 | 
             
            end
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            module SteepRunner
         | 
| 22 | 
            +
              def self.run(*command)
         | 
| 23 | 
            +
                require "steep"
         | 
| 24 | 
            +
                require "steep/cli"
         | 
| 25 | 
            +
             | 
| 26 | 
            +
                Steep::CLI.new(argv: command, stdout: $stdout, stderr: $stderr, stdin: $stdin).run
         | 
| 27 | 
            +
              end
         | 
| 28 | 
            +
            end
         | 
| 29 | 
            +
             | 
| 30 | 
            +
            desc "Check type information"
         | 
| 31 | 
            +
            task steep: "steep:check"
         | 
| 32 | 
            +
             | 
| 33 | 
            +
            namespace :steep do
         | 
| 34 | 
            +
              desc "Check type information"
         | 
| 35 | 
            +
              task :check do
         | 
| 36 | 
            +
                SteepRunner.run("check")
         | 
| 37 | 
            +
              end
         | 
| 38 | 
            +
             | 
| 39 | 
            +
              desc "Print type statistics"
         | 
| 40 | 
            +
              task :stats do
         | 
| 41 | 
            +
                SteepRunner.run("stats", "--log-level=fatal")
         | 
| 42 | 
            +
              end
         | 
| 43 | 
            +
            end
         | 
| 44 | 
            +
             | 
| 45 | 
            +
            namespace :rbs do
         | 
| 46 | 
            +
              desc "Run RSpec tests with RBS enabled to test type signatures"
         | 
| 47 | 
            +
              task :spec do
         | 
| 48 | 
            +
                exec(
         | 
| 49 | 
            +
                  {
         | 
| 50 | 
            +
                    "RBS_TEST_TARGET" => "MetaTags::*",
         | 
| 51 | 
            +
                    "RUBYOPT" => "-rrbs/test/setup"
         | 
| 52 | 
            +
                  },
         | 
| 53 | 
            +
                  "bundle exec rspec"
         | 
| 54 | 
            +
                )
         | 
| 55 | 
            +
              end
         | 
| 56 | 
            +
            end
         | 
    
        data/Steepfile
    ADDED
    
    | @@ -0,0 +1,13 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            target :lib do
         | 
| 4 | 
            +
              signature "sig"
         | 
| 5 | 
            +
             | 
| 6 | 
            +
              check "lib"
         | 
| 7 | 
            +
              # check "Gemfile"
         | 
| 8 | 
            +
             | 
| 9 | 
            +
              # We don't want to type check Rails/RSpec related code
         | 
| 10 | 
            +
              # (because we don't have RBS files for it)
         | 
| 11 | 
            +
              ignore "lib/meta_tags/railtie.rb"
         | 
| 12 | 
            +
              ignore "lib/generators"
         | 
| 13 | 
            +
            end
         | 
    
        data/certs/kpumuk.pem
    CHANGED
    
    | @@ -1,20 +1,21 @@ | |
| 1 1 | 
             
            -----BEGIN CERTIFICATE-----
         | 
| 2 | 
            -
             | 
| 3 | 
            -
             | 
| 4 | 
            -
             | 
| 5 | 
            -
             | 
| 6 | 
            -
             | 
| 7 | 
            -
             | 
| 8 | 
            -
             | 
| 9 | 
            -
             | 
| 10 | 
            -
             | 
| 11 | 
            -
             | 
| 12 | 
            -
             | 
| 13 | 
            -
             | 
| 14 | 
            -
             | 
| 15 | 
            -
             | 
| 16 | 
            -
             | 
| 17 | 
            -
             | 
| 18 | 
            -
             | 
| 19 | 
            -
             | 
| 2 | 
            +
            MIIDcDCCAligAwIBAgIBATANBgkqhkiG9w0BAQsFADA/MQ8wDQYDVQQDDAZrcHVt
         | 
| 3 | 
            +
            dWsxFjAUBgoJkiaJk/IsZAEZFgZrcHVtdWsxFDASBgoJkiaJk/IsZAEZFgRpbmZv
         | 
| 4 | 
            +
            MB4XDTIzMDcwNjEyMjY0MVoXDTI0MDcwNTEyMjY0MVowPzEPMA0GA1UEAwwGa3B1
         | 
| 5 | 
            +
            bXVrMRYwFAYKCZImiZPyLGQBGRYGa3B1bXVrMRQwEgYKCZImiZPyLGQBGRYEaW5m
         | 
| 6 | 
            +
            bzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALw2YroZc+IT+rs8NuPu
         | 
| 7 | 
            +
            c13DelrxrpAgPEu1zuRb3l7WaHRNWA4TyS8Z6Aa1G2O+FdUZNMW1n7IwP/QMJ9Mz
         | 
| 8 | 
            +
            ahRBiTmhik5kasJ9s0h1lq5/hZiycm0o5OtGioUzCkvk+UEMpzMHbLmVSZCzYciy
         | 
| 9 | 
            +
            NDRDbXB0rLLu1eJk+gKgn6Qf5vj93h1w28BdWdaA7YegtbmipZ+pjmzCQAfPActT
         | 
| 10 | 
            +
            6uXHG4dSo7Lz9jiFRI5dUizFbGXcRqkQ2b5AB8FFmfcvbqERvzQKBICnybjsKP0N
         | 
| 11 | 
            +
            pJ3vGgO2sh5GvJFOPk1Vlur2nX9ZFznPEP1CEAQ+NFrmKRt355Z5sgOkAojSGnIL
         | 
| 12 | 
            +
            /1sCAwEAAaN3MHUwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFPa4
         | 
| 13 | 
            +
            VFc1YOlV1u/7EGTwMCAk8YE9MB0GA1UdEQQWMBSBEmtwdW11a0BrcHVtdWsuaW5m
         | 
| 14 | 
            +
            bzAdBgNVHRIEFjAUgRJrcHVtdWtAa3B1bXVrLmluZm8wDQYJKoZIhvcNAQELBQAD
         | 
| 15 | 
            +
            ggEBALwivjTzGErFzBtgPEQe7uO6DMysgm/OIF5jLFkvRiuFbuueHM2cUZZBx2Rd
         | 
| 16 | 
            +
            2R5uQS4uiZ5KA+3SkgWQOFOzpFlo7ywS5264ULCcvfix6NQpb2aIDsZuzWGBIDbs
         | 
| 17 | 
            +
            ixS+8wYslrzsOgUSn/RjF0sVB0dw4wv6G8YnVrR/Jf2SaO+Q2lYuKEOKfj52I+Yt
         | 
| 18 | 
            +
            TdFiOjR+WwXSxs/XdSdFtqK2q/THbZdk+HkAe8guvXYtD/fzO2mBlk2AQ0hV1Pxu
         | 
| 19 | 
            +
            ovz1LEphwrX/6v635mteXvl+OKWrNo1Q78sU364BgY5MvJMxFytmUrKMgO6RAiIM
         | 
| 20 | 
            +
            N9+lhJiLa7+h0LrvPPDZRhV8ze0=
         | 
| 20 21 | 
             
            -----END CERTIFICATE-----
         | 
| @@ -0,0 +1,200 @@ | |
| 1 | 
            +
            PATH
         | 
| 2 | 
            +
              remote: ..
         | 
| 3 | 
            +
              specs:
         | 
| 4 | 
            +
                meta-tags (2.19.0)
         | 
| 5 | 
            +
                  actionpack (>= 3.2.0, < 7.2)
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            GEM
         | 
| 8 | 
            +
              remote: https://rubygems.org/
         | 
| 9 | 
            +
              specs:
         | 
| 10 | 
            +
                actionpack (5.1.7)
         | 
| 11 | 
            +
                  actionview (= 5.1.7)
         | 
| 12 | 
            +
                  activesupport (= 5.1.7)
         | 
| 13 | 
            +
                  rack (~> 2.0)
         | 
| 14 | 
            +
                  rack-test (>= 0.6.3)
         | 
| 15 | 
            +
                  rails-dom-testing (~> 2.0)
         | 
| 16 | 
            +
                  rails-html-sanitizer (~> 1.0, >= 1.0.2)
         | 
| 17 | 
            +
                actionview (5.1.7)
         | 
| 18 | 
            +
                  activesupport (= 5.1.7)
         | 
| 19 | 
            +
                  builder (~> 3.1)
         | 
| 20 | 
            +
                  erubi (~> 1.4)
         | 
| 21 | 
            +
                  rails-dom-testing (~> 2.0)
         | 
| 22 | 
            +
                  rails-html-sanitizer (~> 1.0, >= 1.0.3)
         | 
| 23 | 
            +
                activesupport (5.1.7)
         | 
| 24 | 
            +
                  concurrent-ruby (~> 1.0, >= 1.0.2)
         | 
| 25 | 
            +
                  i18n (>= 0.7, < 2)
         | 
| 26 | 
            +
                  minitest (~> 5.1)
         | 
| 27 | 
            +
                  tzinfo (~> 1.1)
         | 
| 28 | 
            +
                appraisal (2.5.0)
         | 
| 29 | 
            +
                  bundler
         | 
| 30 | 
            +
                  rake
         | 
| 31 | 
            +
                  thor (>= 0.14.0)
         | 
| 32 | 
            +
                ast (2.4.2)
         | 
| 33 | 
            +
                base64 (0.1.1)
         | 
| 34 | 
            +
                builder (3.2.4)
         | 
| 35 | 
            +
                concurrent-ruby (1.2.2)
         | 
| 36 | 
            +
                crass (1.0.6)
         | 
| 37 | 
            +
                csv (3.2.7)
         | 
| 38 | 
            +
                diff-lcs (1.5.0)
         | 
| 39 | 
            +
                docile (1.4.0)
         | 
| 40 | 
            +
                erubi (1.12.0)
         | 
| 41 | 
            +
                ffi (1.16.3)
         | 
| 42 | 
            +
                fileutils (1.7.1)
         | 
| 43 | 
            +
                i18n (1.14.1)
         | 
| 44 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 45 | 
            +
                json (2.6.3)
         | 
| 46 | 
            +
                language_server-protocol (3.17.0.3)
         | 
| 47 | 
            +
                lint_roller (1.1.0)
         | 
| 48 | 
            +
                listen (3.8.0)
         | 
| 49 | 
            +
                  rb-fsevent (~> 0.10, >= 0.10.3)
         | 
| 50 | 
            +
                  rb-inotify (~> 0.9, >= 0.9.10)
         | 
| 51 | 
            +
                logger (1.5.3)
         | 
| 52 | 
            +
                loofah (2.21.3)
         | 
| 53 | 
            +
                  crass (~> 1.0.2)
         | 
| 54 | 
            +
                  nokogiri (>= 1.12.0)
         | 
| 55 | 
            +
                method_source (1.0.0)
         | 
| 56 | 
            +
                minitest (5.20.0)
         | 
| 57 | 
            +
                nokogiri (1.15.4-arm64-darwin)
         | 
| 58 | 
            +
                  racc (~> 1.4)
         | 
| 59 | 
            +
                parallel (1.23.0)
         | 
| 60 | 
            +
                parser (3.2.2.4)
         | 
| 61 | 
            +
                  ast (~> 2.4.1)
         | 
| 62 | 
            +
                  racc
         | 
| 63 | 
            +
                racc (1.7.1)
         | 
| 64 | 
            +
                rack (2.2.8)
         | 
| 65 | 
            +
                rack-test (2.1.0)
         | 
| 66 | 
            +
                  rack (>= 1.3)
         | 
| 67 | 
            +
                rails-dom-testing (2.2.0)
         | 
| 68 | 
            +
                  activesupport (>= 5.0.0)
         | 
| 69 | 
            +
                  minitest
         | 
| 70 | 
            +
                  nokogiri (>= 1.6)
         | 
| 71 | 
            +
                rails-html-sanitizer (1.6.0)
         | 
| 72 | 
            +
                  loofah (~> 2.21)
         | 
| 73 | 
            +
                  nokogiri (~> 1.14)
         | 
| 74 | 
            +
                railties (5.1.7)
         | 
| 75 | 
            +
                  actionpack (= 5.1.7)
         | 
| 76 | 
            +
                  activesupport (= 5.1.7)
         | 
| 77 | 
            +
                  method_source
         | 
| 78 | 
            +
                  rake (>= 0.8.7)
         | 
| 79 | 
            +
                  thor (>= 0.18.1, < 2.0)
         | 
| 80 | 
            +
                rainbow (3.1.1)
         | 
| 81 | 
            +
                rake (13.0.6)
         | 
| 82 | 
            +
                rb-fsevent (0.11.2)
         | 
| 83 | 
            +
                rb-inotify (0.10.1)
         | 
| 84 | 
            +
                  ffi (~> 1.0)
         | 
| 85 | 
            +
                rbs (3.2.2)
         | 
| 86 | 
            +
                regexp_parser (2.8.1)
         | 
| 87 | 
            +
                rexml (3.2.6)
         | 
| 88 | 
            +
                rspec (3.12.0)
         | 
| 89 | 
            +
                  rspec-core (~> 3.12.0)
         | 
| 90 | 
            +
                  rspec-expectations (~> 3.12.0)
         | 
| 91 | 
            +
                  rspec-mocks (~> 3.12.0)
         | 
| 92 | 
            +
                rspec-core (3.12.2)
         | 
| 93 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 94 | 
            +
                rspec-expectations (3.12.3)
         | 
| 95 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 96 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 97 | 
            +
                rspec-html-matchers (0.10.0)
         | 
| 98 | 
            +
                  nokogiri (~> 1)
         | 
| 99 | 
            +
                  rspec (>= 3.0.0.a)
         | 
| 100 | 
            +
                rspec-mocks (3.12.6)
         | 
| 101 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 102 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 103 | 
            +
                rspec-support (3.12.1)
         | 
| 104 | 
            +
                rspec_junit_formatter (0.6.0)
         | 
| 105 | 
            +
                  rspec-core (>= 2, < 4, != 2.12.0)
         | 
| 106 | 
            +
                rubocop (1.56.4)
         | 
| 107 | 
            +
                  base64 (~> 0.1.1)
         | 
| 108 | 
            +
                  json (~> 2.3)
         | 
| 109 | 
            +
                  language_server-protocol (>= 3.17.0)
         | 
| 110 | 
            +
                  parallel (~> 1.10)
         | 
| 111 | 
            +
                  parser (>= 3.2.2.3)
         | 
| 112 | 
            +
                  rainbow (>= 2.2.2, < 4.0)
         | 
| 113 | 
            +
                  regexp_parser (>= 1.8, < 3.0)
         | 
| 114 | 
            +
                  rexml (>= 3.2.5, < 4.0)
         | 
| 115 | 
            +
                  rubocop-ast (>= 1.28.1, < 2.0)
         | 
| 116 | 
            +
                  ruby-progressbar (~> 1.7)
         | 
| 117 | 
            +
                  unicode-display_width (>= 2.4.0, < 3.0)
         | 
| 118 | 
            +
                rubocop-ast (1.29.0)
         | 
| 119 | 
            +
                  parser (>= 3.2.1.0)
         | 
| 120 | 
            +
                rubocop-capybara (2.19.0)
         | 
| 121 | 
            +
                  rubocop (~> 1.41)
         | 
| 122 | 
            +
                rubocop-factory_bot (2.24.0)
         | 
| 123 | 
            +
                  rubocop (~> 1.33)
         | 
| 124 | 
            +
                rubocop-performance (1.19.1)
         | 
| 125 | 
            +
                  rubocop (>= 1.7.0, < 2.0)
         | 
| 126 | 
            +
                  rubocop-ast (>= 0.4.0)
         | 
| 127 | 
            +
                rubocop-rails (2.20.2)
         | 
| 128 | 
            +
                  activesupport (>= 4.2.0)
         | 
| 129 | 
            +
                  rack (>= 1.1)
         | 
| 130 | 
            +
                  rubocop (>= 1.33.0, < 2.0)
         | 
| 131 | 
            +
                rubocop-rake (0.6.0)
         | 
| 132 | 
            +
                  rubocop (~> 1.0)
         | 
| 133 | 
            +
                rubocop-rspec (2.23.2)
         | 
| 134 | 
            +
                  rubocop (~> 1.33)
         | 
| 135 | 
            +
                  rubocop-capybara (~> 2.17)
         | 
| 136 | 
            +
                  rubocop-factory_bot (~> 2.22)
         | 
| 137 | 
            +
                ruby-progressbar (1.13.0)
         | 
| 138 | 
            +
                securerandom (0.2.2)
         | 
| 139 | 
            +
                simplecov (0.22.0)
         | 
| 140 | 
            +
                  docile (~> 1.1)
         | 
| 141 | 
            +
                  simplecov-html (~> 0.11)
         | 
| 142 | 
            +
                  simplecov_json_formatter (~> 0.1)
         | 
| 143 | 
            +
                simplecov-html (0.12.3)
         | 
| 144 | 
            +
                simplecov_json_formatter (0.1.4)
         | 
| 145 | 
            +
                standard (1.31.1)
         | 
| 146 | 
            +
                  language_server-protocol (~> 3.17.0.2)
         | 
| 147 | 
            +
                  lint_roller (~> 1.0)
         | 
| 148 | 
            +
                  rubocop (~> 1.56.2)
         | 
| 149 | 
            +
                  standard-custom (~> 1.0.0)
         | 
| 150 | 
            +
                  standard-performance (~> 1.2)
         | 
| 151 | 
            +
                standard-custom (1.0.2)
         | 
| 152 | 
            +
                  lint_roller (~> 1.0)
         | 
| 153 | 
            +
                  rubocop (~> 1.50)
         | 
| 154 | 
            +
                standard-performance (1.2.0)
         | 
| 155 | 
            +
                  lint_roller (~> 1.1)
         | 
| 156 | 
            +
                  rubocop-performance (~> 1.19.0)
         | 
| 157 | 
            +
                steep (1.5.3)
         | 
| 158 | 
            +
                  activesupport (>= 5.1)
         | 
| 159 | 
            +
                  concurrent-ruby (>= 1.1.10)
         | 
| 160 | 
            +
                  csv (>= 3.0.9)
         | 
| 161 | 
            +
                  fileutils (>= 1.1.0)
         | 
| 162 | 
            +
                  json (>= 2.1.0)
         | 
| 163 | 
            +
                  language_server-protocol (>= 3.15, < 4.0)
         | 
| 164 | 
            +
                  listen (~> 3.0)
         | 
| 165 | 
            +
                  logger (>= 1.3.0)
         | 
| 166 | 
            +
                  parser (>= 3.1)
         | 
| 167 | 
            +
                  rainbow (>= 2.2.2, < 4.0)
         | 
| 168 | 
            +
                  rbs (>= 3.1.0)
         | 
| 169 | 
            +
                  securerandom (>= 0.1)
         | 
| 170 | 
            +
                  strscan (>= 1.0.0)
         | 
| 171 | 
            +
                  terminal-table (>= 2, < 4)
         | 
| 172 | 
            +
                strscan (3.0.6)
         | 
| 173 | 
            +
                terminal-table (3.0.2)
         | 
| 174 | 
            +
                  unicode-display_width (>= 1.1.1, < 3)
         | 
| 175 | 
            +
                thor (1.2.2)
         | 
| 176 | 
            +
                thread_safe (0.3.6)
         | 
| 177 | 
            +
                tzinfo (1.2.11)
         | 
| 178 | 
            +
                  thread_safe (~> 0.1)
         | 
| 179 | 
            +
                unicode-display_width (2.5.0)
         | 
| 180 | 
            +
             | 
| 181 | 
            +
            PLATFORMS
         | 
| 182 | 
            +
              arm64-darwin
         | 
| 183 | 
            +
             | 
| 184 | 
            +
            DEPENDENCIES
         | 
| 185 | 
            +
              appraisal (~> 2.5.0)
         | 
| 186 | 
            +
              meta-tags!
         | 
| 187 | 
            +
              railties (= 5.1.7)
         | 
| 188 | 
            +
              rake (~> 13.0)
         | 
| 189 | 
            +
              rspec (~> 3.12.0)
         | 
| 190 | 
            +
              rspec-html-matchers (~> 0.10.0)
         | 
| 191 | 
            +
              rspec_junit_formatter (~> 0.6.0)
         | 
| 192 | 
            +
              rubocop-rails (~> 2.20.2)
         | 
| 193 | 
            +
              rubocop-rake (~> 0.6.0)
         | 
| 194 | 
            +
              rubocop-rspec (~> 2.23.0)
         | 
| 195 | 
            +
              simplecov (~> 0.22.0)
         | 
| 196 | 
            +
              standard (~> 1.29)
         | 
| 197 | 
            +
              steep (~> 1.5.2)
         | 
| 198 | 
            +
             | 
| 199 | 
            +
            BUNDLED WITH
         | 
| 200 | 
            +
               2.4.10
         | 
| @@ -0,0 +1,200 @@ | |
| 1 | 
            +
            PATH
         | 
| 2 | 
            +
              remote: ..
         | 
| 3 | 
            +
              specs:
         | 
| 4 | 
            +
                meta-tags (2.19.0)
         | 
| 5 | 
            +
                  actionpack (>= 3.2.0, < 7.2)
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            GEM
         | 
| 8 | 
            +
              remote: https://rubygems.org/
         | 
| 9 | 
            +
              specs:
         | 
| 10 | 
            +
                actionpack (5.2.8.1)
         | 
| 11 | 
            +
                  actionview (= 5.2.8.1)
         | 
| 12 | 
            +
                  activesupport (= 5.2.8.1)
         | 
| 13 | 
            +
                  rack (~> 2.0, >= 2.0.8)
         | 
| 14 | 
            +
                  rack-test (>= 0.6.3)
         | 
| 15 | 
            +
                  rails-dom-testing (~> 2.0)
         | 
| 16 | 
            +
                  rails-html-sanitizer (~> 1.0, >= 1.0.2)
         | 
| 17 | 
            +
                actionview (5.2.8.1)
         | 
| 18 | 
            +
                  activesupport (= 5.2.8.1)
         | 
| 19 | 
            +
                  builder (~> 3.1)
         | 
| 20 | 
            +
                  erubi (~> 1.4)
         | 
| 21 | 
            +
                  rails-dom-testing (~> 2.0)
         | 
| 22 | 
            +
                  rails-html-sanitizer (~> 1.0, >= 1.0.3)
         | 
| 23 | 
            +
                activesupport (5.2.8.1)
         | 
| 24 | 
            +
                  concurrent-ruby (~> 1.0, >= 1.0.2)
         | 
| 25 | 
            +
                  i18n (>= 0.7, < 2)
         | 
| 26 | 
            +
                  minitest (~> 5.1)
         | 
| 27 | 
            +
                  tzinfo (~> 1.1)
         | 
| 28 | 
            +
                appraisal (2.5.0)
         | 
| 29 | 
            +
                  bundler
         | 
| 30 | 
            +
                  rake
         | 
| 31 | 
            +
                  thor (>= 0.14.0)
         | 
| 32 | 
            +
                ast (2.4.2)
         | 
| 33 | 
            +
                base64 (0.1.1)
         | 
| 34 | 
            +
                builder (3.2.4)
         | 
| 35 | 
            +
                concurrent-ruby (1.2.2)
         | 
| 36 | 
            +
                crass (1.0.6)
         | 
| 37 | 
            +
                csv (3.2.7)
         | 
| 38 | 
            +
                diff-lcs (1.5.0)
         | 
| 39 | 
            +
                docile (1.4.0)
         | 
| 40 | 
            +
                erubi (1.12.0)
         | 
| 41 | 
            +
                ffi (1.16.3)
         | 
| 42 | 
            +
                fileutils (1.7.1)
         | 
| 43 | 
            +
                i18n (1.14.1)
         | 
| 44 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 45 | 
            +
                json (2.6.3)
         | 
| 46 | 
            +
                language_server-protocol (3.17.0.3)
         | 
| 47 | 
            +
                lint_roller (1.1.0)
         | 
| 48 | 
            +
                listen (3.8.0)
         | 
| 49 | 
            +
                  rb-fsevent (~> 0.10, >= 0.10.3)
         | 
| 50 | 
            +
                  rb-inotify (~> 0.9, >= 0.9.10)
         | 
| 51 | 
            +
                logger (1.5.3)
         | 
| 52 | 
            +
                loofah (2.21.3)
         | 
| 53 | 
            +
                  crass (~> 1.0.2)
         | 
| 54 | 
            +
                  nokogiri (>= 1.12.0)
         | 
| 55 | 
            +
                method_source (1.0.0)
         | 
| 56 | 
            +
                minitest (5.20.0)
         | 
| 57 | 
            +
                nokogiri (1.15.4-arm64-darwin)
         | 
| 58 | 
            +
                  racc (~> 1.4)
         | 
| 59 | 
            +
                parallel (1.23.0)
         | 
| 60 | 
            +
                parser (3.2.2.4)
         | 
| 61 | 
            +
                  ast (~> 2.4.1)
         | 
| 62 | 
            +
                  racc
         | 
| 63 | 
            +
                racc (1.7.1)
         | 
| 64 | 
            +
                rack (2.2.8)
         | 
| 65 | 
            +
                rack-test (2.1.0)
         | 
| 66 | 
            +
                  rack (>= 1.3)
         | 
| 67 | 
            +
                rails-dom-testing (2.2.0)
         | 
| 68 | 
            +
                  activesupport (>= 5.0.0)
         | 
| 69 | 
            +
                  minitest
         | 
| 70 | 
            +
                  nokogiri (>= 1.6)
         | 
| 71 | 
            +
                rails-html-sanitizer (1.6.0)
         | 
| 72 | 
            +
                  loofah (~> 2.21)
         | 
| 73 | 
            +
                  nokogiri (~> 1.14)
         | 
| 74 | 
            +
                railties (5.2.8.1)
         | 
| 75 | 
            +
                  actionpack (= 5.2.8.1)
         | 
| 76 | 
            +
                  activesupport (= 5.2.8.1)
         | 
| 77 | 
            +
                  method_source
         | 
| 78 | 
            +
                  rake (>= 0.8.7)
         | 
| 79 | 
            +
                  thor (>= 0.19.0, < 2.0)
         | 
| 80 | 
            +
                rainbow (3.1.1)
         | 
| 81 | 
            +
                rake (13.0.6)
         | 
| 82 | 
            +
                rb-fsevent (0.11.2)
         | 
| 83 | 
            +
                rb-inotify (0.10.1)
         | 
| 84 | 
            +
                  ffi (~> 1.0)
         | 
| 85 | 
            +
                rbs (3.2.2)
         | 
| 86 | 
            +
                regexp_parser (2.8.1)
         | 
| 87 | 
            +
                rexml (3.2.6)
         | 
| 88 | 
            +
                rspec (3.12.0)
         | 
| 89 | 
            +
                  rspec-core (~> 3.12.0)
         | 
| 90 | 
            +
                  rspec-expectations (~> 3.12.0)
         | 
| 91 | 
            +
                  rspec-mocks (~> 3.12.0)
         | 
| 92 | 
            +
                rspec-core (3.12.2)
         | 
| 93 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 94 | 
            +
                rspec-expectations (3.12.3)
         | 
| 95 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 96 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 97 | 
            +
                rspec-html-matchers (0.10.0)
         | 
| 98 | 
            +
                  nokogiri (~> 1)
         | 
| 99 | 
            +
                  rspec (>= 3.0.0.a)
         | 
| 100 | 
            +
                rspec-mocks (3.12.6)
         | 
| 101 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 102 | 
            +
                  rspec-support (~> 3.12.0)
         | 
| 103 | 
            +
                rspec-support (3.12.1)
         | 
| 104 | 
            +
                rspec_junit_formatter (0.6.0)
         | 
| 105 | 
            +
                  rspec-core (>= 2, < 4, != 2.12.0)
         | 
| 106 | 
            +
                rubocop (1.56.4)
         | 
| 107 | 
            +
                  base64 (~> 0.1.1)
         | 
| 108 | 
            +
                  json (~> 2.3)
         | 
| 109 | 
            +
                  language_server-protocol (>= 3.17.0)
         | 
| 110 | 
            +
                  parallel (~> 1.10)
         | 
| 111 | 
            +
                  parser (>= 3.2.2.3)
         | 
| 112 | 
            +
                  rainbow (>= 2.2.2, < 4.0)
         | 
| 113 | 
            +
                  regexp_parser (>= 1.8, < 3.0)
         | 
| 114 | 
            +
                  rexml (>= 3.2.5, < 4.0)
         | 
| 115 | 
            +
                  rubocop-ast (>= 1.28.1, < 2.0)
         | 
| 116 | 
            +
                  ruby-progressbar (~> 1.7)
         | 
| 117 | 
            +
                  unicode-display_width (>= 2.4.0, < 3.0)
         | 
| 118 | 
            +
                rubocop-ast (1.29.0)
         | 
| 119 | 
            +
                  parser (>= 3.2.1.0)
         | 
| 120 | 
            +
                rubocop-capybara (2.19.0)
         | 
| 121 | 
            +
                  rubocop (~> 1.41)
         | 
| 122 | 
            +
                rubocop-factory_bot (2.24.0)
         | 
| 123 | 
            +
                  rubocop (~> 1.33)
         | 
| 124 | 
            +
                rubocop-performance (1.19.1)
         | 
| 125 | 
            +
                  rubocop (>= 1.7.0, < 2.0)
         | 
| 126 | 
            +
                  rubocop-ast (>= 0.4.0)
         | 
| 127 | 
            +
                rubocop-rails (2.20.2)
         | 
| 128 | 
            +
                  activesupport (>= 4.2.0)
         | 
| 129 | 
            +
                  rack (>= 1.1)
         | 
| 130 | 
            +
                  rubocop (>= 1.33.0, < 2.0)
         | 
| 131 | 
            +
                rubocop-rake (0.6.0)
         | 
| 132 | 
            +
                  rubocop (~> 1.0)
         | 
| 133 | 
            +
                rubocop-rspec (2.23.2)
         | 
| 134 | 
            +
                  rubocop (~> 1.33)
         | 
| 135 | 
            +
                  rubocop-capybara (~> 2.17)
         | 
| 136 | 
            +
                  rubocop-factory_bot (~> 2.22)
         | 
| 137 | 
            +
                ruby-progressbar (1.13.0)
         | 
| 138 | 
            +
                securerandom (0.2.2)
         | 
| 139 | 
            +
                simplecov (0.22.0)
         | 
| 140 | 
            +
                  docile (~> 1.1)
         | 
| 141 | 
            +
                  simplecov-html (~> 0.11)
         | 
| 142 | 
            +
                  simplecov_json_formatter (~> 0.1)
         | 
| 143 | 
            +
                simplecov-html (0.12.3)
         | 
| 144 | 
            +
                simplecov_json_formatter (0.1.4)
         | 
| 145 | 
            +
                standard (1.31.1)
         | 
| 146 | 
            +
                  language_server-protocol (~> 3.17.0.2)
         | 
| 147 | 
            +
                  lint_roller (~> 1.0)
         | 
| 148 | 
            +
                  rubocop (~> 1.56.2)
         | 
| 149 | 
            +
                  standard-custom (~> 1.0.0)
         | 
| 150 | 
            +
                  standard-performance (~> 1.2)
         | 
| 151 | 
            +
                standard-custom (1.0.2)
         | 
| 152 | 
            +
                  lint_roller (~> 1.0)
         | 
| 153 | 
            +
                  rubocop (~> 1.50)
         | 
| 154 | 
            +
                standard-performance (1.2.0)
         | 
| 155 | 
            +
                  lint_roller (~> 1.1)
         | 
| 156 | 
            +
                  rubocop-performance (~> 1.19.0)
         | 
| 157 | 
            +
                steep (1.5.3)
         | 
| 158 | 
            +
                  activesupport (>= 5.1)
         | 
| 159 | 
            +
                  concurrent-ruby (>= 1.1.10)
         | 
| 160 | 
            +
                  csv (>= 3.0.9)
         | 
| 161 | 
            +
                  fileutils (>= 1.1.0)
         | 
| 162 | 
            +
                  json (>= 2.1.0)
         | 
| 163 | 
            +
                  language_server-protocol (>= 3.15, < 4.0)
         | 
| 164 | 
            +
                  listen (~> 3.0)
         | 
| 165 | 
            +
                  logger (>= 1.3.0)
         | 
| 166 | 
            +
                  parser (>= 3.1)
         | 
| 167 | 
            +
                  rainbow (>= 2.2.2, < 4.0)
         | 
| 168 | 
            +
                  rbs (>= 3.1.0)
         | 
| 169 | 
            +
                  securerandom (>= 0.1)
         | 
| 170 | 
            +
                  strscan (>= 1.0.0)
         | 
| 171 | 
            +
                  terminal-table (>= 2, < 4)
         | 
| 172 | 
            +
                strscan (3.0.6)
         | 
| 173 | 
            +
                terminal-table (3.0.2)
         | 
| 174 | 
            +
                  unicode-display_width (>= 1.1.1, < 3)
         | 
| 175 | 
            +
                thor (1.2.2)
         | 
| 176 | 
            +
                thread_safe (0.3.6)
         | 
| 177 | 
            +
                tzinfo (1.2.11)
         | 
| 178 | 
            +
                  thread_safe (~> 0.1)
         | 
| 179 | 
            +
                unicode-display_width (2.5.0)
         | 
| 180 | 
            +
             | 
| 181 | 
            +
            PLATFORMS
         | 
| 182 | 
            +
              arm64-darwin
         | 
| 183 | 
            +
             | 
| 184 | 
            +
            DEPENDENCIES
         | 
| 185 | 
            +
              appraisal (~> 2.5.0)
         | 
| 186 | 
            +
              meta-tags!
         | 
| 187 | 
            +
              railties (= 5.2.8.1)
         | 
| 188 | 
            +
              rake (~> 13.0)
         | 
| 189 | 
            +
              rspec (~> 3.12.0)
         | 
| 190 | 
            +
              rspec-html-matchers (~> 0.10.0)
         | 
| 191 | 
            +
              rspec_junit_formatter (~> 0.6.0)
         | 
| 192 | 
            +
              rubocop-rails (~> 2.20.2)
         | 
| 193 | 
            +
              rubocop-rake (~> 0.6.0)
         | 
| 194 | 
            +
              rubocop-rspec (~> 2.23.0)
         | 
| 195 | 
            +
              simplecov (~> 0.22.0)
         | 
| 196 | 
            +
              standard (~> 1.29)
         | 
| 197 | 
            +
              steep (~> 1.5.2)
         | 
| 198 | 
            +
             | 
| 199 | 
            +
            BUNDLED WITH
         | 
| 200 | 
            +
               2.4.10
         |