├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .travis.yml ├── Appraisals ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── gemfiles ├── .bundle │ └── config ├── rails_5_2.gemfile ├── rails_6_0.gemfile ├── rails_6_1.gemfile └── rails_7.gemfile ├── lib ├── formtastic │ └── inputs │ │ └── trix_editor_input.rb ├── trix.rb └── trix │ ├── engine.rb │ ├── form.rb │ ├── simple_form │ └── trix_editor_input.rb │ └── version.rb ├── spec ├── formtastic_integration_spec.rb ├── simple_form │ └── simple_form_integration_spec.rb ├── spec_helper.rb ├── support │ ├── formtastic_spec_helper.rb │ └── simple_form_spec_helper.rb ├── trix_editor_helper_spec.rb └── trix_spec.rb ├── trix.gemspec └── vendor └── assets ├── javascripts └── trix.js └── stylesheets └── trix.css /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_from: 2 | - .rubocop_todo.yml 3 | -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/.travis.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/bin/setup -------------------------------------------------------------------------------- /gemfiles/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_RETRY: "1" 3 | -------------------------------------------------------------------------------- /gemfiles/rails_5_2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/gemfiles/rails_5_2.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_6_0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/gemfiles/rails_6_0.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_6_1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/gemfiles/rails_6_1.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_7.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/gemfiles/rails_7.gemfile -------------------------------------------------------------------------------- /lib/formtastic/inputs/trix_editor_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/lib/formtastic/inputs/trix_editor_input.rb -------------------------------------------------------------------------------- /lib/trix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/lib/trix.rb -------------------------------------------------------------------------------- /lib/trix/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/lib/trix/engine.rb -------------------------------------------------------------------------------- /lib/trix/form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/lib/trix/form.rb -------------------------------------------------------------------------------- /lib/trix/simple_form/trix_editor_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/lib/trix/simple_form/trix_editor_input.rb -------------------------------------------------------------------------------- /lib/trix/version.rb: -------------------------------------------------------------------------------- 1 | module Trix 2 | VERSION = '2.4.0'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /spec/formtastic_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/spec/formtastic_integration_spec.rb -------------------------------------------------------------------------------- /spec/simple_form/simple_form_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/spec/simple_form/simple_form_integration_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/formtastic_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/spec/support/formtastic_spec_helper.rb -------------------------------------------------------------------------------- /spec/support/simple_form_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/spec/support/simple_form_spec_helper.rb -------------------------------------------------------------------------------- /spec/trix_editor_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/spec/trix_editor_helper_spec.rb -------------------------------------------------------------------------------- /spec/trix_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/spec/trix_spec.rb -------------------------------------------------------------------------------- /trix.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/trix.gemspec -------------------------------------------------------------------------------- /vendor/assets/javascripts/trix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/vendor/assets/javascripts/trix.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/trix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/trix/HEAD/vendor/assets/stylesheets/trix.css --------------------------------------------------------------------------------