Skip to content

Instantly share code, notes, and snippets.

@l4u
Created July 21, 2018 09:49
Show Gist options
  • Save l4u/110027262d184097899c5581ab7e63c3 to your computer and use it in GitHub Desktop.
Save l4u/110027262d184097899c5581ab7e63c3 to your computer and use it in GitHub Desktop.
Golang JSON camel case
require 'active_support/core_ext/string/inflections'
ARGF.each do |line|
name = line.split(' ').first
puts "#{line.strip} `json:\"#{name.camelize(:lower)}\"`"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment