Skip to content

Commit

Permalink
Merge pull request #31 from mekasudheer/master
Browse files Browse the repository at this point in the history
BSON Document Deep_transform_keys not converting keys to symbols
  • Loading branch information
reidmorrison authored Aug 14, 2023
2 parents 9404e93 + 331f083 commit c5c2ca0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/rocket_job/category/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def tabular
@tabular ||= IOStreams::Tabular.new(
columns: columns,
format: format == :auto ? nil : format,
format_options: format_options&.deep_symbolize_keys,
format_options: format_options&.to_h&.deep_symbolize_keys,
file_name: file_name
)
end
Expand Down
2 changes: 1 addition & 1 deletion lib/rocket_job/category/input.rb
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def tabular
@tabular ||= IOStreams::Tabular.new(
columns: columns,
format: format == :auto ? nil : format,
format_options: format_options&.deep_symbolize_keys,
format_options: format_options&.to_h&.deep_symbolize_keys,
file_name: file_name,
allowed_columns: allowed_columns,
required_columns: required_columns,
Expand Down
2 changes: 1 addition & 1 deletion lib/rocket_job/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RocketJob
VERSION = "6.2.0".freeze
VERSION = "6.2.1".freeze
end

0 comments on commit c5c2ca0

Please sign in to comment.