DEV: rtlcss_wrapper renamed to rtlcss (#20331)

The `rtlcss_wrapper` gem has been renamed to `rtlcss` per bd89847a39.
This commit is contained in:
Osama Sayegh 2023-02-16 18:15:56 +03:00 committed by GitHub
parent 5423e7c5b7
commit 75ae70c27c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -105,7 +105,7 @@ gem "pg"
gem "mini_sql"
gem "pry-rails", require: false
gem "pry-byebug", require: false
gem "rtlcss_wrapper", require: false
gem "rtlcss", require: false
gem "rake"
gem "thor", require: false

View File

@ -408,7 +408,7 @@ GEM
json-schema (>= 2.2, < 4.0)
railties (>= 3.1, < 7.1)
rspec-core (>= 2.14)
rtlcss_wrapper (0.1.0)
rtlcss (0.2.0)
mini_racer (~> 0.6.3)
rubocop (1.44.1)
json (~> 2.3)
@ -638,7 +638,7 @@ DEPENDENCIES
rspec-rails
rss
rswag-specs
rtlcss_wrapper
rtlcss
rubocop-discourse
ruby-prof
ruby-readability

View File

@ -66,8 +66,8 @@ module Stylesheet
result = engine.render
if options[:rtl]
require "rtlcss_wrapper"
[RtlcssWrapper.flip_css(result), nil]
require "rtlcss"
[Rtlcss.flip_css(result), nil]
else
source_map = engine.source_map
source_map.force_encoding("UTF-8")