mirror of
https://github.com/dkhamsing/open-source-ios-apps.git
synced 2024-12-22 21:38:44 +01:00
8 lines
86 B
Ruby
8 lines
86 B
Ruby
require 'json'
|
|
|
|
FILE = 'contents.json'
|
|
|
|
def get_json
|
|
JSON.parse(File.read FILE)
|
|
end
|