[
  {
    "path": ".github/stale.yml",
    "content": "# Number of days of inactivity before an issue becomes stale\ndaysUntilStale: 30\n# Number of days of inactivity before a stale issue is closed\ndaysUntilClose: 7\n# Issues with these labels will never be considered stale\nexemptLabels:\n  - pinned\n  - security\n# Label to use when marking an issue as stale\nstaleLabel: wontfix\n# Comment to post when marking an issue as stale. Set to `false` to disable\nmarkComment: >\n  This issue has been automatically marked as stale because it has not had\n  recent activity. It will be closed if no further activity occurs. Thank you\n  for your contributions.\n# Comment to post when closing a stale issue. Set to `false` to disable\ncloseComment: false"
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "name: CI\non: [push]\njobs:\n  test:\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        ruby: [2.5, 2.6, 2.7]\n    steps:\n      - name: Checkout\n        uses: actions/checkout@master\n\n      - name: Setup Ruby\n        uses: actions/setup-ruby@v1\n        with:\n          ruby-version: ${{ matrix.ruby }}\n\n      - name: Install Dependencies\n        run: |\n          sudo apt-get update\n          sudo apt-get install libsqlite3-dev\n          gem update --system\n          gem install bundler\n          bundle install --jobs 4 --retry 3\n\n      - name: Test against rails main\n        if: ${{ matrix.ruby == 2.7 }}\n        run: |\n          bundle exec appraisal rails-main bundle install\n          bundle exec appraisal rails-main rake test\n      - name: Test against rails 6.0\n        run: |\n          bundle exec appraisal rails-6-0 bundle install\n          bundle exec appraisal rails-6-0 rake test\n      - name: Test against rails 5.2\n        run: |\n          bundle exec appraisal rails-5-2 bundle install\n          bundle exec appraisal rails-5-2 rake test\n\n  lint:\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        ruby: [2.6]\n    steps:\n      - uses: actions/checkout@v2\n      - uses: ruby/setup-ruby@v1\n        with:\n          ruby-version: ${{ matrix.ruby }}\n          bundler-cache: true\n      - run: bundle exec rake lint\n"
  },
  {
    "path": ".gitignore",
    "content": ".bundle/\nlog/*.log\npkg/\ntest/dummy/db/*.sqlite3\ntest/dummy/db/*.sqlite3-journal\ntest/dummy/db/*.sqlite3-*\ntest/dummy/log/*.log\ntest/dummy/storage/\ntest/dummy/tmp/\n\ngemfiles/*.gemfile.lock\n\nGemfile.lock"
  },
  {
    "path": ".standard.yml",
    "content": "fix: true\nformat: progress\nparallel: true"
  },
  {
    "path": "Appraisals",
    "content": "appraise \"rails-5-2\" do\n  gem \"rails\", \"~> 5.2\"\nend\n\nappraise \"rails-6-0\" do\n  gem \"rails\", \"~> 6.0\"\nend\n\nappraise \"rails-main\" do\n  gem \"rails\", git: \"https://github.com/rails/rails.git\", ref: \"main\"\nend\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "# Changelog\n\nAll notable changes to this project will be documented in this file.\n\nThis project adheres to [Semantic Versioning](https://semver.org).\n\nThis file is auto-generated so please do not edit it.\n\n----\n## [1.0.0] - Sep  2, 2022\n758969c\n### Changes\n- Heroicons v2.0.10 (#19)\n----\n## [0.4.0] - Aug 19, 2021\n257a1a3\n### Changes\n- Update icons based on heroicons v1.0.1 (#5) \n### Features\n- Add Default Class Option (#10)\n----\n## [0.3.0] - Apr  1, 2021\n109e472\n### Features\n- Allow HTML attributes in options (#3)\n----\n## [0.2.3] - Feb  3, 2021\nb30c44e\n### Bug Fixes\n- Adjust keyword argument delegation to support Ruby 3.0 (#2) \n### Changes\n- Update Tests to use Rails main\n----\n## [0.2.2] - Jan 21, 2021\nf8f5628\n### Changes\n- Reads icons directly from file rather than using asset pipeline \n- Update README to match Official Heroicon Package Version\n----\n## [0.2.1] - Jan 15, 2021\n7550bc5\n\n----\n## [0.2.0] - Dec 19, 2020\nc357e2d\n\n----"
  },
  {
    "path": "Gemfile",
    "content": "# frozen_string_literal: true\n\nsource \"https://rubygems.org\"\ngit_source(:github) { |repo| \"https://github.com/#{repo}.git\" }\n\n# Declare your gem's dependencies in heroicon.gemspec.\n# Bundler will treat runtime dependencies like base dependencies, and\n# development dependencies will be added by default to the :development group.\ngemspec\n\n# Declare any dependencies that are still in development here instead of in\n# your gemspec. These might include edge Rails or gems from your path or\n# Git. Remember to move these dependencies to your gemspec before releasing\n# your gem to rubygems.org.\n\n# To use a debugger\n# gem 'byebug', group: [:development, :test]\n"
  },
  {
    "path": "MIT-LICENSE",
    "content": "Copyright 2020 Benjamin Hargett\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# Heroicon\n\n[![Build Status](https://github.com/bharget/heroicon/workflows/CI/badge.svg)](https://github.com/bharget/heroicon/actions)\n[![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://github.com/testdouble/standard)\n\nRuby on Rails view helpers for the beautiful hand-crafted SVG icons, Heroicons.\n\nUsed in production at [beehiiv 🐝](https://www.beehiiv.com/?utm_source=bharget_github)\n\nThis gem has no official affiliation with Tailwind CSS or the Heroicon team (yet!). Check out their sites:\n\n- [Tailwind CSS](https://tailwindcss.com/?utm_source=bharget_github)\n- [Tailwind UI](https://tailwindui.com/?utm_source=bharget_github)\n- [Heroicons](https://heroicons.com/?utm_source=bharget_github)\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem \"heroicon\"\n```\n\nAnd then execute:\n\n```bash\n$ bundle\n```\n\nRun the installer\n\n```bash\n$ rails g heroicon:install\n```\n\n## Usage\n\nTo use a icon in your views, simply use the provided view helper with the name of an icon.\n\n```rb\n<%= heroicon \"magnifying-glass\" %>\n```\n\nHeroicon comes with 3 variants, `:outline`, `:solid` and `:mini`. The default variant is `:solid`. This can be changed in `config/initializers/heroicon.rb`, which is generated during installation (See [Configuration](#configuration)). To overwrite this in the view, use\n\n```rb\n<%= heroicon \"magnifying-glass\", variant: :outline %>\n```\n\nYou can also pass HTML options directly to the icon.\n\n```rb\n<%= heroicon \"magnifying-glass\", options: { class: \"text-primary-500\" } %>\n```\n\nHeroicon currently supports icons matching [`Version 2.0.10`](https://github.com/tailwindlabs/heroicons/releases/tag/v2.0.10). If there is an icon that is missing or a new version released, feel free to contribute by following our contributing guide below.\n\n# Configuration\n\nAfter running `rails g heroicon:install` in the installation step, a configuration file will be created at `config/initializers/heroicon.rb`.\n\nCurrently there are two configuration options:\n\n- `variant`: The default variant to use if no variant is specified in the view.\n  - You can set this to either `:outline` or `:solid`. Defaults to `:solid`.\n- `default_class`: A default class that gets applied to every icon.\n  - This accepts either a String to apply to every icon, or a Hash, which applies the class based on the variant of the icon (see the example below).\n  - You can disable this on a per-icon basis by passing `disable_default_class: true` in the options hash within the view.\n\n**Note:** If you enable the `default_class` config, make sure to include `config/intializers/heroicon.rb` in the list of purged paths. For TailwindCSS 3.0+, you should have something like this in your `tailwind.config.js`:\n\n```js\nmodule.exports = {\n  //...\n  content: [\n    './app/helpers/**/*.rb',\n    './app/javascript/**/*.js',\n    './app/views/**/*',\n    './config/initializers/heroicon.rb', // 👈\n  ],\n  //...\n}\n```\n\nAn example configuration looks like this:\n\n```ruby\nHeroicon.configure do |config|\n  config.variant = :solid\n  config.default_class = {solid: \"h-6 w-6\", outline: \"h-6 w-6\", mini: \"h-5 w-5\"}\nend\n```\n\nDisabling the default class in the view:\n\n```rb\n<%= heroicon \"magnifying-glass\", options: { class: \"custom-class\", disable_default_class: true } %>\n```\n\n## Contributing\n\nAnyone is encouraged to help improve this project. Here are a few ways you can help:\n\n- [Report bugs](https://github.com/bharget/heroicon/issues)\n- Fix bugs and [submit pull requests](https://github.com/bharget/heroicon/pulls)\n- Write, clarify, or fix documentation\n- Suggest or add new features\n\nTo get started with development:\n\n```\ngit clone https://github.com/bharget/heroicon.git\ncd heroicon\nbundle install\nbundle exec rake test\n```\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n"
  },
  {
    "path": "Rakefile",
    "content": "# frozen_string_literal: true\n\nrequire \"bundler/gem_tasks\"\n\ntask default: %i[lint test]\n\nnamespace :test do\n  task :refresh do\n    sh \"bin/appraisal clean\"\n    sh \"bin/appraisal generate\"\n  end\n\n  task :all do\n    sh \"bin/appraisal install\"\n    sh \"bin/appraisal bin/rake test\"\n  end\nend\n\ntask :test do\n  sh \"bin/test\"\nend\n\ntask :lint do\n  sh \"bin/standardrb --no-fix\"\nend\n\nnamespace :changelog do\n  task :refresh do\n    sh \"bin/refresh_changelog\"\n  end\nend\n"
  },
  {
    "path": "app/helpers/heroicon/application_helper.rb",
    "content": "# frozen_string_literal: true\n\nmodule Heroicon\n  module ApplicationHelper\n    def heroicon(name, variant: Heroicon.configuration.variant, options: {}, path_options: {})\n      raw Heroicon::Icon.render(\n        name: name,\n        variant: variant,\n        options: options,\n        path_options: path_options\n      )\n    end\n  end\nend\n"
  },
  {
    "path": "bin/appraisal",
    "content": "#!/usr/bin/env ruby\n# frozen_string_literal: true\n\n#\n# This file was generated by Bundler.\n#\n# The application 'appraisal' is installed as part of a gem, and\n# this file is here to facilitate running it.\n#\n\nrequire \"pathname\"\nENV[\"BUNDLE_GEMFILE\"] ||= File.expand_path(\"../../Gemfile\",\n  Pathname.new(__FILE__).realpath)\n\nbundle_binstub = File.expand_path(\"../bundle\", __FILE__)\n\nif File.file?(bundle_binstub)\n  if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/\n    load(bundle_binstub)\n  else\n    abort(\"Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.\nReplace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.\")\n  end\nend\n\nrequire \"rubygems\"\nrequire \"bundler/setup\"\n\nload Gem.bin_path(\"appraisal\", \"appraisal\")\n"
  },
  {
    "path": "bin/publish",
    "content": "#!/usr/bin/env ruby\n# frozen_string_literal: true\n\nrequire \"bundler/gem_tasks\"\nrequire \"pathname\"\n\nRELEASE_TYPE = ARGV[0]\n\nclass BranchCheck\n  attr_reader :allowed_branch_prefix, :current_branch\n\n  def initialize\n    @current_branch = `git rev-parse --abbrev-ref HEAD`.strip\n    @allowed_branch_prefix = \"release-\"\n  end\n\n  def check\n    return true if valid?\n\n    abort(\"\\nError: Not on a valid release branch. Must begin with '#{allowed_branch_prefix}'.\\n\")\n  end\n\n  def valid?\n    current_branch.start_with?(allowed_branch_prefix)\n  end\nend\n\nclass GitCheck\n  attr_reader :diff\n\n  def initialize\n    @diff = `git status -s`\n  end\n\n  def check\n    return true if valid?\n\n    abort(\"\\nError: Git working tree is dirty. Please commit or stash your changes.\\n\")\n  end\n\n  def valid?\n    diff.empty?\n  end\nend\n\nclass ReleaseTypeCheck\n  attr_reader :allowed_release_types, :release_type\n\n  def initialize\n    @release_type = RELEASE_TYPE\n    @allowed_release_types = %w[major minor patch]\n  end\n\n  def check\n    return true if valid?\n\n    abort(\"\\nError: Release type #{release_type} is invalid; must be one of #{allowed_release_types}.\\n\")\n  end\n\n  def valid?\n    allowed_release_types.include? release_type\n  end\nend\n\nclass RubyGemsCheck\n  def check\n    return true if valid?\n\n    abort(\"\\nError: You must be logged in to RubyGems. Run 'gem signin'\")\n  end\n\n  def valid?\n    `gem signin`.empty?\n  end\nend\n\n[ReleaseTypeCheck, BranchCheck, GitCheck, RubyGemsCheck].each do |check_class|\n  check_class.new.check\nend\n\nAPP_ROOT = Pathname.new File.expand_path(\"..\", __dir__)\n\ncurrent_version = Heroicon::VERSION.split(\".\").map(&:to_i)\n\ncase RELEASE_TYPE\nwhen \"major\"\n  current_version[0] += 1\n  current_version[1] = 0\n  current_version[2] = 0\nwhen \"minor\"\n  current_version[1] += 1\n  current_version[2] = 0\nwhen \"patch\"\n  current_version[2] += 1\nend\n\nnew_version = current_version.join(\".\")\n\nputs \"--- Updating version to #{new_version} ---\"\n\nversion_file_contents = <<~FILE\n  # frozen_string_literal: true\n\n  module Heroicon\n    VERSION = \"#{new_version}\"\n  end\nFILE\n\nFile.write(\"#{APP_ROOT}/lib/heroicon/version.rb\", version_file_contents)\n\nputs \"--- Updating CHANGELOG ---\"\n`bundle exec rake changelog:refresh`\n\nputs \"--- Adding Files ---\"\n`git add .`\n\nputs \"--- Commiting Changes ---\"\n`git commit -m 'Bump version to #{new_version}'`\n\nputs \"--- Pushing Changes ---\"\n\ncurrent_branch = `git rev-parse --abbrev-ref HEAD`.strip\n`git push -u origin #{current_branch}`\n\nputs \"--- Ready ---\"\nputs \"To finish the release, merge the release into master, pull master locally, and run 'bundle exec rake release'.\"\n"
  },
  {
    "path": "bin/rails",
    "content": "#!/usr/bin/env ruby\n# frozen_string_literal: true\n\n# This command will automatically be run when you run \"rails\" with Rails gems\n# installed from the root of your application.\n\nENGINE_ROOT = File.expand_path(\"..\", __dir__)\nENGINE_PATH = File.expand_path(\"../lib/heroicon/engine\", __dir__)\nAPP_PATH = File.expand_path(\"../test/dummy/config/application\", __dir__)\n\n# Set up gems listed in the Gemfile.\nENV[\"BUNDLE_GEMFILE\"] ||= File.expand_path(\"../Gemfile\", __dir__)\nrequire \"bundler/setup\" if File.exist?(ENV[\"BUNDLE_GEMFILE\"])\n\nrequire \"rails/all\"\nrequire \"rails/engine/commands\"\n"
  },
  {
    "path": "bin/rake",
    "content": "#!/usr/bin/env ruby\n# frozen_string_literal: true\n\n#\n# This file was generated by Bundler.\n#\n# The application 'rake' is installed as part of a gem, and\n# this file is here to facilitate running it.\n#\n\nrequire \"pathname\"\nENV[\"BUNDLE_GEMFILE\"] ||= File.expand_path(\"../../Gemfile\",\n  Pathname.new(__FILE__).realpath)\n\nbundle_binstub = File.expand_path(\"../bundle\", __FILE__)\n\nif File.file?(bundle_binstub)\n  if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/\n    load(bundle_binstub)\n  else\n    abort(\"Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.\nReplace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.\")\n  end\nend\n\nrequire \"rubygems\"\nrequire \"bundler/setup\"\n\nload Gem.bin_path(\"rake\", \"rake\")\n"
  },
  {
    "path": "bin/refresh_changelog",
    "content": "#!/usr/bin/env ruby\n# frozen_string_literal: true\n\nrequire \"heroicon/version\"\nrequire \"active_support/core_ext/module/delegation\"\nrequire \"date\"\n\nmodule AutoChangelog\n  class Configuration\n    attr_accessor :app_version\n    attr_accessor :entry_sections\n    attr_accessor :filename\n\n    def initialize\n      @app_version = nil\n      @entry_sections = []\n      @filename = \"CHANGELOG.md\"\n    end\n  end\n\n  class Log\n    delegate \\\n      :app_version,\n      :entry_sections,\n      :filename,\n      to: \"AutoChangelog.configuration\"\n\n    def initialize\n      @log = read_changelog\n    end\n\n    def refresh\n      add_changelog_entry\n\n      File.write(filename, @log)\n    end\n\n    private\n\n    ##\n    # Generates a new changelog entry for the current version and\n    # adds it to the contents of the file.\n    #\n    # The logic takes into account if this is the first entry being\n    # generated or if there has already been an entry generated for\n    # the current version and overwrites it.\n    def add_changelog_entry\n      if most_recent_entry.empty?\n        @log += \"\\n#{text_to_replace}\"\n      elsif most_recent_entry_for_current_version?\n        @log[most_recent_entry] = text_to_replace\n      end\n\n      @log[text_to_replace] = entry_text.strip\n    end\n\n    def current_commit_sha\n      @current_commit_sha ||= `git rev-parse --short HEAD`.strip\n    end\n\n    def default_header_text\n      <<~HEADER\n        # Changelog\n\n        All notable changes to this project will be documented in this file.\n\n        This project adheres to [Semantic Versioning](https://semver.org).\n\n        This file is auto-generated so please do not edit it.\n      HEADER\n    end\n\n    ##\n    # Generate the text for a given entry section\n    #\n    # Example:\n    #   ### Section Title\n    #   - Git commit message\n    #   - Git commit message\n    def entry_section_text(section)\n      git_messages_by_marker(section[:marker]).then do |git_messages|\n        return \"\" if git_messages.empty?\n\n        section_header = \"### #{section[:title]}\\n\"\n\n        section_header + git_messages.map { |message| \"- #{message}\\n\" }.join\n      end\n    end\n\n    ##\n    # Generate the text for each entry section and join it together\n    def entry_sections_text\n      entry_sections.map { |section| entry_section_text(section) }.join.strip\n    end\n\n    ##\n    # Example:\n    #   ----\n    #   ## [0.1.0] - Sept. 12, 2020\n    #   5a95ec3\n    #   ### Bug Fixes\n    #   - Git commit message\n    #   - Git commit message\n    #   ### Features\n    #   - Git commit message\n    #   ----\n    def entry_text\n      <<~ENTRY\n        ----\n        ## [#{app_version}] - #{formatted_date}\n        #{current_commit_sha}\n        #{entry_sections_text}\n        ----\n      ENTRY\n    end\n\n    def formatted_date\n      Date.today.strftime(\"%b %e, %Y\")\n    end\n\n    ##\n    # Grabs all the commit messages between the current commit sha\n    # and the last commit sha in the changelog. If this is the first\n    # entry being generated for the changelog then there will be no\n    # previous sha so we want to check all commit messages.\n    def git_commits_between_versions\n      return `git log` if previous_commit_sha.nil?\n\n      `git log #{current_commit_sha}...#{previous_commit_sha}`\n    end\n\n    ##\n    # Parses the git log looking for the specified marker for a\n    # given entry section matching the line that contains it.\n    def git_messages_by_marker(marker)\n      git_commits_between_versions\n        .scan(/^(.*)#{marker}(.*)$/)\n        .map { |message| message.map(&:strip).join(\" \") }\n    end\n\n    ##\n    # Each changelong entry is delineated by \"----\" to allow us to\n    # easily determine where one entry starts and another stops.\n    # This regex will grab the first entry in the list.\n    def most_recent_entry_regex\n      /----(.*?)----/m\n    end\n\n    def read_changelog\n      return File.read(filename) if File.exist?(filename)\n\n      default_header_text\n    end\n\n    def most_recent_entry\n      @log[most_recent_entry_regex] || \"\"\n    end\n\n    def most_recent_entry_for_current_version?\n      most_recent_entry.include? \"## [#{app_version}]\"\n    end\n\n    def previous_commit_sha\n      @previous_commit_sha ||= most_recent_entry.split(\"\\n\")[2]\n    end\n\n    def text_to_replace\n      \"----\"\n    end\n  end\n\n  def self.configuration\n    @configuration ||= Configuration.new\n  end\n\n  def self.configure\n    yield configuration\n  end\n\n  def self.refresh\n    Log.new.refresh\n  end\nend\n\nAutoChangelog.configure do |config|\n  config.app_version = Heroicon::VERSION\n\n  config.entry_sections = [\n    {title: \"Bug Fixes\", marker: \";B\"},\n    {title: \"Changes\", marker: \";C\"},\n    {title: \"Deprecations\", marker: \";D\"},\n    {title: \"Features\", marker: \";F\"},\n    {title: \"Removed\", marker: \";R\"},\n    {title: \"Security\", marker: \";S\"}\n  ]\nend\n\nAutoChangelog.refresh\n"
  },
  {
    "path": "bin/standardrb",
    "content": "#!/usr/bin/env ruby\n# frozen_string_literal: true\n\n#\n# This file was generated by Bundler.\n#\n# The application 'standardrb' is installed as part of a gem, and\n# this file is here to facilitate running it.\n#\n\nrequire \"pathname\"\nENV[\"BUNDLE_GEMFILE\"] ||= File.expand_path(\"../../Gemfile\",\n  Pathname.new(__FILE__).realpath)\n\nbundle_binstub = File.expand_path(\"../bundle\", __FILE__)\n\nif File.file?(bundle_binstub)\n  if /This file was generated by Bundler/.match?(File.read(bundle_binstub, 300))\n    load(bundle_binstub)\n  else\n    abort(\"Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.\nReplace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.\")\n  end\nend\n\nrequire \"rubygems\"\nrequire \"bundler/setup\"\n\nload Gem.bin_path(\"standard\", \"standardrb\")\n"
  },
  {
    "path": "bin/test",
    "content": "#!/usr/bin/env ruby\n$: << File.expand_path(\"../test\", __dir__)\n\nrequire \"bundler/setup\"\nrequire \"rails/plugin/test\"\n"
  },
  {
    "path": "gemfiles/rails_5_2.gemfile",
    "content": "# This file was generated by Appraisal\n\nsource \"https://rubygems.org\"\n\ngem \"rails\", \"~> 5.2\"\n\ngemspec path: \"../\"\n"
  },
  {
    "path": "gemfiles/rails_6_0.gemfile",
    "content": "# This file was generated by Appraisal\n\nsource \"https://rubygems.org\"\n\ngem \"rails\", \"~> 6.0\"\n\ngemspec path: \"../\"\n"
  },
  {
    "path": "gemfiles/rails_main.gemfile",
    "content": "# This file was generated by Appraisal\n\nsource \"https://rubygems.org\"\n\ngem \"rails\", git: \"https://github.com/rails/rails.git\", ref: \"main\"\n\ngemspec path: \"../\"\n"
  },
  {
    "path": "heroicon.gemspec",
    "content": "# frozen_string_literal: true\n\n$LOAD_PATH.push File.expand_path(\"lib\", __dir__)\n\n# Maintain your gem's version:\nrequire \"heroicon/version\"\n\n# Describe your gem and declare its dependencies:\nGem::Specification.new do |spec|\n  spec.name = \"heroicon\"\n  spec.version = Heroicon::VERSION\n  spec.authors = [\"Benjamin Hargett\"]\n  spec.email = [\"hargettbenjamin@gmail.com\"]\n  spec.homepage = \"https://github.com/bharget/heroicon\"\n  spec.summary = \"Rails View Helpers for Heroicons.\"\n  spec.description = \"Ruby on Rails view helpers for the beautiful hand-crafted SVG icons, Heroicons.\"\n  spec.license = \"MIT\"\n\n  spec.files = Dir[\"{app,config,db,lib}/**/*\", \"MIT-LICENSE\", \"Rakefile\", \"README.md\"]\n\n  spec.required_ruby_version = \">= 2.5\"\n\n  spec.add_dependency \"rails\", \">= 5.2\"\n\n  spec.add_development_dependency \"appraisal\"\n  spec.add_development_dependency \"pry\"\n  spec.add_development_dependency \"pry-rails\"\n  spec.add_development_dependency \"standard\"\n  spec.add_development_dependency \"sqlite3\"\n  spec.add_development_dependency \"mocha\"\nend\n"
  },
  {
    "path": "lib/generators/heroicon/install_generator.rb",
    "content": "# frozen_string_literal: true\n\nmodule Heroicon\n  module Generators\n    class InstallGenerator < Rails::Generators::Base\n      source_root File.join(__dir__, \"templates\")\n\n      def copy_config\n        template \"heroicon.rb\", \"config/initializers/heroicon.rb\"\n      end\n\n      def copy_helper\n        template \"heroicon_helper.rb\", \"app/helpers/heroicon_helper.rb\"\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/generators/heroicon/templates/heroicon.rb.tt",
    "content": "# frozen_string_literal: true\n\nHeroicon.configure do |config|\n  config.variant = :solid # Options are :solid, :outline and :mini\n\n  ##\n  # You can set a default class, which will get applied to every icon with\n  # the given variant. To do so, un-comment the line below.\n  # config.default_class = {solid: \"h-5 w-5\", outline: \"h-6 w-6\", mini: \"h-4 w-4\"}\nend\n"
  },
  {
    "path": "lib/generators/heroicon/templates/heroicon_helper.rb.tt",
    "content": "# frozen_string_literal: true\n\nmodule HeroiconHelper\n  include Heroicon::Engine.helpers\nend"
  },
  {
    "path": "lib/heroicon/configuration.rb",
    "content": "# frozen_string_literal: true\n\nmodule Heroicon\n  class Configuration\n    DEFAULT_VARIANT = :solid\n\n    attr_accessor :variant\n    attr_accessor :default_class\n\n    def initialize\n      @variant = DEFAULT_VARIANT\n    end\n  end\n\n  def self.configuration\n    @configuration ||= Configuration.new\n  end\n\n  def self.configuration=(config)\n    @configuration = config\n  end\n\n  def self.configure\n    yield configuration\n  end\nend\n"
  },
  {
    "path": "lib/heroicon/engine.rb",
    "content": "# frozen_string_literal: true\n\nmodule Heroicon\n  class Engine < ::Rails::Engine\n    isolate_namespace Heroicon\n  end\nend\n"
  },
  {
    "path": "lib/heroicon/icon.rb",
    "content": "# frozen_string_literal: true\n\nmodule Heroicon\n  class Icon\n    attr_reader :name, :variant, :options, :path_options\n\n    def initialize(name:, variant:, options:, path_options:)\n      @name = name\n      @variant = safe_variant(variant)\n      @options = options\n      @path_options = path_options\n    end\n\n    def render\n      return warning unless file.present?\n\n      doc = Nokogiri::HTML::DocumentFragment.parse(file)\n      svg = doc.at_css \"svg\"\n\n      path_options.each do |key, value|\n        attribute = key.to_s.dasherize\n        svg.css(\"path[#{attribute}]\").each do |item|\n          item[attribute] = value.to_s\n        end\n      end\n\n      prepend_default_class_name\n\n      options.each do |key, value|\n        svg[key.to_s.dasherize] = value\n      end\n\n      doc\n    end\n\n    private\n\n    ##\n    # Prepends the default CSS class name for an icon. You can provide a String, which will apply\n    # to all icons, or a Hash, which will apply to the specified variant.\n    #\n    # @example\n    #   Heroicon.configure do |config|\n    #     config.default_class = { solid: \"h-5 w-5\", outline: \"h-6 w-6\", mini: \"h-4 w-4\" }\n    #   end\n    #\n    #   #=> <svg class=\"h-5 w-5\">...</svg>\n    def prepend_default_class_name\n      return if disable_default_class?\n\n      options[:class] = combine_classes_with_default_class if default_class.present?\n    end\n\n    def combine_classes_with_default_class\n      default_class_list&.concat(additional_class_list)&.uniq&.join(\" \")\n    end\n\n    def default_class_list\n      default_class&.blank? ? [] : default_class&.strip&.split&.compact\n    end\n\n    def additional_class_list\n      options[:class].blank? ? [] : options[:class]&.strip&.split&.compact\n    end\n\n    def default_class\n      if default_class_config.is_a?(String)\n        default_class_config\n      elsif default_class_config.is_a?(Hash)\n        default_class_config[variant]\n      else\n        \"\"\n      end\n    end\n\n    def default_class_config\n      @default_class_config ||= Heroicon.configuration.default_class\n    end\n\n    def disable_default_class?\n      @disable_default_class ||= !!options.delete(:disable_default_class)\n    end\n\n    def safe_variant(provided_variant)\n      if %i[solid outline mini].include?(provided_variant.to_sym)\n        provided_variant\n      else\n        :solid\n      end\n    end\n\n    def file\n      @file ||= File.read(file_path).force_encoding(\"UTF-8\")\n    rescue\n      nil\n    end\n\n    def file_path\n      File.join(Heroicon.root, \"app/assets/images/heroicon/#{variant}/#{name}.svg\")\n    end\n\n    def warning\n      return unless Rails.env.development?\n\n      script = <<-HTML\n      <script type=\"text/javascript\">\n      //<![CDATA[\n      console.warn(\"Heroicon: Failed to find heroicon: #{name}\")\n      //]]>\n      </script>\n      HTML\n\n      script.strip\n    end\n\n    class << self\n      def render(**kwargs)\n        new(**kwargs).render\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/heroicon/version.rb",
    "content": "# frozen_string_literal: true\n\nmodule Heroicon\n  VERSION = \"1.0.0\"\nend\n"
  },
  {
    "path": "lib/heroicon.rb",
    "content": "# frozen_string_literal: true\n\nrequire \"heroicon/engine\"\nrequire \"heroicon/icon\"\nrequire \"heroicon/configuration\"\n\nmodule Heroicon\n  def self.root\n    File.dirname(__dir__)\n  end\nend\n"
  },
  {
    "path": "test/dummy/.ruby-version",
    "content": "2.7.5\n"
  },
  {
    "path": "test/dummy/Rakefile",
    "content": "# frozen_string_literal: true\n\n# Add your own tasks in files placed in lib/tasks ending in .rake,\n# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.\n\nrequire_relative \"config/application\"\n\nRails.application.load_tasks\n"
  },
  {
    "path": "test/dummy/app/assets/config/manifest.js",
    "content": "//= link_tree ../images\n//= link_directory ../stylesheets .css\n//= link heroicon_manifest.js\n"
  },
  {
    "path": "test/dummy/app/assets/images/.keep",
    "content": ""
  },
  {
    "path": "test/dummy/app/assets/stylesheets/application.css",
    "content": "/*\n * This is a manifest file that'll be compiled into application.css, which will include all the files\n * listed below.\n *\n * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,\n * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.\n *\n * You're free to add application-wide styles to this file and they'll appear at the bottom of the\n * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS\n * files in this directory. Styles in this file should be added after the last require_* statement.\n * It is generally better to create a new file per style scope.\n *\n *= require_tree .\n *= require_self\n */\n\n.h-4 {\n  height: 1rem;\n}\n\n.w-4 {\n  width: 1rem;\n}\n\n.h-5 {\n  height: 1.25rem;\n}\n\n.w-5 {\n  width: 1.25rem;\n}\n\n.h-6 {\n  height: 1.5rem;\n}\n\n.w-6 {\n  width: 1.5rem;\n}\n\n.h-10 {\n  height: 2rem;\n}\n\n.w-10 {\n  width: 2rem;\n}\n\n.text-red-500 {\n  color: #f44336;\n}\n"
  },
  {
    "path": "test/dummy/app/channels/application_cable/channel.rb",
    "content": "# frozen_string_literal: true\n\nmodule ApplicationCable\n  class Channel < ActionCable::Channel::Base\n  end\nend\n"
  },
  {
    "path": "test/dummy/app/channels/application_cable/connection.rb",
    "content": "# frozen_string_literal: true\n\nmodule ApplicationCable\n  class Connection < ActionCable::Connection::Base\n  end\nend\n"
  },
  {
    "path": "test/dummy/app/controllers/application_controller.rb",
    "content": "# frozen_string_literal: true\n\nclass ApplicationController < ActionController::Base\nend\n"
  },
  {
    "path": "test/dummy/app/controllers/concerns/.keep",
    "content": ""
  },
  {
    "path": "test/dummy/app/controllers/pages_controller.rb",
    "content": "# frozen_string_literal: true\n\nclass PagesController < ApplicationController\n  def home\n  end\nend\n"
  },
  {
    "path": "test/dummy/app/helpers/application_helper.rb",
    "content": "# frozen_string_literal: true\n\nmodule ApplicationHelper\n  include Heroicon::Engine.helpers\nend\n"
  },
  {
    "path": "test/dummy/app/helpers/heroicon_helper.rb",
    "content": "# frozen_string_literal: true\n\nmodule HeroiconHelper\n  include Heroicon::Engine.helpers\nend\n"
  },
  {
    "path": "test/dummy/app/javascript/packs/application.js",
    "content": "// This is a manifest file that'll be compiled into application.js, which will include all the files\n// listed below.\n//\n// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,\n// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.\n//\n// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the\n// compiled file. JavaScript code in this file should be added after the last require_* statement.\n//\n// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details\n// about supported directives.\n//\n//= require rails-ujs\n//= require activestorage\n//= require_tree .\n"
  },
  {
    "path": "test/dummy/app/jobs/application_job.rb",
    "content": "# frozen_string_literal: true\n\nclass ApplicationJob < ActiveJob::Base\n  # Automatically retry jobs that encountered a deadlock\n  # retry_on ActiveRecord::Deadlocked\n\n  # Most jobs are safe to ignore if the underlying records are no longer available\n  # discard_on ActiveJob::DeserializationError\nend\n"
  },
  {
    "path": "test/dummy/app/mailers/application_mailer.rb",
    "content": "# frozen_string_literal: true\n\nclass ApplicationMailer < ActionMailer::Base\n  default from: \"from@example.com\"\n  layout \"mailer\"\nend\n"
  },
  {
    "path": "test/dummy/app/models/application_record.rb",
    "content": "# frozen_string_literal: true\n\nclass ApplicationRecord < ActiveRecord::Base\n  self.abstract_class = true\nend\n"
  },
  {
    "path": "test/dummy/app/models/concerns/.keep",
    "content": ""
  },
  {
    "path": "test/dummy/app/views/layouts/application.html.erb",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <title>Dummy</title>\n    <%= csrf_meta_tags %>\n    <%= csp_meta_tag %>\n\n    <%= stylesheet_link_tag    'application', media: 'all' %>\n  </head>\n\n  <body>\n    <%= yield %>\n  </body>\n</html>\n"
  },
  {
    "path": "test/dummy/app/views/layouts/mailer.html.erb",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n    <style>\n      /* Email styles need to be inline */\n    </style>\n  </head>\n\n  <body>\n    <%= yield %>\n  </body>\n</html>\n"
  },
  {
    "path": "test/dummy/app/views/layouts/mailer.text.erb",
    "content": "<%= yield %>\n"
  },
  {
    "path": "test/dummy/app/views/pages/_edge_cases.html.erb",
    "content": "<div>\n  <%# Adding a custom class %>\n  <%= heroicon \"user\", options: {class: \"text-red-500\"} %>\n\n  <%# Adding a custom class and disabling default class %>\n  <%= heroicon \"user\", options: {class: \"text-red-500 h-10 w-10\", disable_default_class: true} %>\n\n  <%# Custom classes appear at the end of the class name %>\n  <%= heroicon \"user\", variant: :outline, options: {class: \"h-10 w-10\"} %>\n\n  <%# Stroke width path option %>\n  <%= heroicon \"user\", variant: :outline, options: {stroke_width: 1} %>\n</div>\n"
  },
  {
    "path": "test/dummy/app/views/pages/_mini.html.erb",
    "content": "<div>\n  <%= heroicon \"academic-cap\", variant: :mini %>\n  <%= heroicon \"adjustments-horizontal\", variant: :mini %>\n  <%= heroicon \"adjustments-vertical\", variant: :mini %>\n  <%= heroicon \"archive-box-arrow-down\", variant: :mini %>\n  <%= heroicon \"archive-box-x-mark\", variant: :mini %>\n  <%= heroicon \"archive-box\", variant: :mini %>\n  <%= heroicon \"arrow-down-circle\", variant: :mini %>\n  <%= heroicon \"arrow-down-left\", variant: :mini %>\n  <%= heroicon \"arrow-down-on-square-stack\", variant: :mini %>\n  <%= heroicon \"arrow-down-on-square\", variant: :mini %>\n  <%= heroicon \"arrow-down-right\", variant: :mini %>\n  <%= heroicon \"arrow-down-tray\", variant: :mini %>\n  <%= heroicon \"arrow-down\", variant: :mini %>\n  <%= heroicon \"arrow-left-circle\", variant: :mini %>\n  <%= heroicon \"arrow-left-on-rectangle\", variant: :mini %>\n  <%= heroicon \"arrow-left\", variant: :mini %>\n  <%= heroicon \"arrow-long-down\", variant: :mini %>\n  <%= heroicon \"arrow-long-left\", variant: :mini %>\n  <%= heroicon \"arrow-long-right\", variant: :mini %>\n  <%= heroicon \"arrow-long-up\", variant: :mini %>\n  <%= heroicon \"arrow-path-rounded-square\", variant: :mini %>\n  <%= heroicon \"arrow-path\", variant: :mini %>\n  <%= heroicon \"arrow-right-circle\", variant: :mini %>\n  <%= heroicon \"arrow-right-on-rectangle\", variant: :mini %>\n  <%= heroicon \"arrow-right\", variant: :mini %>\n  <%= heroicon \"arrow-small-down\", variant: :mini %>\n  <%= heroicon \"arrow-small-left\", variant: :mini %>\n  <%= heroicon \"arrow-small-right\", variant: :mini %>\n  <%= heroicon \"arrow-small-up\", variant: :mini %>\n  <%= heroicon \"arrow-top-right-on-square\", variant: :mini %>\n  <%= heroicon \"arrow-trending-down\", variant: :mini %>\n  <%= heroicon \"arrow-trending-up\", variant: :mini %>\n  <%= heroicon \"arrow-up-circle\", variant: :mini %>\n  <%= heroicon \"arrow-up-left\", variant: :mini %>\n  <%= heroicon \"arrow-up-on-square-stack\", variant: :mini %>\n  <%= heroicon \"arrow-up-on-square\", variant: :mini %>\n  <%= heroicon \"arrow-up-right\", variant: :mini %>\n  <%= heroicon \"arrow-up-tray\", variant: :mini %>\n  <%= heroicon \"arrow-up\", variant: :mini %>\n  <%= heroicon \"arrow-uturn-down\", variant: :mini %>\n  <%= heroicon \"arrow-uturn-left\", variant: :mini %>\n  <%= heroicon \"arrow-uturn-right\", variant: :mini %>\n  <%= heroicon \"arrow-uturn-up\", variant: :mini %>\n  <%= heroicon \"arrows-pointing-in\", variant: :mini %>\n  <%= heroicon \"arrows-pointing-out\", variant: :mini %>\n  <%= heroicon \"arrows-right-left\", variant: :mini %>\n  <%= heroicon \"arrows-up-down\", variant: :mini %>\n  <%= heroicon \"at-symbol\", variant: :mini %>\n  <%= heroicon \"backspace\", variant: :mini %>\n  <%= heroicon \"backward\", variant: :mini %>\n  <%= heroicon \"banknotes\", variant: :mini %>\n  <%= heroicon \"bars-2\", variant: :mini %>\n  <%= heroicon \"bars-3-bottom-left\", variant: :mini %>\n  <%= heroicon \"bars-3-bottom-right\", variant: :mini %>\n  <%= heroicon \"bars-3-center-left\", variant: :mini %>\n  <%= heroicon \"bars-3\", variant: :mini %>\n  <%= heroicon \"bars-4\", variant: :mini %>\n  <%= heroicon \"bars-arrow-down\", variant: :mini %>\n  <%= heroicon \"bars-arrow-up\", variant: :mini %>\n  <%= heroicon \"battery-0\", variant: :mini %>\n  <%= heroicon \"battery-100\", variant: :mini %>\n  <%= heroicon \"battery-50\", variant: :mini %>\n  <%= heroicon \"beaker\", variant: :mini %>\n  <%= heroicon \"bell-alert\", variant: :mini %>\n  <%= heroicon \"bell-slash\", variant: :mini %>\n  <%= heroicon \"bell-snooze\", variant: :mini %>\n  <%= heroicon \"bell\", variant: :mini %>\n  <%= heroicon \"bolt-slash\", variant: :mini %>\n  <%= heroicon \"bolt\", variant: :mini %>\n  <%= heroicon \"book-open\", variant: :mini %>\n  <%= heroicon \"bookmark-slash\", variant: :mini %>\n  <%= heroicon \"bookmark-square\", variant: :mini %>\n  <%= heroicon \"bookmark\", variant: :mini %>\n  <%= heroicon \"briefcase\", variant: :mini %>\n  <%= heroicon \"building-library\", variant: :mini %>\n  <%= heroicon \"building-office-2\", variant: :mini %>\n  <%= heroicon \"building-office\", variant: :mini %>\n  <%= heroicon \"building-storefront\", variant: :mini %>\n  <%= heroicon \"cake\", variant: :mini %>\n  <%= heroicon \"calculator\", variant: :mini %>\n  <%= heroicon \"calendar-days\", variant: :mini %>\n  <%= heroicon \"calendar\", variant: :mini %>\n  <%= heroicon \"camera\", variant: :mini %>\n  <%= heroicon \"chart-bar-square\", variant: :mini %>\n  <%= heroicon \"chart-bar\", variant: :mini %>\n  <%= heroicon \"chart-pie\", variant: :mini %>\n  <%= heroicon \"chat-bubble-bottom-center-text\", variant: :mini %>\n  <%= heroicon \"chat-bubble-bottom-center\", variant: :mini %>\n  <%= heroicon \"chat-bubble-left-ellipsis\", variant: :mini %>\n  <%= heroicon \"chat-bubble-left-right\", variant: :mini %>\n  <%= heroicon \"chat-bubble-left\", variant: :mini %>\n  <%= heroicon \"chat-bubble-oval-left-ellipsis\", variant: :mini %>\n  <%= heroicon \"chat-bubble-oval-left\", variant: :mini %>\n  <%= heroicon \"check-badge\", variant: :mini %>\n  <%= heroicon \"check-circle\", variant: :mini %>\n  <%= heroicon \"check\", variant: :mini %>\n  <%= heroicon \"chevron-double-down\", variant: :mini %>\n  <%= heroicon \"chevron-double-left\", variant: :mini %>\n  <%= heroicon \"chevron-double-right\", variant: :mini %>\n  <%= heroicon \"chevron-double-up\", variant: :mini %>\n  <%= heroicon \"chevron-down\", variant: :mini %>\n  <%= heroicon \"chevron-left\", variant: :mini %>\n  <%= heroicon \"chevron-right\", variant: :mini %>\n  <%= heroicon \"chevron-up-down\", variant: :mini %>\n  <%= heroicon \"chevron-up\", variant: :mini %>\n  <%= heroicon \"circle-stack\", variant: :mini %>\n  <%= heroicon \"clipboard-document-check\", variant: :mini %>\n  <%= heroicon \"clipboard-document-list\", variant: :mini %>\n  <%= heroicon \"clipboard-document\", variant: :mini %>\n  <%= heroicon \"clipboard\", variant: :mini %>\n  <%= heroicon \"clock\", variant: :mini %>\n  <%= heroicon \"cloud-arrow-down\", variant: :mini %>\n  <%= heroicon \"cloud-arrow-up\", variant: :mini %>\n  <%= heroicon \"cloud\", variant: :mini %>\n  <%= heroicon \"code-bracket-square\", variant: :mini %>\n  <%= heroicon \"code-bracket\", variant: :mini %>\n  <%= heroicon \"cog-6-tooth\", variant: :mini %>\n  <%= heroicon \"cog-8-tooth\", variant: :mini %>\n  <%= heroicon \"cog\", variant: :mini %>\n  <%= heroicon \"command-line\", variant: :mini %>\n  <%= heroicon \"computer-desktop\", variant: :mini %>\n  <%= heroicon \"cpu-chip\", variant: :mini %>\n  <%= heroicon \"credit-card\", variant: :mini %>\n  <%= heroicon \"cube-transparent\", variant: :mini %>\n  <%= heroicon \"cube\", variant: :mini %>\n  <%= heroicon \"currency-bangladeshi\", variant: :mini %>\n  <%= heroicon \"currency-dollar\", variant: :mini %>\n  <%= heroicon \"currency-euro\", variant: :mini %>\n  <%= heroicon \"currency-pound\", variant: :mini %>\n  <%= heroicon \"currency-rupee\", variant: :mini %>\n  <%= heroicon \"currency-yen\", variant: :mini %>\n  <%= heroicon \"cursor-arrow-rays\", variant: :mini %>\n  <%= heroicon \"cursor-arrow-ripple\", variant: :mini %>\n  <%= heroicon \"device-phone-mobile\", variant: :mini %>\n  <%= heroicon \"device-tablet\", variant: :mini %>\n  <%= heroicon \"document-arrow-down\", variant: :mini %>\n  <%= heroicon \"document-arrow-up\", variant: :mini %>\n  <%= heroicon \"document-chart-bar\", variant: :mini %>\n  <%= heroicon \"document-check\", variant: :mini %>\n  <%= heroicon \"document-duplicate\", variant: :mini %>\n  <%= heroicon \"document-magnifying-glass\", variant: :mini %>\n  <%= heroicon \"document-minus\", variant: :mini %>\n  <%= heroicon \"document-plus\", variant: :mini %>\n  <%= heroicon \"document-text\", variant: :mini %>\n  <%= heroicon \"document\", variant: :mini %>\n  <%= heroicon \"ellipsis-horizontal-circle\", variant: :mini %>\n  <%= heroicon \"ellipsis-horizontal\", variant: :mini %>\n  <%= heroicon \"ellipsis-vertical\", variant: :mini %>\n  <%= heroicon \"envelope-open\", variant: :mini %>\n  <%= heroicon \"envelope\", variant: :mini %>\n  <%= heroicon \"exclamation-circle\", variant: :mini %>\n  <%= heroicon \"exclamation-triangle\", variant: :mini %>\n  <%= heroicon \"eye-slash\", variant: :mini %>\n  <%= heroicon \"eye\", variant: :mini %>\n  <%= heroicon \"face-frown\", variant: :mini %>\n  <%= heroicon \"face-smile\", variant: :mini %>\n  <%= heroicon \"film\", variant: :mini %>\n  <%= heroicon \"finger-print\", variant: :mini %>\n  <%= heroicon \"fire\", variant: :mini %>\n  <%= heroicon \"flag\", variant: :mini %>\n  <%= heroicon \"folder-arrow-down\", variant: :mini %>\n  <%= heroicon \"folder-minus\", variant: :mini %>\n  <%= heroicon \"folder-open\", variant: :mini %>\n  <%= heroicon \"folder-plus\", variant: :mini %>\n  <%= heroicon \"folder\", variant: :mini %>\n  <%= heroicon \"forward\", variant: :mini %>\n  <%= heroicon \"funnel\", variant: :mini %>\n  <%= heroicon \"gif\", variant: :mini %>\n  <%= heroicon \"gift-top\", variant: :mini %>\n  <%= heroicon \"gift\", variant: :mini %>\n  <%= heroicon \"globe-alt\", variant: :mini %>\n  <%= heroicon \"globe-americas\", variant: :mini %>\n  <%= heroicon \"globe-asia-australia\", variant: :mini %>\n  <%= heroicon \"globe-europe-africa\", variant: :mini %>\n  <%= heroicon \"hand-raised\", variant: :mini %>\n  <%= heroicon \"hand-thumb-down\", variant: :mini %>\n  <%= heroicon \"hand-thumb-up\", variant: :mini %>\n  <%= heroicon \"hashtag\", variant: :mini %>\n  <%= heroicon \"heart\", variant: :mini %>\n  <%= heroicon \"home-modern\", variant: :mini %>\n  <%= heroicon \"home\", variant: :mini %>\n  <%= heroicon \"identification\", variant: :mini %>\n  <%= heroicon \"inbox-arrow-down\", variant: :mini %>\n  <%= heroicon \"inbox-stack\", variant: :mini %>\n  <%= heroicon \"inbox\", variant: :mini %>\n  <%= heroicon \"information-circle\", variant: :mini %>\n  <%= heroicon \"key\", variant: :mini %>\n  <%= heroicon \"language\", variant: :mini %>\n  <%= heroicon \"lifebuoy\", variant: :mini %>\n  <%= heroicon \"light-bulb\", variant: :mini %>\n  <%= heroicon \"link\", variant: :mini %>\n  <%= heroicon \"list-bullet\", variant: :mini %>\n  <%= heroicon \"lock-closed\", variant: :mini %>\n  <%= heroicon \"lock-open\", variant: :mini %>\n  <%= heroicon \"magnifying-glass-circle\", variant: :mini %>\n  <%= heroicon \"magnifying-glass-minus\", variant: :mini %>\n  <%= heroicon \"magnifying-glass-plus\", variant: :mini %>\n  <%= heroicon \"magnifying-glass\", variant: :mini %>\n  <%= heroicon \"map-pin\", variant: :mini %>\n  <%= heroicon \"map\", variant: :mini %>\n  <%= heroicon \"megaphone\", variant: :mini %>\n  <%= heroicon \"microphone\", variant: :mini %>\n  <%= heroicon \"minus-circle\", variant: :mini %>\n  <%= heroicon \"minus-small\", variant: :mini %>\n  <%= heroicon \"minus\", variant: :mini %>\n  <%= heroicon \"moon\", variant: :mini %>\n  <%= heroicon \"musical-note\", variant: :mini %>\n  <%= heroicon \"newspaper\", variant: :mini %>\n  <%= heroicon \"no-symbol\", variant: :mini %>\n  <%= heroicon \"paint-brush\", variant: :mini %>\n  <%= heroicon \"paper-airplane\", variant: :mini %>\n  <%= heroicon \"paper-clip\", variant: :mini %>\n  <%= heroicon \"pause\", variant: :mini %>\n  <%= heroicon \"pencil-square\", variant: :mini %>\n  <%= heroicon \"pencil\", variant: :mini %>\n  <%= heroicon \"phone-arrow-down-left\", variant: :mini %>\n  <%= heroicon \"phone-arrow-up-right\", variant: :mini %>\n  <%= heroicon \"phone-x-mark\", variant: :mini %>\n  <%= heroicon \"phone\", variant: :mini %>\n  <%= heroicon \"photo\", variant: :mini %>\n  <%= heroicon \"play-pause\", variant: :mini %>\n  <%= heroicon \"play\", variant: :mini %>\n  <%= heroicon \"plus-circle\", variant: :mini %>\n  <%= heroicon \"plus-small\", variant: :mini %>\n  <%= heroicon \"plus\", variant: :mini %>\n  <%= heroicon \"presentation-chart-bar\", variant: :mini %>\n  <%= heroicon \"presentation-chart-line\", variant: :mini %>\n  <%= heroicon \"printer\", variant: :mini %>\n  <%= heroicon \"puzzle-piece\", variant: :mini %>\n  <%= heroicon \"qr-code\", variant: :mini %>\n  <%= heroicon \"question-mark-circle\", variant: :mini %>\n  <%= heroicon \"queue-list\", variant: :mini %>\n  <%= heroicon \"radio\", variant: :mini %>\n  <%= heroicon \"receipt-percent\", variant: :mini %>\n  <%= heroicon \"receipt-refund\", variant: :mini %>\n  <%= heroicon \"rectangle-group\", variant: :mini %>\n  <%= heroicon \"rectangle-stack\", variant: :mini %>\n  <%= heroicon \"rss\", variant: :mini %>\n  <%= heroicon \"scale\", variant: :mini %>\n  <%= heroicon \"scissors\", variant: :mini %>\n  <%= heroicon \"server-stack\", variant: :mini %>\n  <%= heroicon \"server\", variant: :mini %>\n  <%= heroicon \"share\", variant: :mini %>\n  <%= heroicon \"shield-check\", variant: :mini %>\n  <%= heroicon \"shield-exclamation\", variant: :mini %>\n  <%= heroicon \"shopping-bag\", variant: :mini %>\n  <%= heroicon \"shopping-cart\", variant: :mini %>\n  <%= heroicon \"signal-slash\", variant: :mini %>\n  <%= heroicon \"signal\", variant: :mini %>\n  <%= heroicon \"sparkles\", variant: :mini %>\n  <%= heroicon \"speaker-wave\", variant: :mini %>\n  <%= heroicon \"speaker-x-mark\", variant: :mini %>\n  <%= heroicon \"square-2-stack\", variant: :mini %>\n  <%= heroicon \"squares-2x2\", variant: :mini %>\n  <%= heroicon \"squares-plus\", variant: :mini %>\n  <%= heroicon \"star\", variant: :mini %>\n  <%= heroicon \"stop\", variant: :mini %>\n  <%= heroicon \"sun\", variant: :mini %>\n  <%= heroicon \"swatch\", variant: :mini %>\n  <%= heroicon \"table-cells\", variant: :mini %>\n  <%= heroicon \"tag\", variant: :mini %>\n  <%= heroicon \"ticket\", variant: :mini %>\n  <%= heroicon \"trash\", variant: :mini %>\n  <%= heroicon \"truck\", variant: :mini %>\n  <%= heroicon \"user-circle\", variant: :mini %>\n  <%= heroicon \"user-group\", variant: :mini %>\n  <%= heroicon \"user-minus\", variant: :mini %>\n  <%= heroicon \"user-plus\", variant: :mini %>\n  <%= heroicon \"user\", variant: :mini %>\n  <%= heroicon \"users\", variant: :mini %>\n  <%= heroicon \"variable\", variant: :mini %>\n  <%= heroicon \"video-camera-slash\", variant: :mini %>\n  <%= heroicon \"video-camera\", variant: :mini %>\n  <%= heroicon \"view-columns\", variant: :mini %>\n  <%= heroicon \"wallet\", variant: :mini %>\n  <%= heroicon \"wifi\", variant: :mini %>\n  <%= heroicon \"wrench-screwdriver\", variant: :mini %>\n  <%= heroicon \"wrench\", variant: :mini %>\n  <%= heroicon \"x-circle\", variant: :mini %>\n  <%= heroicon \"x-mark\", variant: :mini %>\n</div>\n"
  },
  {
    "path": "test/dummy/app/views/pages/_outline.html.erb",
    "content": "<div>\n  <%= heroicon \"academic-cap\", variant: :outline %>\n  <%= heroicon \"adjustments-horizontal\", variant: :outline %>\n  <%= heroicon \"adjustments-vertical\", variant: :outline %>\n  <%= heroicon \"archive-box-arrow-down\", variant: :outline %>\n  <%= heroicon \"archive-box-x-mark\", variant: :outline %>\n  <%= heroicon \"archive-box\", variant: :outline %>\n  <%= heroicon \"arrow-down-circle\", variant: :outline %>\n  <%= heroicon \"arrow-down-left\", variant: :outline %>\n  <%= heroicon \"arrow-down-on-square-stack\", variant: :outline %>\n  <%= heroicon \"arrow-down-on-square\", variant: :outline %>\n  <%= heroicon \"arrow-down-right\", variant: :outline %>\n  <%= heroicon \"arrow-down-tray\", variant: :outline %>\n  <%= heroicon \"arrow-down\", variant: :outline %>\n  <%= heroicon \"arrow-left-circle\", variant: :outline %>\n  <%= heroicon \"arrow-left-on-rectangle\", variant: :outline %>\n  <%= heroicon \"arrow-left\", variant: :outline %>\n  <%= heroicon \"arrow-long-down\", variant: :outline %>\n  <%= heroicon \"arrow-long-left\", variant: :outline %>\n  <%= heroicon \"arrow-long-right\", variant: :outline %>\n  <%= heroicon \"arrow-long-up\", variant: :outline %>\n  <%= heroicon \"arrow-path-rounded-square\", variant: :outline %>\n  <%= heroicon \"arrow-path\", variant: :outline %>\n  <%= heroicon \"arrow-right-circle\", variant: :outline %>\n  <%= heroicon \"arrow-right-on-rectangle\", variant: :outline %>\n  <%= heroicon \"arrow-right\", variant: :outline %>\n  <%= heroicon \"arrow-small-down\", variant: :outline %>\n  <%= heroicon \"arrow-small-left\", variant: :outline %>\n  <%= heroicon \"arrow-small-right\", variant: :outline %>\n  <%= heroicon \"arrow-small-up\", variant: :outline %>\n  <%= heroicon \"arrow-top-right-on-square\", variant: :outline %>\n  <%= heroicon \"arrow-trending-down\", variant: :outline %>\n  <%= heroicon \"arrow-trending-up\", variant: :outline %>\n  <%= heroicon \"arrow-up-circle\", variant: :outline %>\n  <%= heroicon \"arrow-up-left\", variant: :outline %>\n  <%= heroicon \"arrow-up-on-square-stack\", variant: :outline %>\n  <%= heroicon \"arrow-up-on-square\", variant: :outline %>\n  <%= heroicon \"arrow-up-right\", variant: :outline %>\n  <%= heroicon \"arrow-up-tray\", variant: :outline %>\n  <%= heroicon \"arrow-up\", variant: :outline %>\n  <%= heroicon \"arrow-uturn-down\", variant: :outline %>\n  <%= heroicon \"arrow-uturn-left\", variant: :outline %>\n  <%= heroicon \"arrow-uturn-right\", variant: :outline %>\n  <%= heroicon \"arrow-uturn-up\", variant: :outline %>\n  <%= heroicon \"arrows-pointing-in\", variant: :outline %>\n  <%= heroicon \"arrows-pointing-out\", variant: :outline %>\n  <%= heroicon \"arrows-right-left\", variant: :outline %>\n  <%= heroicon \"arrows-up-down\", variant: :outline %>\n  <%= heroicon \"at-symbol\", variant: :outline %>\n  <%= heroicon \"backspace\", variant: :outline %>\n  <%= heroicon \"backward\", variant: :outline %>\n  <%= heroicon \"banknotes\", variant: :outline %>\n  <%= heroicon \"bars-2\", variant: :outline %>\n  <%= heroicon \"bars-3-bottom-left\", variant: :outline %>\n  <%= heroicon \"bars-3-bottom-right\", variant: :outline %>\n  <%= heroicon \"bars-3-center-left\", variant: :outline %>\n  <%= heroicon \"bars-3\", variant: :outline %>\n  <%= heroicon \"bars-4\", variant: :outline %>\n  <%= heroicon \"bars-arrow-down\", variant: :outline %>\n  <%= heroicon \"bars-arrow-up\", variant: :outline %>\n  <%= heroicon \"battery-0\", variant: :outline %>\n  <%= heroicon \"battery-100\", variant: :outline %>\n  <%= heroicon \"battery-50\", variant: :outline %>\n  <%= heroicon \"beaker\", variant: :outline %>\n  <%= heroicon \"bell-alert\", variant: :outline %>\n  <%= heroicon \"bell-slash\", variant: :outline %>\n  <%= heroicon \"bell-snooze\", variant: :outline %>\n  <%= heroicon \"bell\", variant: :outline %>\n  <%= heroicon \"bolt-slash\", variant: :outline %>\n  <%= heroicon \"bolt\", variant: :outline %>\n  <%= heroicon \"book-open\", variant: :outline %>\n  <%= heroicon \"bookmark-slash\", variant: :outline %>\n  <%= heroicon \"bookmark-square\", variant: :outline %>\n  <%= heroicon \"bookmark\", variant: :outline %>\n  <%= heroicon \"briefcase\", variant: :outline %>\n  <%= heroicon \"building-library\", variant: :outline %>\n  <%= heroicon \"building-office-2\", variant: :outline %>\n  <%= heroicon \"building-office\", variant: :outline %>\n  <%= heroicon \"building-storefront\", variant: :outline %>\n  <%= heroicon \"cake\", variant: :outline %>\n  <%= heroicon \"calculator\", variant: :outline %>\n  <%= heroicon \"calendar-days\", variant: :outline %>\n  <%= heroicon \"calendar\", variant: :outline %>\n  <%= heroicon \"camera\", variant: :outline %>\n  <%= heroicon \"chart-bar-square\", variant: :outline %>\n  <%= heroicon \"chart-bar\", variant: :outline %>\n  <%= heroicon \"chart-pie\", variant: :outline %>\n  <%= heroicon \"chat-bubble-bottom-center-text\", variant: :outline %>\n  <%= heroicon \"chat-bubble-bottom-center\", variant: :outline %>\n  <%= heroicon \"chat-bubble-left-ellipsis\", variant: :outline %>\n  <%= heroicon \"chat-bubble-left-right\", variant: :outline %>\n  <%= heroicon \"chat-bubble-left\", variant: :outline %>\n  <%= heroicon \"chat-bubble-oval-left-ellipsis\", variant: :outline %>\n  <%= heroicon \"chat-bubble-oval-left\", variant: :outline %>\n  <%= heroicon \"check-badge\", variant: :outline %>\n  <%= heroicon \"check-circle\", variant: :outline %>\n  <%= heroicon \"check\", variant: :outline %>\n  <%= heroicon \"chevron-double-down\", variant: :outline %>\n  <%= heroicon \"chevron-double-left\", variant: :outline %>\n  <%= heroicon \"chevron-double-right\", variant: :outline %>\n  <%= heroicon \"chevron-double-up\", variant: :outline %>\n  <%= heroicon \"chevron-down\", variant: :outline %>\n  <%= heroicon \"chevron-left\", variant: :outline %>\n  <%= heroicon \"chevron-right\", variant: :outline %>\n  <%= heroicon \"chevron-up-down\", variant: :outline %>\n  <%= heroicon \"chevron-up\", variant: :outline %>\n  <%= heroicon \"circle-stack\", variant: :outline %>\n  <%= heroicon \"clipboard-document-check\", variant: :outline %>\n  <%= heroicon \"clipboard-document-list\", variant: :outline %>\n  <%= heroicon \"clipboard-document\", variant: :outline %>\n  <%= heroicon \"clipboard\", variant: :outline %>\n  <%= heroicon \"clock\", variant: :outline %>\n  <%= heroicon \"cloud-arrow-down\", variant: :outline %>\n  <%= heroicon \"cloud-arrow-up\", variant: :outline %>\n  <%= heroicon \"cloud\", variant: :outline %>\n  <%= heroicon \"code-bracket-square\", variant: :outline %>\n  <%= heroicon \"code-bracket\", variant: :outline %>\n  <%= heroicon \"cog-6-tooth\", variant: :outline %>\n  <%= heroicon \"cog-8-tooth\", variant: :outline %>\n  <%= heroicon \"cog\", variant: :outline %>\n  <%= heroicon \"command-line\", variant: :outline %>\n  <%= heroicon \"computer-desktop\", variant: :outline %>\n  <%= heroicon \"cpu-chip\", variant: :outline %>\n  <%= heroicon \"credit-card\", variant: :outline %>\n  <%= heroicon \"cube-transparent\", variant: :outline %>\n  <%= heroicon \"cube\", variant: :outline %>\n  <%= heroicon \"currency-bangladeshi\", variant: :outline %>\n  <%= heroicon \"currency-dollar\", variant: :outline %>\n  <%= heroicon \"currency-euro\", variant: :outline %>\n  <%= heroicon \"currency-pound\", variant: :outline %>\n  <%= heroicon \"currency-rupee\", variant: :outline %>\n  <%= heroicon \"currency-yen\", variant: :outline %>\n  <%= heroicon \"cursor-arrow-rays\", variant: :outline %>\n  <%= heroicon \"cursor-arrow-ripple\", variant: :outline %>\n  <%= heroicon \"device-phone-mobile\", variant: :outline %>\n  <%= heroicon \"device-tablet\", variant: :outline %>\n  <%= heroicon \"document-arrow-down\", variant: :outline %>\n  <%= heroicon \"document-arrow-up\", variant: :outline %>\n  <%= heroicon \"document-chart-bar\", variant: :outline %>\n  <%= heroicon \"document-check\", variant: :outline %>\n  <%= heroicon \"document-duplicate\", variant: :outline %>\n  <%= heroicon \"document-magnifying-glass\", variant: :outline %>\n  <%= heroicon \"document-minus\", variant: :outline %>\n  <%= heroicon \"document-plus\", variant: :outline %>\n  <%= heroicon \"document-text\", variant: :outline %>\n  <%= heroicon \"document\", variant: :outline %>\n  <%= heroicon \"ellipsis-horizontal-circle\", variant: :outline %>\n  <%= heroicon \"ellipsis-horizontal\", variant: :outline %>\n  <%= heroicon \"ellipsis-vertical\", variant: :outline %>\n  <%= heroicon \"envelope-open\", variant: :outline %>\n  <%= heroicon \"envelope\", variant: :outline %>\n  <%= heroicon \"exclamation-circle\", variant: :outline %>\n  <%= heroicon \"exclamation-triangle\", variant: :outline %>\n  <%= heroicon \"eye-slash\", variant: :outline %>\n  <%= heroicon \"eye\", variant: :outline %>\n  <%= heroicon \"face-frown\", variant: :outline %>\n  <%= heroicon \"face-smile\", variant: :outline %>\n  <%= heroicon \"film\", variant: :outline %>\n  <%= heroicon \"finger-print\", variant: :outline %>\n  <%= heroicon \"fire\", variant: :outline %>\n  <%= heroicon \"flag\", variant: :outline %>\n  <%= heroicon \"folder-arrow-down\", variant: :outline %>\n  <%= heroicon \"folder-minus\", variant: :outline %>\n  <%= heroicon \"folder-open\", variant: :outline %>\n  <%= heroicon \"folder-plus\", variant: :outline %>\n  <%= heroicon \"folder\", variant: :outline %>\n  <%= heroicon \"forward\", variant: :outline %>\n  <%= heroicon \"funnel\", variant: :outline %>\n  <%= heroicon \"gif\", variant: :outline %>\n  <%= heroicon \"gift-top\", variant: :outline %>\n  <%= heroicon \"gift\", variant: :outline %>\n  <%= heroicon \"globe-alt\", variant: :outline %>\n  <%= heroicon \"globe-americas\", variant: :outline %>\n  <%= heroicon \"globe-asia-australia\", variant: :outline %>\n  <%= heroicon \"globe-europe-africa\", variant: :outline %>\n  <%= heroicon \"hand-raised\", variant: :outline %>\n  <%= heroicon \"hand-thumb-down\", variant: :outline %>\n  <%= heroicon \"hand-thumb-up\", variant: :outline %>\n  <%= heroicon \"hashtag\", variant: :outline %>\n  <%= heroicon \"heart\", variant: :outline %>\n  <%= heroicon \"home-modern\", variant: :outline %>\n  <%= heroicon \"home\", variant: :outline %>\n  <%= heroicon \"identification\", variant: :outline %>\n  <%= heroicon \"inbox-arrow-down\", variant: :outline %>\n  <%= heroicon \"inbox-stack\", variant: :outline %>\n  <%= heroicon \"inbox\", variant: :outline %>\n  <%= heroicon \"information-circle\", variant: :outline %>\n  <%= heroicon \"key\", variant: :outline %>\n  <%= heroicon \"language\", variant: :outline %>\n  <%= heroicon \"lifebuoy\", variant: :outline %>\n  <%= heroicon \"light-bulb\", variant: :outline %>\n  <%= heroicon \"link\", variant: :outline %>\n  <%= heroicon \"list-bullet\", variant: :outline %>\n  <%= heroicon \"lock-closed\", variant: :outline %>\n  <%= heroicon \"lock-open\", variant: :outline %>\n  <%= heroicon \"magnifying-glass-circle\", variant: :outline %>\n  <%= heroicon \"magnifying-glass-minus\", variant: :outline %>\n  <%= heroicon \"magnifying-glass-plus\", variant: :outline %>\n  <%= heroicon \"magnifying-glass\", variant: :outline %>\n  <%= heroicon \"map-pin\", variant: :outline %>\n  <%= heroicon \"map\", variant: :outline %>\n  <%= heroicon \"megaphone\", variant: :outline %>\n  <%= heroicon \"microphone\", variant: :outline %>\n  <%= heroicon \"minus-circle\", variant: :outline %>\n  <%= heroicon \"minus-small\", variant: :outline %>\n  <%= heroicon \"minus\", variant: :outline %>\n  <%= heroicon \"moon\", variant: :outline %>\n  <%= heroicon \"musical-note\", variant: :outline %>\n  <%= heroicon \"newspaper\", variant: :outline %>\n  <%= heroicon \"no-symbol\", variant: :outline %>\n  <%= heroicon \"paint-brush\", variant: :outline %>\n  <%= heroicon \"paper-airplane\", variant: :outline %>\n  <%= heroicon \"paper-clip\", variant: :outline %>\n  <%= heroicon \"pause\", variant: :outline %>\n  <%= heroicon \"pencil-square\", variant: :outline %>\n  <%= heroicon \"pencil\", variant: :outline %>\n  <%= heroicon \"phone-arrow-down-left\", variant: :outline %>\n  <%= heroicon \"phone-arrow-up-right\", variant: :outline %>\n  <%= heroicon \"phone-x-mark\", variant: :outline %>\n  <%= heroicon \"phone\", variant: :outline %>\n  <%= heroicon \"photo\", variant: :outline %>\n  <%= heroicon \"play-pause\", variant: :outline %>\n  <%= heroicon \"play\", variant: :outline %>\n  <%= heroicon \"plus-circle\", variant: :outline %>\n  <%= heroicon \"plus-small\", variant: :outline %>\n  <%= heroicon \"plus\", variant: :outline %>\n  <%= heroicon \"presentation-chart-bar\", variant: :outline %>\n  <%= heroicon \"presentation-chart-line\", variant: :outline %>\n  <%= heroicon \"printer\", variant: :outline %>\n  <%= heroicon \"puzzle-piece\", variant: :outline %>\n  <%= heroicon \"qr-code\", variant: :outline %>\n  <%= heroicon \"question-mark-circle\", variant: :outline %>\n  <%= heroicon \"queue-list\", variant: :outline %>\n  <%= heroicon \"radio\", variant: :outline %>\n  <%= heroicon \"receipt-percent\", variant: :outline %>\n  <%= heroicon \"receipt-refund\", variant: :outline %>\n  <%= heroicon \"rectangle-group\", variant: :outline %>\n  <%= heroicon \"rectangle-stack\", variant: :outline %>\n  <%= heroicon \"rss\", variant: :outline %>\n  <%= heroicon \"scale\", variant: :outline %>\n  <%= heroicon \"scissors\", variant: :outline %>\n  <%= heroicon \"server-stack\", variant: :outline %>\n  <%= heroicon \"server\", variant: :outline %>\n  <%= heroicon \"share\", variant: :outline %>\n  <%= heroicon \"shield-check\", variant: :outline %>\n  <%= heroicon \"shield-exclamation\", variant: :outline %>\n  <%= heroicon \"shopping-bag\", variant: :outline %>\n  <%= heroicon \"shopping-cart\", variant: :outline %>\n  <%= heroicon \"signal-slash\", variant: :outline %>\n  <%= heroicon \"signal\", variant: :outline %>\n  <%= heroicon \"sparkles\", variant: :outline %>\n  <%= heroicon \"speaker-wave\", variant: :outline %>\n  <%= heroicon \"speaker-x-mark\", variant: :outline %>\n  <%= heroicon \"square-2-stack\", variant: :outline %>\n  <%= heroicon \"squares-2x2\", variant: :outline %>\n  <%= heroicon \"squares-plus\", variant: :outline %>\n  <%= heroicon \"star\", variant: :outline %>\n  <%= heroicon \"stop\", variant: :outline %>\n  <%= heroicon \"sun\", variant: :outline %>\n  <%= heroicon \"swatch\", variant: :outline %>\n  <%= heroicon \"table-cells\", variant: :outline %>\n  <%= heroicon \"tag\", variant: :outline %>\n  <%= heroicon \"ticket\", variant: :outline %>\n  <%= heroicon \"trash\", variant: :outline %>\n  <%= heroicon \"truck\", variant: :outline %>\n  <%= heroicon \"user-circle\", variant: :outline %>\n  <%= heroicon \"user-group\", variant: :outline %>\n  <%= heroicon \"user-minus\", variant: :outline %>\n  <%= heroicon \"user-plus\", variant: :outline %>\n  <%= heroicon \"user\", variant: :outline %>\n  <%= heroicon \"users\", variant: :outline %>\n  <%= heroicon \"variable\", variant: :outline %>\n  <%= heroicon \"video-camera-slash\", variant: :outline %>\n  <%= heroicon \"video-camera\", variant: :outline %>\n  <%= heroicon \"view-columns\", variant: :outline %>\n  <%= heroicon \"wallet\", variant: :outline %>\n  <%= heroicon \"wifi\", variant: :outline %>\n  <%= heroicon \"wrench-screwdriver\", variant: :outline %>\n  <%= heroicon \"wrench\", variant: :outline %>\n  <%= heroicon \"x-circle\", variant: :outline %>\n  <%= heroicon \"x-mark\", variant: :outline %>\n</div>\n"
  },
  {
    "path": "test/dummy/app/views/pages/_solid.html.erb",
    "content": "<div>\n  <%= heroicon \"academic-cap\" %>\n  <%= heroicon \"adjustments-horizontal\" %>\n  <%= heroicon \"adjustments-vertical\" %>\n  <%= heroicon \"archive-box-arrow-down\" %>\n  <%= heroicon \"archive-box-x-mark\" %>\n  <%= heroicon \"archive-box\" %>\n  <%= heroicon \"arrow-down-circle\" %>\n  <%= heroicon \"arrow-down-left\" %>\n  <%= heroicon \"arrow-down-on-square-stack\" %>\n  <%= heroicon \"arrow-down-on-square\" %>\n  <%= heroicon \"arrow-down-right\" %>\n  <%= heroicon \"arrow-down-tray\" %>\n  <%= heroicon \"arrow-down\" %>\n  <%= heroicon \"arrow-left-circle\" %>\n  <%= heroicon \"arrow-left-on-rectangle\" %>\n  <%= heroicon \"arrow-left\" %>\n  <%= heroicon \"arrow-long-down\" %>\n  <%= heroicon \"arrow-long-left\" %>\n  <%= heroicon \"arrow-long-right\" %>\n  <%= heroicon \"arrow-long-up\" %>\n  <%= heroicon \"arrow-path-rounded-square\" %>\n  <%= heroicon \"arrow-path\" %>\n  <%= heroicon \"arrow-right-circle\" %>\n  <%= heroicon \"arrow-right-on-rectangle\" %>\n  <%= heroicon \"arrow-right\" %>\n  <%= heroicon \"arrow-small-down\" %>\n  <%= heroicon \"arrow-small-left\" %>\n  <%= heroicon \"arrow-small-right\" %>\n  <%= heroicon \"arrow-small-up\" %>\n  <%= heroicon \"arrow-top-right-on-square\" %>\n  <%= heroicon \"arrow-trending-down\" %>\n  <%= heroicon \"arrow-trending-up\" %>\n  <%= heroicon \"arrow-up-circle\" %>\n  <%= heroicon \"arrow-up-left\" %>\n  <%= heroicon \"arrow-up-on-square-stack\" %>\n  <%= heroicon \"arrow-up-on-square\" %>\n  <%= heroicon \"arrow-up-right\" %>\n  <%= heroicon \"arrow-up-tray\" %>\n  <%= heroicon \"arrow-up\" %>\n  <%= heroicon \"arrow-uturn-down\" %>\n  <%= heroicon \"arrow-uturn-left\" %>\n  <%= heroicon \"arrow-uturn-right\" %>\n  <%= heroicon \"arrow-uturn-up\" %>\n  <%= heroicon \"arrows-pointing-in\" %>\n  <%= heroicon \"arrows-pointing-out\" %>\n  <%= heroicon \"arrows-right-left\" %>\n  <%= heroicon \"arrows-up-down\" %>\n  <%= heroicon \"at-symbol\" %>\n  <%= heroicon \"backspace\" %>\n  <%= heroicon \"backward\" %>\n  <%= heroicon \"banknotes\" %>\n  <%= heroicon \"bars-2\" %>\n  <%= heroicon \"bars-3-bottom-left\" %>\n  <%= heroicon \"bars-3-bottom-right\" %>\n  <%= heroicon \"bars-3-center-left\" %>\n  <%= heroicon \"bars-3\" %>\n  <%= heroicon \"bars-4\" %>\n  <%= heroicon \"bars-arrow-down\" %>\n  <%= heroicon \"bars-arrow-up\" %>\n  <%= heroicon \"battery-0\" %>\n  <%= heroicon \"battery-100\" %>\n  <%= heroicon \"battery-50\" %>\n  <%= heroicon \"beaker\" %>\n  <%= heroicon \"bell-alert\" %>\n  <%= heroicon \"bell-slash\" %>\n  <%= heroicon \"bell-snooze\" %>\n  <%= heroicon \"bell\" %>\n  <%= heroicon \"bolt-slash\" %>\n  <%= heroicon \"bolt\" %>\n  <%= heroicon \"book-open\" %>\n  <%= heroicon \"bookmark-slash\" %>\n  <%= heroicon \"bookmark-square\" %>\n  <%= heroicon \"bookmark\" %>\n  <%= heroicon \"briefcase\" %>\n  <%= heroicon \"building-library\" %>\n  <%= heroicon \"building-office-2\" %>\n  <%= heroicon \"building-office\" %>\n  <%= heroicon \"building-storefront\" %>\n  <%= heroicon \"cake\" %>\n  <%= heroicon \"calculator\" %>\n  <%= heroicon \"calendar-days\" %>\n  <%= heroicon \"calendar\" %>\n  <%= heroicon \"camera\" %>\n  <%= heroicon \"chart-bar-square\" %>\n  <%= heroicon \"chart-bar\" %>\n  <%= heroicon \"chart-pie\" %>\n  <%= heroicon \"chat-bubble-bottom-center-text\" %>\n  <%= heroicon \"chat-bubble-bottom-center\" %>\n  <%= heroicon \"chat-bubble-left-ellipsis\" %>\n  <%= heroicon \"chat-bubble-left-right\" %>\n  <%= heroicon \"chat-bubble-left\" %>\n  <%= heroicon \"chat-bubble-oval-left-ellipsis\" %>\n  <%= heroicon \"chat-bubble-oval-left\" %>\n  <%= heroicon \"check-badge\" %>\n  <%= heroicon \"check-circle\" %>\n  <%= heroicon \"check\" %>\n  <%= heroicon \"chevron-double-down\" %>\n  <%= heroicon \"chevron-double-left\" %>\n  <%= heroicon \"chevron-double-right\" %>\n  <%= heroicon \"chevron-double-up\" %>\n  <%= heroicon \"chevron-down\" %>\n  <%= heroicon \"chevron-left\" %>\n  <%= heroicon \"chevron-right\" %>\n  <%= heroicon \"chevron-up-down\" %>\n  <%= heroicon \"chevron-up\" %>\n  <%= heroicon \"circle-stack\" %>\n  <%= heroicon \"clipboard-document-check\" %>\n  <%= heroicon \"clipboard-document-list\" %>\n  <%= heroicon \"clipboard-document\" %>\n  <%= heroicon \"clipboard\" %>\n  <%= heroicon \"clock\" %>\n  <%= heroicon \"cloud-arrow-down\" %>\n  <%= heroicon \"cloud-arrow-up\" %>\n  <%= heroicon \"cloud\" %>\n  <%= heroicon \"code-bracket-square\" %>\n  <%= heroicon \"code-bracket\" %>\n  <%= heroicon \"cog-6-tooth\" %>\n  <%= heroicon \"cog-8-tooth\" %>\n  <%= heroicon \"cog\" %>\n  <%= heroicon \"command-line\" %>\n  <%= heroicon \"computer-desktop\" %>\n  <%= heroicon \"cpu-chip\" %>\n  <%= heroicon \"credit-card\" %>\n  <%= heroicon \"cube-transparent\" %>\n  <%= heroicon \"cube\" %>\n  <%= heroicon \"currency-bangladeshi\" %>\n  <%= heroicon \"currency-dollar\" %>\n  <%= heroicon \"currency-euro\" %>\n  <%= heroicon \"currency-pound\" %>\n  <%= heroicon \"currency-rupee\" %>\n  <%= heroicon \"currency-yen\" %>\n  <%= heroicon \"cursor-arrow-rays\" %>\n  <%= heroicon \"cursor-arrow-ripple\" %>\n  <%= heroicon \"device-phone-mobile\" %>\n  <%= heroicon \"device-tablet\" %>\n  <%= heroicon \"document-arrow-down\" %>\n  <%= heroicon \"document-arrow-up\" %>\n  <%= heroicon \"document-chart-bar\" %>\n  <%= heroicon \"document-check\" %>\n  <%= heroicon \"document-duplicate\" %>\n  <%= heroicon \"document-magnifying-glass\" %>\n  <%= heroicon \"document-minus\" %>\n  <%= heroicon \"document-plus\" %>\n  <%= heroicon \"document-text\" %>\n  <%= heroicon \"document\" %>\n  <%= heroicon \"ellipsis-horizontal-circle\" %>\n  <%= heroicon \"ellipsis-horizontal\" %>\n  <%= heroicon \"ellipsis-vertical\" %>\n  <%= heroicon \"envelope-open\" %>\n  <%= heroicon \"envelope\" %>\n  <%= heroicon \"exclamation-circle\" %>\n  <%= heroicon \"exclamation-triangle\" %>\n  <%= heroicon \"eye-slash\" %>\n  <%= heroicon \"eye\" %>\n  <%= heroicon \"face-frown\" %>\n  <%= heroicon \"face-smile\" %>\n  <%= heroicon \"film\" %>\n  <%= heroicon \"finger-print\" %>\n  <%= heroicon \"fire\" %>\n  <%= heroicon \"flag\" %>\n  <%= heroicon \"folder-arrow-down\" %>\n  <%= heroicon \"folder-minus\" %>\n  <%= heroicon \"folder-open\" %>\n  <%= heroicon \"folder-plus\" %>\n  <%= heroicon \"folder\" %>\n  <%= heroicon \"forward\" %>\n  <%= heroicon \"funnel\" %>\n  <%= heroicon \"gif\" %>\n  <%= heroicon \"gift-top\" %>\n  <%= heroicon \"gift\" %>\n  <%= heroicon \"globe-alt\" %>\n  <%= heroicon \"globe-americas\" %>\n  <%= heroicon \"globe-asia-australia\" %>\n  <%= heroicon \"globe-europe-africa\" %>\n  <%= heroicon \"hand-raised\" %>\n  <%= heroicon \"hand-thumb-down\" %>\n  <%= heroicon \"hand-thumb-up\" %>\n  <%= heroicon \"hashtag\" %>\n  <%= heroicon \"heart\" %>\n  <%= heroicon \"home-modern\" %>\n  <%= heroicon \"home\" %>\n  <%= heroicon \"identification\" %>\n  <%= heroicon \"inbox-arrow-down\" %>\n  <%= heroicon \"inbox-stack\" %>\n  <%= heroicon \"inbox\" %>\n  <%= heroicon \"information-circle\" %>\n  <%= heroicon \"key\" %>\n  <%= heroicon \"language\" %>\n  <%= heroicon \"lifebuoy\" %>\n  <%= heroicon \"light-bulb\" %>\n  <%= heroicon \"link\" %>\n  <%= heroicon \"list-bullet\" %>\n  <%= heroicon \"lock-closed\" %>\n  <%= heroicon \"lock-open\" %>\n  <%= heroicon \"magnifying-glass-circle\" %>\n  <%= heroicon \"magnifying-glass-minus\" %>\n  <%= heroicon \"magnifying-glass-plus\" %>\n  <%= heroicon \"magnifying-glass\" %>\n  <%= heroicon \"map-pin\" %>\n  <%= heroicon \"map\" %>\n  <%= heroicon \"megaphone\" %>\n  <%= heroicon \"microphone\" %>\n  <%= heroicon \"minus-circle\" %>\n  <%= heroicon \"minus-small\" %>\n  <%= heroicon \"minus\" %>\n  <%= heroicon \"moon\" %>\n  <%= heroicon \"musical-note\" %>\n  <%= heroicon \"newspaper\" %>\n  <%= heroicon \"no-symbol\" %>\n  <%= heroicon \"paint-brush\" %>\n  <%= heroicon \"paper-airplane\" %>\n  <%= heroicon \"paper-clip\" %>\n  <%= heroicon \"pause\" %>\n  <%= heroicon \"pencil-square\" %>\n  <%= heroicon \"pencil\" %>\n  <%= heroicon \"phone-arrow-down-left\" %>\n  <%= heroicon \"phone-arrow-up-right\" %>\n  <%= heroicon \"phone-x-mark\" %>\n  <%= heroicon \"phone\" %>\n  <%= heroicon \"photo\" %>\n  <%= heroicon \"play-pause\" %>\n  <%= heroicon \"play\" %>\n  <%= heroicon \"plus-circle\" %>\n  <%= heroicon \"plus-small\" %>\n  <%= heroicon \"plus\" %>\n  <%= heroicon \"presentation-chart-bar\" %>\n  <%= heroicon \"presentation-chart-line\" %>\n  <%= heroicon \"printer\" %>\n  <%= heroicon \"puzzle-piece\" %>\n  <%= heroicon \"qr-code\" %>\n  <%= heroicon \"question-mark-circle\" %>\n  <%= heroicon \"queue-list\" %>\n  <%= heroicon \"radio\" %>\n  <%= heroicon \"receipt-percent\" %>\n  <%= heroicon \"receipt-refund\" %>\n  <%= heroicon \"rectangle-group\" %>\n  <%= heroicon \"rectangle-stack\" %>\n  <%= heroicon \"rss\" %>\n  <%= heroicon \"scale\" %>\n  <%= heroicon \"scissors\" %>\n  <%= heroicon \"server-stack\" %>\n  <%= heroicon \"server\" %>\n  <%= heroicon \"share\" %>\n  <%= heroicon \"shield-check\" %>\n  <%= heroicon \"shield-exclamation\" %>\n  <%= heroicon \"shopping-bag\" %>\n  <%= heroicon \"shopping-cart\" %>\n  <%= heroicon \"signal-slash\" %>\n  <%= heroicon \"signal\" %>\n  <%= heroicon \"sparkles\" %>\n  <%= heroicon \"speaker-wave\" %>\n  <%= heroicon \"speaker-x-mark\" %>\n  <%= heroicon \"square-2-stack\" %>\n  <%= heroicon \"squares-2x2\" %>\n  <%= heroicon \"squares-plus\" %>\n  <%= heroicon \"star\" %>\n  <%= heroicon \"stop\" %>\n  <%= heroicon \"sun\" %>\n  <%= heroicon \"swatch\" %>\n  <%= heroicon \"table-cells\" %>\n  <%= heroicon \"tag\" %>\n  <%= heroicon \"ticket\" %>\n  <%= heroicon \"trash\" %>\n  <%= heroicon \"truck\" %>\n  <%= heroicon \"user-circle\" %>\n  <%= heroicon \"user-group\" %>\n  <%= heroicon \"user-minus\" %>\n  <%= heroicon \"user-plus\" %>\n  <%= heroicon \"user\" %>\n  <%= heroicon \"users\" %>\n  <%= heroicon \"variable\" %>\n  <%= heroicon \"video-camera-slash\" %>\n  <%= heroicon \"video-camera\" %>\n  <%= heroicon \"view-columns\" %>\n  <%= heroicon \"wallet\" %>\n  <%= heroicon \"wifi\" %>\n  <%= heroicon \"wrench-screwdriver\" %>\n  <%= heroicon \"wrench\" %>\n  <%= heroicon \"x-circle\" %>\n  <%= heroicon \"x-mark\" %>\n</div>\n"
  },
  {
    "path": "test/dummy/app/views/pages/home.html.erb",
    "content": "<%= render \"pages/solid\" %>\n<hr>\n<%= render \"pages/outline\" %>\n<hr>\n<%= render \"pages/mini\" %>\n<hr>\n<%= render \"pages/edge_cases\" %>\n"
  },
  {
    "path": "test/dummy/bin/rails",
    "content": "#!/usr/bin/env ruby\n# frozen_string_literal: true\n\nAPP_PATH = File.expand_path(\"../config/application\", __dir__)\nrequire_relative \"../config/boot\"\nrequire \"rails/commands\"\n"
  },
  {
    "path": "test/dummy/bin/rake",
    "content": "#!/usr/bin/env ruby\n# frozen_string_literal: true\n\nrequire_relative \"../config/boot\"\nrequire \"rake\"\nRake.application.run\n"
  },
  {
    "path": "test/dummy/bin/setup",
    "content": "#!/usr/bin/env ruby\n# frozen_string_literal: true\n\nrequire \"fileutils\"\n\n# path to your application root.\nAPP_ROOT = File.expand_path(\"..\", __dir__)\n\ndef system!(*args)\n  system(*args) || abort(\"\\n== Command #{args} failed ==\")\nend\n\nFileUtils.chdir APP_ROOT do\n  # This script is a way to setup or update your development environment automatically.\n  # This script is idempotent, so that you can run it at anytime and get an expectable outcome.\n  # Add necessary setup steps to this file.\n\n  puts \"== Installing dependencies ==\"\n  system! \"gem install bundler --conservative\"\n  system(\"bundle check\") || system!(\"bundle install\")\n\n  # puts \"\\n== Copying sample files ==\"\n  # unless File.exist?('config/database.yml')\n  #   FileUtils.cp 'config/database.yml.sample', 'config/database.yml'\n  # end\n\n  puts \"\\n== Preparing database ==\"\n  system! \"bin/rails db:prepare\"\n\n  puts \"\\n== Removing old logs and tempfiles ==\"\n  system! \"bin/rails log:clear tmp:clear\"\n\n  puts \"\\n== Restarting application server ==\"\n  system! \"bin/rails restart\"\nend\n"
  },
  {
    "path": "test/dummy/config/application.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative \"boot\"\n\nrequire \"rails/all\"\n\nBundler.require(*Rails.groups)\nrequire \"heroicon\"\n\nmodule Dummy\n  class Application < Rails::Application\n    config.load_defaults \"#{Rails::VERSION::MAJOR}.#{Rails::VERSION::MINOR}\".to_f\n\n    if Rails::VERSION::MAJOR == 5\n      config.active_record.sqlite3.represent_boolean_as_integer = true\n    end\n  end\nend\n"
  },
  {
    "path": "test/dummy/config/boot.rb",
    "content": "# frozen_string_literal: true\n\n# Set up gems listed in the Gemfile.\nENV[\"BUNDLE_GEMFILE\"] ||= File.expand_path(\"../../../Gemfile\", __dir__)\n\nrequire \"bundler/setup\" if File.exist?(ENV[\"BUNDLE_GEMFILE\"])\n$LOAD_PATH.unshift File.expand_path(\"../../../lib\", __dir__)\n"
  },
  {
    "path": "test/dummy/config/cable.yml",
    "content": "development:\n  adapter: async\n\ntest:\n  adapter: test\n\nproduction:\n  adapter: redis\n  url: <%= ENV.fetch(\"REDIS_URL\") { \"redis://localhost:6379/1\" } %>\n  channel_prefix: dummy_production\n"
  },
  {
    "path": "test/dummy/config/database.yml",
    "content": "# SQLite. Versions 3.8.0 and up are supported.\n#   gem install sqlite3\n#\n#   Ensure the SQLite 3 gem is defined in your Gemfile\n#   gem 'sqlite3'\n#\ndefault: &default\n  adapter: sqlite3\n  pool: <%= ENV.fetch(\"RAILS_MAX_THREADS\") { 5 } %>\n  timeout: 5000\n\ndevelopment:\n  <<: *default\n  database: db/development.sqlite3\n\n# Warning: The database defined as \"test\" will be erased and\n# re-generated from your development database when you run \"rake\".\n# Do not set this db to the same as development or production.\ntest:\n  <<: *default\n  database: db/test.sqlite3\n\nproduction:\n  <<: *default\n  database: db/production.sqlite3\n"
  },
  {
    "path": "test/dummy/config/environment.rb",
    "content": "# frozen_string_literal: true\n\n# Load the Rails application.\nrequire_relative \"application\"\n\n# Initialize the Rails application.\nRails.application.initialize!\n"
  },
  {
    "path": "test/dummy/config/environments/development.rb",
    "content": "# frozen_string_literal: true\n\nRails.application.configure do\n  # Settings specified here will take precedence over those in config/application.rb.\n\n  # In the development environment your application's code is reloaded on\n  # every request. This slows down response time but is perfect for development\n  # since you don't have to restart the web server when you make code changes.\n  config.cache_classes = false\n\n  # Do not eager load code on boot.\n  config.eager_load = false\n\n  # Show full error reports.\n  config.consider_all_requests_local = true\n\n  # Enable/disable caching. By default caching is disabled.\n  # Run rails dev:cache to toggle caching.\n  if Rails.root.join(\"tmp\", \"caching-dev.txt\").exist?\n    config.action_controller.perform_caching = true\n    config.action_controller.enable_fragment_cache_logging = true\n\n    config.cache_store = :memory_store\n    config.public_file_server.headers = {\n      \"Cache-Control\" => \"public, max-age=#{2.days.to_i}\"\n    }\n  else\n    config.action_controller.perform_caching = false\n\n    config.cache_store = :null_store\n  end\n\n  # Store uploaded files on the local file system (see config/storage.yml for options).\n  config.active_storage.service = :local\n\n  # Don't care if the mailer can't send.\n  config.action_mailer.raise_delivery_errors = false\n\n  config.action_mailer.perform_caching = false\n\n  # Print deprecation notices to the Rails logger.\n  config.active_support.deprecation = :log\n\n  # Raise an error on page load if there are pending migrations.\n  config.active_record.migration_error = :page_load\n\n  # Highlight code that triggered database queries in logs.\n  config.active_record.verbose_query_logs = true\n\n  # Debug mode disables concatenation and preprocessing of assets.\n  # This option may cause significant delays in view rendering with a large\n  # number of complex assets.\n  config.assets.debug = true\n\n  config.assets.check_precompiled_asset = false\n\n  # Suppress logger output for asset requests.\n  config.assets.quiet = true\n\n  # Raises error for missing translations.\n  # config.action_view.raise_on_missing_translations = true\n\n  # Use an evented file watcher to asynchronously detect changes in source code,\n  # routes, locales, etc. This feature depends on the listen gem.\n  # config.file_watcher = ActiveSupport::EventedFileUpdateChecker\nend\n"
  },
  {
    "path": "test/dummy/config/environments/production.rb",
    "content": "# frozen_string_literal: true\n\nRails.application.configure do\n  # Settings specified here will take precedence over those in config/application.rb.\n\n  # Code is not reloaded between requests.\n  config.cache_classes = true\n\n  # Eager load code on boot. This eager loads most of Rails and\n  # your application in memory, allowing both threaded web servers\n  # and those relying on copy on write to perform better.\n  # Rake tasks automatically ignore this option for performance.\n  config.eager_load = true\n\n  # Full error reports are disabled and caching is turned on.\n  config.consider_all_requests_local = false\n  config.action_controller.perform_caching = true\n\n  # Ensures that a master key has been made available in either ENV[\"RAILS_MASTER_KEY\"]\n  # or in config/master.key. This key is used to decrypt credentials (and other encrypted files).\n  # config.require_master_key = true\n\n  # Disable serving static files from the `/public` folder by default since\n  # Apache or NGINX already handles this.\n  config.public_file_server.enabled = ENV[\"RAILS_SERVE_STATIC_FILES\"].present?\n\n  # Compress CSS using a preprocessor.\n  # config.assets.css_compressor = :sass\n\n  # Do not fallback to assets pipeline if a precompiled asset is missed.\n  config.assets.compile = false\n\n  # Enable serving of images, stylesheets, and JavaScripts from an asset server.\n  # config.action_controller.asset_host = 'http://assets.example.com'\n\n  # Specifies the header that your server uses for sending files.\n  # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache\n  # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX\n\n  # Store uploaded files on the local file system (see config/storage.yml for options).\n  config.active_storage.service = :local\n\n  # Mount Action Cable outside main process or domain.\n  # config.action_cable.mount_path = nil\n  # config.action_cable.url = 'wss://example.com/cable'\n  # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\\/\\/example.*/ ]\n\n  # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.\n  # config.force_ssl = true\n\n  # Use the lowest log level to ensure availability of diagnostic information\n  # when problems arise.\n  config.log_level = :debug\n\n  # Prepend all log lines with the following tags.\n  config.log_tags = [:request_id]\n\n  # Use a different cache store in production.\n  # config.cache_store = :mem_cache_store\n\n  # Use a real queuing backend for Active Job (and separate queues per environment).\n  # config.active_job.queue_adapter     = :resque\n  # config.active_job.queue_name_prefix = \"dummy_production\"\n\n  config.action_mailer.perform_caching = false\n\n  # Ignore bad email addresses and do not raise email delivery errors.\n  # Set this to true and configure the email server for immediate delivery to raise delivery errors.\n  # config.action_mailer.raise_delivery_errors = false\n\n  # Enable locale fallbacks for I18n (makes lookups for any locale fall back to\n  # the I18n.default_locale when a translation cannot be found).\n  config.i18n.fallbacks = true\n\n  # Send deprecation notices to registered listeners.\n  config.active_support.deprecation = :notify\n\n  # Use default logging formatter so that PID and timestamp are not suppressed.\n  config.log_formatter = ::Logger::Formatter.new\n\n  # Use a different logger for distributed setups.\n  # require 'syslog/logger'\n  # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')\n\n  if ENV[\"RAILS_LOG_TO_STDOUT\"].present?\n    logger = ActiveSupport::Logger.new($stdout)\n    logger.formatter = config.log_formatter\n    config.logger = ActiveSupport::TaggedLogging.new(logger)\n  end\n\n  # Do not dump schema after migrations.\n  config.active_record.dump_schema_after_migration = false\n\n  # Inserts middleware to perform automatic connection switching.\n  # The `database_selector` hash is used to pass options to the DatabaseSelector\n  # middleware. The `delay` is used to determine how long to wait after a write\n  # to send a subsequent read to the primary.\n  #\n  # The `database_resolver` class is used by the middleware to determine which\n  # database is appropriate to use based on the time delay.\n  #\n  # The `database_resolver_context` class is used by the middleware to set\n  # timestamps for the last write to the primary. The resolver uses the context\n  # class timestamps to determine how long to wait before reading from the\n  # replica.\n  #\n  # By default Rails will store a last write timestamp in the session. The\n  # DatabaseSelector middleware is designed as such you can define your own\n  # strategy for connection switching and pass that into the middleware through\n  # these configuration options.\n  # config.active_record.database_selector = { delay: 2.seconds }\n  # config.active_record.database_resolver = ActiveRecord::Middleware::DatabaseSelector::Resolver\n  # config.active_record.database_resolver_context = ActiveRecord::Middleware::DatabaseSelector::Resolver::Session\nend\n"
  },
  {
    "path": "test/dummy/config/environments/test.rb",
    "content": "# frozen_string_literal: true\n\n# The test environment is used exclusively to run your application's\n# test suite. You never need to work with it otherwise. Remember that\n# your test database is \"scratch space\" for the test suite and is wiped\n# and recreated between test runs. Don't rely on the data there!\n\nRails.application.configure do\n  # Settings specified here will take precedence over those in config/application.rb.\n\n  config.cache_classes = false\n  config.action_view.cache_template_loading = true\n\n  # Do not eager load code on boot. This avoids loading your whole application\n  # just for the purpose of running a single test. If you are using a tool that\n  # preloads Rails for running tests, you may have to set it to true.\n  config.eager_load = false\n\n  # Configure public file server for tests with Cache-Control for performance.\n  config.public_file_server.enabled = true\n  config.public_file_server.headers = {\n    \"Cache-Control\" => \"public, max-age=#{1.hour.to_i}\"\n  }\n\n  # Show full error reports and disable caching.\n  config.consider_all_requests_local = true\n  config.action_controller.perform_caching = false\n  config.cache_store = :null_store\n\n  # Raise exceptions instead of rendering exception templates.\n  config.action_dispatch.show_exceptions = false\n\n  # Disable request forgery protection in test environment.\n  config.action_controller.allow_forgery_protection = false\n\n  # Store uploaded files on the local file system in a temporary directory.\n  config.active_storage.service = :test\n\n  config.action_mailer.perform_caching = false\n\n  # Tell Action Mailer not to deliver emails to the real world.\n  # The :test delivery method accumulates sent emails in the\n  # ActionMailer::Base.deliveries array.\n  config.action_mailer.delivery_method = :test\n\n  # Print deprecation notices to the stderr.\n  config.active_support.deprecation = :stderr\n\n  # Raises error for missing translations.\n  # config.action_view.raise_on_missing_translations = true\nend\n"
  },
  {
    "path": "test/dummy/config/initializers/application_controller_renderer.rb",
    "content": "# frozen_string_literal: true\n# Be sure to restart your server when you modify this file.\n\n# ActiveSupport::Reloader.to_prepare do\n#   ApplicationController.renderer.defaults.merge!(\n#     http_host: 'example.org',\n#     https: false\n#   )\n# end\n"
  },
  {
    "path": "test/dummy/config/initializers/assets.rb",
    "content": "# frozen_string_literal: true\n\n# Be sure to restart your server when you modify this file.\n\n# Version of your assets, change this if you want to expire all your assets.\n# Rails.application.config.assets.version = \"1.0\"\n\n# Add additional assets to the asset load path.\n# Rails.application.config.assets.paths << Emoji.images_path\n\n# Precompile additional assets.\n# application.js, application.css, and all non-JS/CSS in the app/assets\n# folder are already added.\n# Rails.application.config.assets.precompile += %w( admin.js admin.css )\n"
  },
  {
    "path": "test/dummy/config/initializers/backtrace_silencers.rb",
    "content": "# frozen_string_literal: true\n# Be sure to restart your server when you modify this file.\n\n# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.\n# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }\n\n# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.\n# Rails.backtrace_cleaner.remove_silencers!\n"
  },
  {
    "path": "test/dummy/config/initializers/content_security_policy.rb",
    "content": "# frozen_string_literal: true\n# Be sure to restart your server when you modify this file.\n\n# Define an application-wide content security policy\n# For further information see the following documentation\n# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy\n\n# Rails.application.config.content_security_policy do |policy|\n#   policy.default_src :self, :https\n#   policy.font_src    :self, :https, :data\n#   policy.img_src     :self, :https, :data\n#   policy.object_src  :none\n#   policy.script_src  :self, :https\n#   policy.style_src   :self, :https\n\n#   # Specify URI for violation reports\n#   # policy.report_uri \"/csp-violation-report-endpoint\"\n# end\n\n# If you are using UJS then enable automatic nonce generation\n# Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) }\n\n# Set the nonce only to specific directives\n# Rails.application.config.content_security_policy_nonce_directives = %w(script-src)\n\n# Report CSP violations to a specified URI\n# For further information see the following documentation:\n# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only\n# Rails.application.config.content_security_policy_report_only = true\n"
  },
  {
    "path": "test/dummy/config/initializers/cookies_serializer.rb",
    "content": "# frozen_string_literal: true\n\n# Be sure to restart your server when you modify this file.\n\n# Specify a serializer for the signed and encrypted cookie jars.\n# Valid options are :json, :marshal, and :hybrid.\nRails.application.config.action_dispatch.cookies_serializer = :json\n"
  },
  {
    "path": "test/dummy/config/initializers/filter_parameter_logging.rb",
    "content": "# frozen_string_literal: true\n\n# Be sure to restart your server when you modify this file.\n\n# Configure sensitive parameters which will be filtered from the log file.\nRails.application.config.filter_parameters += [:password]\n"
  },
  {
    "path": "test/dummy/config/initializers/heroicon.rb",
    "content": "# frozen_string_literal: true\n\nHeroicon.configure do |config|\n  config.variant = :solid # Options are :solid, :outline and :mini\n\n  ##\n  # You can set a default class, which will get applied to every icon with\n  # the given variant. To do so, un-comment the line below.\n  config.default_class = {solid: \"h-5 w-5\", outline: \"h-6 w-6\", mini: \"h-4 w-4\"}\nend\n"
  },
  {
    "path": "test/dummy/config/initializers/inflections.rb",
    "content": "# frozen_string_literal: true\n# Be sure to restart your server when you modify this file.\n\n# Add new inflection rules using the following format. Inflections\n# are locale specific, and you may define rules for as many different\n# locales as you wish. All of these examples are active by default:\n# ActiveSupport::Inflector.inflections(:en) do |inflect|\n#   inflect.plural /^(ox)$/i, '\\1en'\n#   inflect.singular /^(ox)en/i, '\\1'\n#   inflect.irregular 'person', 'people'\n#   inflect.uncountable %w( fish sheep )\n# end\n\n# These inflection rules are supported but not enabled by default:\n# ActiveSupport::Inflector.inflections(:en) do |inflect|\n#   inflect.acronym 'RESTful'\n# end\n"
  },
  {
    "path": "test/dummy/config/initializers/mime_types.rb",
    "content": "# frozen_string_literal: true\n# Be sure to restart your server when you modify this file.\n\n# Add new mime types for use in respond_to blocks:\n# Mime::Type.register \"text/richtext\", :rtf\n"
  },
  {
    "path": "test/dummy/config/initializers/wrap_parameters.rb",
    "content": "# frozen_string_literal: true\n\n# Be sure to restart your server when you modify this file.\n\n# This file contains settings for ActionController::ParamsWrapper which\n# is enabled by default.\n\n# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.\nActiveSupport.on_load(:action_controller) do\n  wrap_parameters format: [:json]\nend\n\n# To enable root element in JSON for ActiveRecord objects.\n# ActiveSupport.on_load(:active_record) do\n#   self.include_root_in_json = true\n# end\n"
  },
  {
    "path": "test/dummy/config/locales/en.yml",
    "content": "# Files in the config/locales directory are used for internationalization\n# and are automatically loaded by Rails. If you want to use locales other\n# than English, add the necessary files in this directory.\n#\n# To use the locales, use `I18n.t`:\n#\n#     I18n.t 'hello'\n#\n# In views, this is aliased to just `t`:\n#\n#     <%= t('hello') %>\n#\n# To use a different locale, set it with `I18n.locale`:\n#\n#     I18n.locale = :es\n#\n# This would use the information in config/locales/es.yml.\n#\n# The following keys must be escaped otherwise they will not be retrieved by\n# the default I18n backend:\n#\n# true, false, on, off, yes, no\n#\n# Instead, surround them with single quotes.\n#\n# en:\n#   'true': 'foo'\n#\n# To learn more, please read the Rails Internationalization guide\n# available at https://guides.rubyonrails.org/i18n.html.\n\nen:\n  hello: \"Hello world\"\n"
  },
  {
    "path": "test/dummy/config/puma.rb",
    "content": "# frozen_string_literal: true\n\n# Puma can serve each request in a thread from an internal thread pool.\n# The `threads` method setting takes two numbers: a minimum and maximum.\n# Any libraries that use thread pools should be configured to match\n# the maximum value specified for Puma. Default is set to 5 threads for minimum\n# and maximum; this matches the default thread size of Active Record.\n#\nmax_threads_count = ENV.fetch(\"RAILS_MAX_THREADS\", 5)\nmin_threads_count = ENV.fetch(\"RAILS_MIN_THREADS\") { max_threads_count }\nthreads min_threads_count, max_threads_count\n\n# Specifies the `port` that Puma will listen on to receive requests; default is 3000.\n#\nport ENV.fetch(\"PORT\", 3000)\n\n# Specifies the `environment` that Puma will run in.\n#\nenvironment ENV.fetch(\"RAILS_ENV\", \"development\")\n\n# Specifies the `pidfile` that Puma will use.\npidfile ENV.fetch(\"PIDFILE\", \"tmp/pids/server.pid\")\n\n# Specifies the number of `workers` to boot in clustered mode.\n# Workers are forked web server processes. If using threads and workers together\n# the concurrency of the application would be max `threads` * `workers`.\n# Workers do not work on JRuby or Windows (both of which do not support\n# processes).\n#\n# workers ENV.fetch(\"WEB_CONCURRENCY\") { 2 }\n\n# Use the `preload_app!` method when specifying a `workers` number.\n# This directive tells Puma to first boot the application and load code\n# before forking the application. This takes advantage of Copy On Write\n# process behavior so workers use less memory.\n#\n# preload_app!\n\n# Allow puma to be restarted by `rails restart` command.\nplugin :tmp_restart\n"
  },
  {
    "path": "test/dummy/config/routes.rb",
    "content": "# frozen_string_literal: true\n\nRails.application.routes.draw do\n  root to: \"pages#home\"\nend\n"
  },
  {
    "path": "test/dummy/config/spring.rb",
    "content": "# frozen_string_literal: true\n\nSpring.watch(\n  \".ruby-version\",\n  \".rbenv-vars\",\n  \"tmp/restart.txt\",\n  \"tmp/caching-dev.txt\"\n)\n"
  },
  {
    "path": "test/dummy/config/storage.yml",
    "content": "test:\n  service: Disk\n  root: <%= Rails.root.join(\"tmp/storage\") %>\n\nlocal:\n  service: Disk\n  root: <%= Rails.root.join(\"storage\") %>\n\n# Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)\n# amazon:\n#   service: S3\n#   access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>\n#   secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>\n#   region: us-east-1\n#   bucket: your_own_bucket\n\n# Remember not to checkin your GCS keyfile to a repository\n# google:\n#   service: GCS\n#   project: your_project\n#   credentials: <%= Rails.root.join(\"path/to/gcs.keyfile\") %>\n#   bucket: your_own_bucket\n\n# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)\n# microsoft:\n#   service: AzureStorage\n#   storage_account_name: your_account_name\n#   storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>\n#   container: your_container_name\n\n# mirror:\n#   service: Mirror\n#   primary: local\n#   mirrors: [ amazon, google, microsoft ]\n"
  },
  {
    "path": "test/dummy/config.ru",
    "content": "# frozen_string_literal: true\n\n# This file is used by Rack-based servers to start the application.\n\nrequire_relative \"config/environment\"\n\nrun Rails.application\n"
  },
  {
    "path": "test/dummy/lib/assets/.keep",
    "content": ""
  },
  {
    "path": "test/dummy/log/.keep",
    "content": ""
  },
  {
    "path": "test/dummy/public/404.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>The page you were looking for doesn't exist (404)</title>\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <style>\n  .rails-default-error-page {\n    background-color: #EFEFEF;\n    color: #2E2F30;\n    text-align: center;\n    font-family: arial, sans-serif;\n    margin: 0;\n  }\n\n  .rails-default-error-page div.dialog {\n    width: 95%;\n    max-width: 33em;\n    margin: 4em auto 0;\n  }\n\n  .rails-default-error-page div.dialog > div {\n    border: 1px solid #CCC;\n    border-right-color: #999;\n    border-left-color: #999;\n    border-bottom-color: #BBB;\n    border-top: #B00100 solid 4px;\n    border-top-left-radius: 9px;\n    border-top-right-radius: 9px;\n    background-color: white;\n    padding: 7px 12% 0;\n    box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);\n  }\n\n  .rails-default-error-page h1 {\n    font-size: 100%;\n    color: #730E15;\n    line-height: 1.5em;\n  }\n\n  .rails-default-error-page div.dialog > p {\n    margin: 0 0 1em;\n    padding: 1em;\n    background-color: #F7F7F7;\n    border: 1px solid #CCC;\n    border-right-color: #999;\n    border-left-color: #999;\n    border-bottom-color: #999;\n    border-bottom-left-radius: 4px;\n    border-bottom-right-radius: 4px;\n    border-top-color: #DADADA;\n    color: #666;\n    box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);\n  }\n  </style>\n</head>\n\n<body class=\"rails-default-error-page\">\n  <!-- This file lives in public/404.html -->\n  <div class=\"dialog\">\n    <div>\n      <h1>The page you were looking for doesn't exist.</h1>\n      <p>You may have mistyped the address or the page may have moved.</p>\n    </div>\n    <p>If you are the application owner check the logs for more information.</p>\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "test/dummy/public/422.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>The change you wanted was rejected (422)</title>\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <style>\n  .rails-default-error-page {\n    background-color: #EFEFEF;\n    color: #2E2F30;\n    text-align: center;\n    font-family: arial, sans-serif;\n    margin: 0;\n  }\n\n  .rails-default-error-page div.dialog {\n    width: 95%;\n    max-width: 33em;\n    margin: 4em auto 0;\n  }\n\n  .rails-default-error-page div.dialog > div {\n    border: 1px solid #CCC;\n    border-right-color: #999;\n    border-left-color: #999;\n    border-bottom-color: #BBB;\n    border-top: #B00100 solid 4px;\n    border-top-left-radius: 9px;\n    border-top-right-radius: 9px;\n    background-color: white;\n    padding: 7px 12% 0;\n    box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);\n  }\n\n  .rails-default-error-page h1 {\n    font-size: 100%;\n    color: #730E15;\n    line-height: 1.5em;\n  }\n\n  .rails-default-error-page div.dialog > p {\n    margin: 0 0 1em;\n    padding: 1em;\n    background-color: #F7F7F7;\n    border: 1px solid #CCC;\n    border-right-color: #999;\n    border-left-color: #999;\n    border-bottom-color: #999;\n    border-bottom-left-radius: 4px;\n    border-bottom-right-radius: 4px;\n    border-top-color: #DADADA;\n    color: #666;\n    box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);\n  }\n  </style>\n</head>\n\n<body class=\"rails-default-error-page\">\n  <!-- This file lives in public/422.html -->\n  <div class=\"dialog\">\n    <div>\n      <h1>The change you wanted was rejected.</h1>\n      <p>Maybe you tried to change something you didn't have access to.</p>\n    </div>\n    <p>If you are the application owner check the logs for more information.</p>\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "test/dummy/public/500.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>We're sorry, but something went wrong (500)</title>\n  <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n  <style>\n  .rails-default-error-page {\n    background-color: #EFEFEF;\n    color: #2E2F30;\n    text-align: center;\n    font-family: arial, sans-serif;\n    margin: 0;\n  }\n\n  .rails-default-error-page div.dialog {\n    width: 95%;\n    max-width: 33em;\n    margin: 4em auto 0;\n  }\n\n  .rails-default-error-page div.dialog > div {\n    border: 1px solid #CCC;\n    border-right-color: #999;\n    border-left-color: #999;\n    border-bottom-color: #BBB;\n    border-top: #B00100 solid 4px;\n    border-top-left-radius: 9px;\n    border-top-right-radius: 9px;\n    background-color: white;\n    padding: 7px 12% 0;\n    box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);\n  }\n\n  .rails-default-error-page h1 {\n    font-size: 100%;\n    color: #730E15;\n    line-height: 1.5em;\n  }\n\n  .rails-default-error-page div.dialog > p {\n    margin: 0 0 1em;\n    padding: 1em;\n    background-color: #F7F7F7;\n    border: 1px solid #CCC;\n    border-right-color: #999;\n    border-left-color: #999;\n    border-bottom-color: #999;\n    border-bottom-left-radius: 4px;\n    border-bottom-right-radius: 4px;\n    border-top-color: #DADADA;\n    color: #666;\n    box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);\n  }\n  </style>\n</head>\n\n<body class=\"rails-default-error-page\">\n  <!-- This file lives in public/500.html -->\n  <div class=\"dialog\">\n    <div>\n      <h1>We're sorry, but something went wrong.</h1>\n    </div>\n    <p>If you are the application owner check the logs for more information.</p>\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "test/heroicon/configuration_test.rb",
    "content": "# frozen_string_literal: true\n\nrequire \"test_helper\"\n\nclass Heroicon::ConfigurationTest < ActiveSupport::TestCase\n  it \"sets DEFAULT_VARIANT to :solid\" do\n    assert_equal :solid, Heroicon::Configuration::DEFAULT_VARIANT\n  end\n\n  it \"sets variant to the DEFAULT_VARIANT\" do\n    assert_equal :solid, Heroicon::Configuration.new.variant\n  end\nend\n"
  },
  {
    "path": "test/heroicon/icon_test.rb",
    "content": "# frozen_string_literal: true\n\nrequire \"test_helper\"\nrequire \"pry\"\n\nclass Heroicon::IconTest < ActiveSupport::TestCase\n  let(:default_args) { {name: \"user\", variant: :outline, options: {}, path_options: {}} }\n  subject { Heroicon::Icon.new(**default_args) }\n\n  describe \"#initialize\" do\n    it \"requires name\" do\n      default_args.delete(:name)\n      assert_raises(ArgumentError) { Heroicon::Icon.new(**default_args) }\n    end\n\n    it \"sets name\" do\n      assert_equal \"user\", subject.name\n    end\n\n    it \"requires variant\" do\n      default_args.delete(:variant)\n      assert_raises(ArgumentError) { Heroicon::Icon.new(**default_args) }\n    end\n\n    it \"sets variant\" do\n      assert_equal :outline, subject.variant\n    end\n\n    it \"sets variant to solid when invalid\" do\n      default_args[:variant] = :invalid\n      assert_equal :solid, subject.variant\n    end\n\n    it \"requires options\" do\n      default_args.delete(:options)\n      assert_raises(ArgumentError) { Heroicon::Icon.new(**default_args) }\n    end\n\n    it \"requires path_options\" do\n      default_args.delete(:path_options)\n      assert_raises(ArgumentError) { Heroicon::Icon.new(**default_args) }\n    end\n  end\n\n  describe \"#render\" do\n    it \"returns a Nokogiri::HTML::DocumentFragment\" do\n      assert_kind_of Nokogiri::HTML::DocumentFragment, subject.render\n    end\n\n    context \"default class present\" do\n      context \"disable_default_class is true\" do\n        it \"disables prepending the class\" do\n          Heroicon.configuration.stubs(:default_class).returns({solid: \"foobar\"})\n          subject.options[:disable_default_class] = true\n          subject.options[:class] = \"custom_class\"\n          assert_equal \"custom_class\", subject.render.at_css(\"svg\").attributes[\"class\"].value\n        end\n      end\n\n      context \"default class is a hash\" do\n        it \"prepends the default variant class\" do\n          Heroicon.configuration.stubs(:default_class).returns({solid: \"foobar\"})\n          subject.stubs(:variant).returns(:solid)\n          assert_equal \"foobar\", subject.render.at_css(\"svg\").attributes[\"class\"].value\n        end\n      end\n\n      context \"default class is a string\" do\n        it \"prepends the default variant class\" do\n          Heroicon.configuration.stubs(:default_class).returns(\"foobar\")\n          subject.stubs(:variant).returns(:solid)\n          assert_equal \"foobar\", subject.render.at_css(\"svg\").attributes[\"class\"].value\n        end\n      end\n\n      it \"prepends a default class to the svg\" do\n        subject.options[:class] = \"foo\"\n        assert_equal \"h-6 w-6 foo\", subject.render.at_css(\"svg\").attributes[\"class\"].value\n      end\n    end\n\n    it \"puts all options on the generated svg\" do\n      subject.options[:foo] = \"bar\"\n      assert_equal \"bar\", subject.render.at_css(\"svg\").attributes[\"foo\"].value\n    end\n\n    it \"allows setting path stroke width\" do\n      subject.path_options[:stroke_linecap] = \"foo\"\n      assert_equal \"foo\", subject.render.at_css(\"path\").attributes[\"stroke-linecap\"].value\n    end\n\n    context \"name not found\" do\n      context \"development\" do\n        it \"renders a warning\" do\n          subject.stubs(name: rand.to_s)\n          Rails.stubs(:env).returns(OpenStruct.new(development?: true))\n\n          assert_match(/^<script/, subject.render.to_s)\n        end\n      end\n\n      context \"not development\" do\n        it \"fails silently when name not found\" do\n          subject.stubs(name: rand.to_s)\n          assert_nil subject.render\n        end\n      end\n    end\n\n    describe \"#to_s\" do\n      it \"starts with an svg tag\" do\n        assert_match(/^<svg/, subject.render.to_s)\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "test/heroicon_test.rb",
    "content": "# frozen_string_literal: true\n\nrequire \"test_helper\"\n\nmodule Heroicon\n  class Test < ActiveSupport::TestCase\n    it \"is a module\" do\n      assert_kind_of Module, Heroicon\n    end\n\n    it \"has a version\" do\n      assert_kind_of String, Heroicon::VERSION\n    end\n\n    it \"isolates namespace for engine\" do\n      assert_equal \"heroicon\", Heroicon::Engine.engine_name\n    end\n\n    it \"sets #root to the current directory\" do\n      assert_equal Pathname.new(Dir.pwd).to_s, Heroicon.root\n    end\n  end\nend\n"
  },
  {
    "path": "test/test_helper.rb",
    "content": "# frozen_string_literal: true\n\n# Configure Rails Environment\nENV[\"RAILS_ENV\"] = \"test\"\n\nrequire_relative \"../test/dummy/config/environment\"\nActiveRecord::Migrator.migrations_paths = [File.expand_path(\"../test/dummy/db/migrate\", __dir__)]\nActiveRecord::Migrator.migrations_paths << File.expand_path(\"../db/migrate\", __dir__)\n\nrequire \"rails/test_help\"\n\nrequire \"minitest/pride\"\nrequire \"minitest/spec\"\nrequire \"mocha/minitest\"\n\n# Filter out the backtrace from minitest while preserving the one from other libraries.\nMinitest.backtrace_filter = Minitest::BacktraceFilter.new\n\n# Load fixtures from the engine\nif ActiveSupport::TestCase.respond_to?(:fixture_path=)\n  ActiveSupport::TestCase.fixture_path = File.expand_path(\"fixtures\", __dir__)\n  ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path\n  ActiveSupport::TestCase.file_fixture_path = \"#{ActiveSupport::TestCase.fixture_path}/files\"\n  ActiveSupport::TestCase.fixtures :all\nend\n\nmodule Kernel\n  alias_method :context, :describe\nend\n\nclass ActiveSupport::TestCase\n  extend Minitest::Spec::DSL\nend\n"
  }
]