Skip to content

Instantly share code, notes, and snippets.

@Orbyt

Orbyt/lines.rb Secret

Created October 3, 2018 03:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Orbyt/3e798b6a29a9675e430febbe273a467b to your computer and use it in GitHub Desktop.
Save Orbyt/3e798b6a29a9675e430febbe273a467b to your computer and use it in GitHub Desktop.
require 'json'
arr = Array.new
File.readlines('./hello.txt').each do |line|
arr << line
end
res = arr.map { |e|
{data: e}
}
puts res.to_json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment