gitextract_dc2i27xd/ ├── .circleci/ │ └── config.yml ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── label-ai-generated-prs.yml ├── .gitignore ├── Gemfile ├── MIT-LICENSE ├── README.md ├── RELEASING.md ├── Rakefile ├── intercom-rails.gemspec ├── lib/ │ ├── data/ │ │ └── cacert.pem │ ├── intercom-rails/ │ │ ├── auto_include_filter.rb │ │ ├── config.rb │ │ ├── custom_data_helper.rb │ │ ├── date_helper.rb │ │ ├── encrypted_mode.rb │ │ ├── exceptions.rb │ │ ├── proxy/ │ │ │ ├── company.rb │ │ │ └── user.rb │ │ ├── proxy.rb │ │ ├── railtie.rb │ │ ├── script_tag.rb │ │ ├── script_tag_helper.rb │ │ ├── shutdown_helper.rb │ │ └── version.rb │ ├── intercom-rails.rb │ └── rails/ │ └── generators/ │ └── intercom/ │ └── config/ │ ├── config_generator.rb │ └── intercom.rb.erb └── spec/ ├── action_controller_spec_helper.rb ├── auto_include_filter_spec.rb ├── auto_include_filter_spec_csp_helper.rb ├── config_spec.rb ├── encrypted_mode_spec.rb ├── proxy/ │ ├── company_spec.rb │ └── user_spec.rb ├── script_tag_helper_spec.rb ├── script_tag_spec.rb ├── shutdown_helper_spec.rb └── spec_helper.rb