Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEATURE] Actually include the Rails 7.1 fixes #151

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).

### Added

- Add support for Rails 7.1 (#146, #148, #149),
- Add support for Rails 7.1 (#146, #148, #149, #150),
thanks to @hishammalik and @pnicholls

### Changed
Expand Down
3 changes: 3 additions & 0 deletions lib/currency_select_tag.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# frozen_string_literal: true

require 'to_currency_select_tag'
require 'form_options_helper'

# CurrencySelect
module ActionView
Expand All @@ -10,6 +11,8 @@ module Helpers
#
class CurrencySelectTag < Tags::Base
include ToCurrencySelectTag
include FormOptionsHelper
include ActionView::Helpers::Tags::SelectRenderer if defined?(ActionView::Helpers::Tags::SelectRenderer)
end
end
end