| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
by default"
This reverts commit 129f8ac6ffcafb2e6e13c9ef13dda4cc47f5af0d.
See https://github.com/rails/rails/commit/02d2958b6cd84d687d89112eb7e2306a6a89c082#commitcomment-31849196
|
| |
|
|\
| |
| | |
Respect Rails.env when running `rails yarn:install`
|
| |
| |
| |
| |
| | |
When no environment variables are set the expectation is that we are in
development.
|
|\ \
| | |
| | | |
Add Action Text to guides [ci skip]
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- Move some actiontext/README.md content to Action Text Overview guide
- I added WIP label to that guide since we definitely want to complement it.
- Add Action Text to Major Features of Rails 6.0
Similar approach was used in #34812
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
bogdanvlviv/add-skip-action-text-option-to-rails-new-cmd
Add `--skip-action-text` option to `rails new`
|
| |/ /
| | |
| | |
| | |
| | | |
Since PR#34816 was merged in c6ef670aee186a2880b7be59c4c6892b5c983e58,
we should add this option for flexibility, and consistency.
|
|\ \ \
| | | |
| | | | |
Add `action_text_content` hook to the guide [ci skip]
|
| |/ /
| | |
| | |
| | | |
See actiontext/lib/action_text/content.rb:132
|
|\ \ \
| | | |
| | | | |
Test actiontext on Rails 6.0
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- config.load_defaults 6.0 in the dummy app and
fix the test since by default rails 6.0 configured
does not generate "utf8" hidden input, see #32125
- Use `ActiveRecord::Migration[6.0]` in the dummy app
since actiontext will be since Rails 6.0
- Fix `CreateActiveStorageTables` migration in the dummy app.
Add `t.foreign_key :active_storage_blobs, column: :blob_id`
It was added in 2ae3a29508e.
- `rails/actiontext$ yarn install`
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
bogdanvlviv/remove-needless-comment-actiontext.gemspec
Remove comment from `actiontext/actiontext.gemspec`
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This comment was autogenerated, see
`railties/lib/rails/generators/rails/plugin/templates/%name%.gemspec.tt`
Since actiontext is well described in this file, I think we shouldn't
keep this comment. Note that this commit is more like cosmetic change,
so it is OK if we don't merge this.
|
|\ \ \
| | | |
| | | | |
Fix API docs of `ActionText::RichText` [ci skip]
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
This text should appear on the page
https://api.rubyonrails.org/v6.0/classes/ActionText/RichText.html
Related to 86517942e469193e8624d5078d718785552c1270
|
|\ \ \
| |/ /
|/| | |
Use ES6 and Webpacker in ActionCable guide.
|
| | |
| | |
| | |
| | | |
[ci skip]
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Import Action Text
|
| |\ \ \
| | |/ /
| |/| | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
When using the `rich_text_area_tag` form helper from within a Rails
engine, the direct_upload_url and blob_url_template options would
default to non-existent routes.
By prefixing these routes with `main_app` we ensure the application
root is used rather than the engine.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | |\ \
| | | | |
| | | | | |
use plain test to determine present/blank/empty
|
| | | | |
| | | | |
| | | | |
| | | | | |
always contain content
|
| | | | | |
|
| | |\ \ \
| | | | | |
| | | | | | |
Remove Ruby 2.4 from the CI matrix
|
| | |/ / /
| | | | |
| | | | |
| | | | |
| | | | | |
Rails 6 requires Ruby 2.5+ or newer.
See https://github.com/rails/rails/pull/34754.
|
| | |/ /
| | | |
| | | | |
Bump CI to latest minor versions of Ruby 2.4 and 2.5
|
| | |\ \
| | | | |
| | | | | |
Rename shadowed variable
|
| | | | |
| | | | |
| | | | |
| | | | | |
This commit renames shadowed variable `attributes`.
|
| | |\ \ \
| | | |/ /
| | |/| | |
Remove unused **options
|
| | |/ /
| | | |
| | | |
| | | |
| | | |
| | | | |
I'm not sure if this is going to be used in the future or not, but for
the time being we shouldn't maintain parameters that we aren't using. We
can always add them later when needed.
|
| | | | |
|
| | | | |
|
| | |\ \
| | | | |
| | | | | |
Fix typo
|
| | |/ / |
|
| | |\ \
| | | | |
| | | | | |
Privatize constants
|
| | |/ /
| | | |
| | | |
| | | |
| | | | |
This constants meant to be private but `private_constant` was missing,
this commit makes them fully private by adding `private_constant`.
|
| | |\ \
| | | | |
| | | | |
| | | | |
| | | | | |
albertoalmagro/test-coverage-form-with-rich-text-area
Add test coverage for form with rich_text_area
|
| | |/ / |
|
| | | |
| | | |
| | | | |
I don't think we need that since it's set automatically through ActionText::Engine.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
When an inexistent attribute is passed as a parameter to currently
existing Rails' Form Helpers they render an empty tag instead of
raising an exception. This commit confers the same behavior to
`rich_text_area`.
Fixes #19
|
| | |\ \
| | | | |
| | | | | |
Add frozen_string_literal: true
|
| | |/ /
| | | |
| | | |
| | | | |
Adds frozen_string_literal: true comment on top of all currently existing files
|
| | | | |
|
| | | | |
|