├── .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.rb ├── intercom-rails │ ├── auto_include_filter.rb │ ├── config.rb │ ├── custom_data_helper.rb │ ├── date_helper.rb │ ├── encrypted_mode.rb │ ├── exceptions.rb │ ├── proxy.rb │ ├── proxy │ │ ├── company.rb │ │ └── user.rb │ ├── railtie.rb │ ├── script_tag.rb │ ├── script_tag_helper.rb │ ├── shutdown_helper.rb │ └── version.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 /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/label-ai-generated-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/.github/workflows/label-ai-generated-prs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/RELEASING.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/Rakefile -------------------------------------------------------------------------------- /intercom-rails.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/intercom-rails.gemspec -------------------------------------------------------------------------------- /lib/data/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/data/cacert.pem -------------------------------------------------------------------------------- /lib/intercom-rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails.rb -------------------------------------------------------------------------------- /lib/intercom-rails/auto_include_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails/auto_include_filter.rb -------------------------------------------------------------------------------- /lib/intercom-rails/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails/config.rb -------------------------------------------------------------------------------- /lib/intercom-rails/custom_data_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails/custom_data_helper.rb -------------------------------------------------------------------------------- /lib/intercom-rails/date_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails/date_helper.rb -------------------------------------------------------------------------------- /lib/intercom-rails/encrypted_mode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails/encrypted_mode.rb -------------------------------------------------------------------------------- /lib/intercom-rails/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails/exceptions.rb -------------------------------------------------------------------------------- /lib/intercom-rails/proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails/proxy.rb -------------------------------------------------------------------------------- /lib/intercom-rails/proxy/company.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails/proxy/company.rb -------------------------------------------------------------------------------- /lib/intercom-rails/proxy/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails/proxy/user.rb -------------------------------------------------------------------------------- /lib/intercom-rails/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails/railtie.rb -------------------------------------------------------------------------------- /lib/intercom-rails/script_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails/script_tag.rb -------------------------------------------------------------------------------- /lib/intercom-rails/script_tag_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails/script_tag_helper.rb -------------------------------------------------------------------------------- /lib/intercom-rails/shutdown_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/intercom-rails/shutdown_helper.rb -------------------------------------------------------------------------------- /lib/intercom-rails/version.rb: -------------------------------------------------------------------------------- 1 | module IntercomRails 2 | VERSION = "1.0.6" 3 | end 4 | -------------------------------------------------------------------------------- /lib/rails/generators/intercom/config/config_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/rails/generators/intercom/config/config_generator.rb -------------------------------------------------------------------------------- /lib/rails/generators/intercom/config/intercom.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/lib/rails/generators/intercom/config/intercom.rb.erb -------------------------------------------------------------------------------- /spec/action_controller_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/spec/action_controller_spec_helper.rb -------------------------------------------------------------------------------- /spec/auto_include_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/spec/auto_include_filter_spec.rb -------------------------------------------------------------------------------- /spec/auto_include_filter_spec_csp_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/spec/auto_include_filter_spec_csp_helper.rb -------------------------------------------------------------------------------- /spec/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/spec/config_spec.rb -------------------------------------------------------------------------------- /spec/encrypted_mode_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/spec/encrypted_mode_spec.rb -------------------------------------------------------------------------------- /spec/proxy/company_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/spec/proxy/company_spec.rb -------------------------------------------------------------------------------- /spec/proxy/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/spec/proxy/user_spec.rb -------------------------------------------------------------------------------- /spec/script_tag_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/spec/script_tag_helper_spec.rb -------------------------------------------------------------------------------- /spec/script_tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/spec/script_tag_spec.rb -------------------------------------------------------------------------------- /spec/shutdown_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/spec/shutdown_helper_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intercom/intercom-rails/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------