├── .gitignore ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── richer_text_manifest.js │ ├── images │ │ └── richer_text │ │ │ └── .keep │ └── stylesheets │ │ └── richer_text │ │ ├── application.css │ │ └── richer-text.css ├── controllers │ ├── concerns │ │ └── .keep │ └── richer_text │ │ └── application_controller.rb ├── helpers │ └── richer_text │ │ ├── application_helper.rb │ │ └── tag_helper.rb ├── jobs │ └── richer_text │ │ └── application_job.rb ├── mailers │ └── richer_text │ │ └── application_mailer.rb ├── models │ ├── concerns │ │ └── .keep │ └── richer_text │ │ ├── application_record.rb │ │ ├── json_text.rb │ │ ├── o_embed.rb │ │ └── rich_text.rb └── views │ ├── layouts │ └── richer_text │ │ └── application.html.erb │ └── richer_text │ ├── contents │ └── _content.html.erb │ └── o_embeds │ ├── _embed.html.erb │ └── _richer_text_editor_embed.html.erb ├── bin └── rails ├── config └── routes.rb ├── db └── migrate │ ├── 20230107020316_create_richer_text_rich_texts.rb │ ├── 20230916224959_create_richer_text_json_texts.rb │ └── 20230926034114_create_richer_text_o_embeds.rb ├── lib ├── generators │ └── richer_text │ │ └── install │ │ └── install_generator.rb ├── richer_text.rb ├── richer_text │ ├── attribute.rb │ ├── content.rb │ ├── embed.rb │ ├── embeddable.rb │ ├── engine.rb │ ├── fragment.rb │ ├── html_visitor.rb │ ├── mark.rb │ ├── node.rb │ ├── nodes │ │ ├── attachment_figure.rb │ │ ├── attachment_gallery.rb │ │ ├── blockquote.rb │ │ ├── bullet_list.rb │ │ ├── callout.rb │ │ ├── code_block.rb │ │ ├── doc.rb │ │ ├── hard_break.rb │ │ ├── heading.rb │ │ ├── horizontal_rule.rb │ │ ├── iframely_embed.rb │ │ ├── image.rb │ │ ├── list_item.rb │ │ ├── mention.rb │ │ ├── ordered_list.rb │ │ ├── paragraph.rb │ │ ├── richer_text_embed.rb │ │ ├── table.rb │ │ ├── table_cell.rb │ │ ├── table_header.rb │ │ ├── table_row.rb │ │ └── text.rb │ ├── rendering.rb │ ├── serialization.rb │ ├── tag_helper.rb │ ├── text_visitor.rb │ └── version.rb └── tasks │ └── richer_text_tasks.rake ├── richer_text.gemspec └── test ├── controllers └── .keep ├── dummy ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── posts_controller.rb │ ├── helpers │ │ ├── application_helper.rb │ │ └── posts_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── post.rb │ └── views │ │ ├── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb │ │ └── posts │ │ ├── _form.html.erb │ │ ├── _post.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb ├── bin │ ├── rails │ ├── rake │ └── setup ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── content_security_policy.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ └── permissions_policy.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ └── storage.yml ├── db │ ├── migrate │ │ ├── 20230107020316_create_richer_text_rich_texts.rb │ │ ├── 20230107201630_create_posts.rb │ │ └── 20230728235819_create_active_storage_tables.active_storage.rb │ └── schema.rb ├── lib │ └── assets │ │ └── .keep ├── log │ └── .keep ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ └── favicon.ico └── test │ ├── controllers │ └── posts_controller_test.rb │ ├── fixtures │ └── posts.yml │ ├── models │ └── post_test.rb │ └── system │ └── posts_test.rb ├── fixtures ├── files │ └── .keep └── richer_text │ ├── json_texts.yml │ ├── o_embeds.yml │ └── rich_texts.yml ├── helpers └── .keep ├── integration ├── .keep └── navigation_test.rb ├── mailers └── .keep ├── models ├── .keep └── richer_text │ ├── json_text_test.rb │ ├── o_embed_test.rb │ └── rich_text_test.rb ├── richer_text_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/richer_text_manifest.js: -------------------------------------------------------------------------------- 1 | //= link_directory ../stylesheets/richer_text .css 2 | -------------------------------------------------------------------------------- /app/assets/images/richer_text/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/richer_text/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/assets/stylesheets/richer_text/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/richer_text/richer-text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/assets/stylesheets/richer_text/richer-text.css -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/richer_text/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/controllers/richer_text/application_controller.rb -------------------------------------------------------------------------------- /app/helpers/richer_text/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/helpers/richer_text/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/richer_text/tag_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/helpers/richer_text/tag_helper.rb -------------------------------------------------------------------------------- /app/jobs/richer_text/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/jobs/richer_text/application_job.rb -------------------------------------------------------------------------------- /app/mailers/richer_text/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/mailers/richer_text/application_mailer.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/richer_text/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/models/richer_text/application_record.rb -------------------------------------------------------------------------------- /app/models/richer_text/json_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/models/richer_text/json_text.rb -------------------------------------------------------------------------------- /app/models/richer_text/o_embed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/models/richer_text/o_embed.rb -------------------------------------------------------------------------------- /app/models/richer_text/rich_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/models/richer_text/rich_text.rb -------------------------------------------------------------------------------- /app/views/layouts/richer_text/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/views/layouts/richer_text/application.html.erb -------------------------------------------------------------------------------- /app/views/richer_text/contents/_content.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/views/richer_text/contents/_content.html.erb -------------------------------------------------------------------------------- /app/views/richer_text/o_embeds/_embed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/views/richer_text/o_embeds/_embed.html.erb -------------------------------------------------------------------------------- /app/views/richer_text/o_embeds/_richer_text_editor_embed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/app/views/richer_text/o_embeds/_richer_text_editor_embed.html.erb -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/bin/rails -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | RicherText::Engine.routes.draw do 2 | end 3 | -------------------------------------------------------------------------------- /db/migrate/20230107020316_create_richer_text_rich_texts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/db/migrate/20230107020316_create_richer_text_rich_texts.rb -------------------------------------------------------------------------------- /db/migrate/20230916224959_create_richer_text_json_texts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/db/migrate/20230916224959_create_richer_text_json_texts.rb -------------------------------------------------------------------------------- /db/migrate/20230926034114_create_richer_text_o_embeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/db/migrate/20230926034114_create_richer_text_o_embeds.rb -------------------------------------------------------------------------------- /lib/generators/richer_text/install/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/generators/richer_text/install/install_generator.rb -------------------------------------------------------------------------------- /lib/richer_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text.rb -------------------------------------------------------------------------------- /lib/richer_text/attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/attribute.rb -------------------------------------------------------------------------------- /lib/richer_text/content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/content.rb -------------------------------------------------------------------------------- /lib/richer_text/embed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/embed.rb -------------------------------------------------------------------------------- /lib/richer_text/embeddable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/embeddable.rb -------------------------------------------------------------------------------- /lib/richer_text/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/engine.rb -------------------------------------------------------------------------------- /lib/richer_text/fragment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/fragment.rb -------------------------------------------------------------------------------- /lib/richer_text/html_visitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/html_visitor.rb -------------------------------------------------------------------------------- /lib/richer_text/mark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/mark.rb -------------------------------------------------------------------------------- /lib/richer_text/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/node.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/attachment_figure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/attachment_figure.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/attachment_gallery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/attachment_gallery.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/blockquote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/blockquote.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/bullet_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/bullet_list.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/callout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/callout.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/code_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/code_block.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/doc.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/hard_break.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/hard_break.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/heading.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/heading.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/horizontal_rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/horizontal_rule.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/iframely_embed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/iframely_embed.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/image.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/list_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/list_item.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/mention.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/mention.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/ordered_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/ordered_list.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/paragraph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/paragraph.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/richer_text_embed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/richer_text_embed.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/table.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/table_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/table_cell.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/table_header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/table_header.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/table_row.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/table_row.rb -------------------------------------------------------------------------------- /lib/richer_text/nodes/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/nodes/text.rb -------------------------------------------------------------------------------- /lib/richer_text/rendering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/rendering.rb -------------------------------------------------------------------------------- /lib/richer_text/serialization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/serialization.rb -------------------------------------------------------------------------------- /lib/richer_text/tag_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/tag_helper.rb -------------------------------------------------------------------------------- /lib/richer_text/text_visitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/richer_text/text_visitor.rb -------------------------------------------------------------------------------- /lib/richer_text/version.rb: -------------------------------------------------------------------------------- 1 | module RicherText 2 | VERSION = "0.20.0" 3 | end 4 | -------------------------------------------------------------------------------- /lib/tasks/richer_text_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/lib/tasks/richer_text_tasks.rake -------------------------------------------------------------------------------- /richer_text.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/richer_text.gemspec -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/assets/config/manifest.js -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/controllers/posts_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/posts_helper.rb: -------------------------------------------------------------------------------- 1 | module PostsHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/jobs/application_job.rb -------------------------------------------------------------------------------- /test/dummy/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /test/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/models/application_record.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/post.rb: -------------------------------------------------------------------------------- 1 | class Post < ApplicationRecord 2 | has_richer_text :body 3 | end 4 | -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /test/dummy/app/views/posts/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/views/posts/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/posts/_post.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/views/posts/_post.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/posts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/views/posts/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/posts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/views/posts/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/posts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/views/posts/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/posts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/app/views/posts/show.html.erb -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/bin/setup -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/cable.yml -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/initializers/assets.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/puma.rb -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/config/storage.yml -------------------------------------------------------------------------------- /test/dummy/db/migrate/20230107020316_create_richer_text_rich_texts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/db/migrate/20230107020316_create_richer_text_rich_texts.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20230107201630_create_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/db/migrate/20230107201630_create_posts.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20230728235819_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/db/migrate/20230728235819_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /test/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/db/schema.rb -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/test/controllers/posts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/test/controllers/posts_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/fixtures/posts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/test/fixtures/posts.yml -------------------------------------------------------------------------------- /test/dummy/test/models/post_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/test/models/post_test.rb -------------------------------------------------------------------------------- /test/dummy/test/system/posts_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/dummy/test/system/posts_test.rb -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/richer_text/json_texts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/fixtures/richer_text/json_texts.yml -------------------------------------------------------------------------------- /test/fixtures/richer_text/o_embeds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/fixtures/richer_text/o_embeds.yml -------------------------------------------------------------------------------- /test/fixtures/richer_text/rich_texts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/fixtures/richer_text/rich_texts.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/navigation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/integration/navigation_test.rb -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/richer_text/json_text_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/models/richer_text/json_text_test.rb -------------------------------------------------------------------------------- /test/models/richer_text/o_embed_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/models/richer_text/o_embed_test.rb -------------------------------------------------------------------------------- /test/models/richer_text/rich_text_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/models/richer_text/rich_text_test.rb -------------------------------------------------------------------------------- /test/richer_text_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/richer_text_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afomera/richer_text/HEAD/test/test_helper.rb --------------------------------------------------------------------------------