Skip to content

Instantly share code, notes, and snippets.

@hieunguyentrung
Created October 10, 2019 06:56
Show Gist options
  • Save hieunguyentrung/a30176224f333cca6245fdc3c1f5bb67 to your computer and use it in GitHub Desktop.
Save hieunguyentrung/a30176224f333cca6245fdc3c1f5bb67 to your computer and use it in GitHub Desktop.
Grape useful
params do
  requires :number, type: Integer, values: ->(v) { v.even? && v < 25 }
end

params do
  optional :category
  given category: ->(val) { val == 'foo' } do
    requires :description
  end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment