lib/geojsonlint.rb in geojsonlint-0.1.1 vs lib/geojsonlint.rb in geojsonlint-0.1.2
- old
+ new
@@ -12,10 +12,11 @@
attr_reader :schema, :data
# @param data [String, Hash]
def initialize(data)
@data = data
- @schema = JSON.parse(File.read('./lib/geojsonlint/geojson_schema.json'))
+
+ @schema = JSON.parse(File.read(File.expand_path('../geojsonlint/geojson_schema.json', __FILE__)))
self
end
# @return [Geojson]
def run