textris
textris copied to clipboard
Implement texter classes for sending SMS messages in similar way to how e-mails are sent with ActionMailer-based mailers. Take advantage of e-mail proxying and enhanced phone number parsing, among oth...
Bumps [tzinfo](https://github.com/tzinfo/tzinfo) from 1.2.5 to 1.2.10. Release notes Sourced from tzinfo's releases. v1.2.10 Fixed a relative path traversal bug that could cause arbitrary files to be loaded with require when...
Bumps [rails-html-sanitizer](https://github.com/rails/rails-html-sanitizer) from 1.0.4 to 1.4.3. Release notes Sourced from rails-html-sanitizer's releases. 1.4.3 / 2022-06-09 Address a possible XSS vulnerability with certain configurations of Rails::Html::Sanitizer. Prevent the combination of select...
Hi there, Stumbled across this Gem yesterday and wanted to implement it in a Rails 6 app but had the same issue as #50 - so I created a quick...
Bumps [rack](https://github.com/rack/rack) from 1.6.11 to 1.6.13. Commits 47a1fd7 bump version b8dc520 Handle case where session id key is requested but it is missing 698a060 Merge pull request #1462 from jeremyevans/sessionid-to_s...
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.10.2 to 1.10.10. Release notes Sourced from nokogiri's releases. 1.10.10 / 2020-07-06 Features [MRI] Cross-built Windows gems now support Ruby 2.7 [#2029]. Note that prior to this...
The Sidekiq test that was making sure `delay_until` was working properly was queueing at a hardcoded `2020-01-01`. Sidekiq doesn't treat the job as a scheduled job if the scheduled time...
Bumps [rake](https://github.com/ruby/rake) from 12.3.2 to 13.0.1. Changelog *Sourced from [rake's changelog](https://github.com/ruby/rake/blob/master/History.rdoc).* > === 13.0.1 > > ==== Bug fixes > > * Fixed bug: Reenabled task raises previous exception on...
Bumps [loofah](https://github.com/flavorjones/loofah) from 2.2.3 to 2.3.1. Release notes *Sourced from [loofah's releases](https://github.com/flavorjones/loofah/releases).* > ## 2.3.1 / 2019-10-22 > > ### Security > > Address CVE-2019-15587: Unsanitized JavaScript may occur in...
The `render_anywhere` gem (which this one depends on) doesn't work in Rails 6, since it [mutates `view_paths`](https://github.com/yappbox/render_anywhere/blob/master/lib/render_anywhere/rendering_controller.rb#L32), which is [no longer allowed](https://github.com/rails/rails/commit/0b0412ab531590580cd303e54da68dadd4853de3#diff-d5d92e14e3693ca777dad370615cdaa9L109). It doesn't look like `render_anywhere` is actively maintained,...
Does this gem support a `template_path` option à la Rails ActionMailer? So instead of putting all the `` views under `app/views` it can be anywhere like `app/views/texters`. I tried emulating...