Skip to content

Instantly share code, notes, and snippets.

@amitittyerah
Created August 2, 2014 05:56
Show Gist options
  • Save amitittyerah/2f1f4b328fef6a888440 to your computer and use it in GitHub Desktop.
Save amitittyerah/2f1f4b328fef6a888440 to your computer and use it in GitHub Desktop.
throws_error.rb Concern
require 'active_support/concern'
module ThrowsError
extend ActiveSupport::Concern
included do
define_method 'errors_as_json' do |*args|
{
errors: errors
}
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment