We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
After using NaturalSorter, it is not given output as expected. teams = Teams.last(10) teams.sort_by { |team| Naturalsorter::Sorter.sort([team.name],true) } Output: ["Is Pool", "New team dev", "Station 10A", "Station 10B", "Station 5A", "Station 5B", "Team thanks", "Testing User", "Uses Pool", "Zero Team"] Expected: ["Is Pool", "New team dev", "Station 5A", "Station 5B", "Station 10A", "Station 10B", "Team thanks", "Testing User", "Uses Pool", "Zero Team"]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After using NaturalSorter, it is not given output as expected.
teams = Teams.last(10)
teams.sort_by { |team| Naturalsorter::Sorter.sort([team.name],true) }
Output: ["Is Pool", "New team dev", "Station 10A", "Station 10B", "Station 5A", "Station 5B", "Team thanks", "Testing User", "Uses Pool", "Zero Team"]
Expected: ["Is Pool", "New team dev", "Station 5A", "Station 5B", "Station 10A", "Station 10B", "Team thanks", "Testing User", "Uses Pool", "Zero Team"]
The text was updated successfully, but these errors were encountered: