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

Fix fixnum deprecation #13

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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 lib/active_sorting/model.rb
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def active_sorting_check_options
# unless field_type == :integer
# raise ArgumentError, "Sortable field should be of type Integer, #{field_type} where given"
# end
unless active_sorting_step.is_a?(Fixnum)
unless active_sorting_step.is_a?(Integer)
raise ArgumentError, "Sortable step should be of type Fixnum, #{active_sorting_step.class.name} where given"
end
unless active_sorting_scope.respond_to?(:each)
Expand Down
2 changes: 1 addition & 1 deletion lib/active_sorting/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ActiveSorting
VERSION = '0.8.4'.freeze
VERSION = '0.8.5'.freeze
end