Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Translate Rails Action Text rich text with Mobility.
Add this line to your application's Gemfile:
gem 'mobility-actiontext'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install mobility-actiontext
Make sure that Action Text is installed, then run this migration:
class TranslateRichTexts < ActiveRecord::Migration[6.1]
def change
# or null: true to allow untranslated rich text
add_column :action_text_rich_texts, :locale, :string, null: false
remove_index :action_text_rich_texts,
column: [:record_type, :record_id, :name],
name: :index_action_text_rich_texts_uniqueness,
unique: true
add_index :action_text_rich_texts,
[:record_type, :record_id, :name, :locale],
name: :index_action_text_rich_texts_uniqueness,
unique: true
end
end
# app/models/message.rb
class Message < ApplicationRecord
+ extend Mobility
+
- has_rich_text :content
+ translates :content, backend: :action_text
end
Although the main purpose of the action_text_rich_texts
table is to store rich text, this gem allows using it for plain text as well. This could be useful to consolidate all text in a single table and to remove the need to migrate data when converting between one and the other.
# app/models/message.rb
class Message < ApplicationRecord
extend Mobility
+ translates :title, backend: :action_text, plain: true
translates :content, backend: :action_text
end
Action Text's rich text content is saved in its own model that can be associated with any existing Active Record model using a polymorphic relation. Likewise, Mobility's KeyValue backend allows to translate any model using a polymorphic relation. This gem makes use of this similarity by combining both features in a single step, thus offering rich text "for free", i.e. in theory at no extra performance cost compared to untranslated rich text or translated plain text.
This is done through the Mobility::Backends::ActionText::Translation
model extending ActionText::RichText
. This model is backed by Action Text's existing action_text_rich_texts
table and its existing name
, body
and record
attributes, to which is added a new locale
attribute.
Read more on the genesis of this gem.
After checking out the repo, run bundle install
to install dependencies.
Execute tests by running:
cd test_app
bundle install
bundle exec rails test
To release a new version, update lib/mobility/action_text/version.rb
and CHANGELOG.md
, run bundle && cd test_app && bundle
, commit, then run bundle exec rake release
. This will create a git tag for the version, push git commits and the created tag, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/sedubois/mobility-actiontext.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that mobility-actiontext demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.