Line Sorter API - Ruby Gem

Line Sorter organizes text by sorting lines alphabetically in ascending or descending order with case-sensitive options.

Installation

Add this line to your application's Gemfile:

gem 'apiverve_linesorter'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install apiverve_linesorter

Getting Started

Get your API key at APIVerve

Basic Usage

require 'apiverve_linesorter'

# Initialize the client
client = APIVerve::Linesorter::Client.new(api_key: "YOUR_API_KEY")

# Make a request
response = client.execute({
  lines: The quick brown fox jumps over the lazy dog,An apple a day keeps the doctor away,banana,Cherry blossoms bloom in spring,date,
  order: "asc",
  caseSensitive: false
})

# Print the response
puts response

Error Handling

begin
  response = client.execute({ lines: The quick brown fox jumps over the lazy dog,An apple a day keeps the doctor away,banana,Cherry blossoms bloom in spring,date, order: "asc", caseSensitive: false })
  puts response["data"]
rescue APIVerve::Linesorter::ValidationError => e
  puts "Validation error: #{e.errors.join(', ')}"
rescue APIVerve::Linesorter::APIError => e
  puts "API error: #{e.message}"
  puts "Status code: #{e.status_code}"
end

Debug Mode

# Enable debug logging
client = APIVerve::Linesorter::Client.new(
  api_key: "YOUR_API_KEY",
  debug: true
)

Example Response

{
  "status": "ok",
  "error": null,
  "data": {
    "sorted": [
      "An apple a day keeps the doctor away",
      "banana",
      "Cherry blossoms bloom in spring",
      "date",
      "The quick brown fox jumps over the lazy dog"
    ],
    "lineCount": 5,
    "order": "asc",
    "caseSensitive": false
  }
}

Documentation

For more information, visit the API Documentation.

Support

License

This gem is available under the MIT License.