mirror of
https://github.com/dkhamsing/open-source-ios-apps.git
synced 2024-11-27 00:08:38 +03: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
|