rails--rails/actiontext
Akira Matsuda 530f7805ed It may be better to explicitly require 'object/try' where we call `try`
In most cases it works now without explicit require because it's accidentally required through
active_support/core_ext/date_and_time/calculations.rb where we still call `try`,
but that would stop working if we changed the Calculations implementation and remove the require call there.
2019-08-01 18:51:51 +09:00
..
app It may be better to explicitly require 'object/try' where we call `try` 2019-08-01 18:51:51 +09:00
bin Import Action Text 2019-01-04 22:22:49 -05:00
db/migrate Allow changing text and blob size without giving the `limit` option 2019-01-29 06:49:32 +09:00
lib It may be better to explicitly require 'object/try' where we call `try` 2019-08-01 18:51:51 +09:00
test Let the generated initializers/backtrace_silencers.rb code use Regexp#match? 2019-07-29 14:21:30 +09:00
.gitignore Add ActionDispatch::SystemTestCase#fill_in_rich_text_area 2019-05-13 12:44:06 -04:00
CHANGELOG.md Unify to use 4 spaces indentation in CHANGELOGs [ci skip] 2019-06-05 05:53:49 +09:00
MIT-LICENSE Import Action Text 2019-01-04 22:22:49 -05:00
README.md Add Action Text to guides [ci skip] 2019-01-05 13:30:37 +02:00
Rakefile Add ActionDispatch::SystemTestCase#fill_in_rich_text_area 2019-05-13 12:44:06 -04:00
actiontext.gemspec Action Text: bundle package.json in built gem. 2019-01-18 00:11:18 +01:00
package.json Bump Trix to ^1.2.0 2019-07-30 10:12:14 -04:00

README.md

Action Text

Action Text brings rich text content and editing to Rails. It includes the Trix editor that handles everything from formatting to links to quotes to lists to embedded images and galleries. The rich text content generated by the Trix editor is saved in its own RichText model that's associated with any existing Active Record model in the application. Any embedded images (or other attachments) are automatically stored using Active Storage and associated with the included RichText model.

You can read more about Action Text in the Action Text Overview guide.

License

Action Text is released under the MIT License.