From 898bb4512f2a1c0046c858fff25ba9a3e56a0b44 Mon Sep 17 00:00:00 2001 From: Josh Berkus Date: Fri, 26 Jun 2015 17:42:45 -0700 Subject: [PATCH 1/2] Added META.json file so that it can be uploaded to PGXN. --- META.json | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 META.json diff --git a/META.json b/META.json new file mode 100644 index 0000000..b2c4a07 --- /dev/null +++ b/META.json @@ -0,0 +1,53 @@ +{ + "name": "JsQuery", + "abstract": "JSON Query Language with GIN indexing support", + "description": "JsQuery provides additional functionality for JSONB, such as a simple and effective way to search in nested objects and arrays, and more comparison operators with index support. It does this by implementing a specialized search syntax, the @@ operator, and the jsquery type for search strings.", + "version": "1.0.0", + "maintainer": [ + "Teodor Sigaev ", + "Alexander Korotkov ", + "Oleg Bartunov " + ], + "license": { + "PostgreSQL": "http://www.postgresql.org/about/licence" + }, + "prereqs": { + "runtime": { + "requires": { + "PostgreSQL": "9.4.0" + }, + "recommends": { + "PostgreSQL": "9.4.0" + } + } + }, + "provides": { + "jsquery": { + "file": "sql/jsquery.sql", + "docfile": "README.md", + "version": "1.0", + "abstract": "JSON query language with GIN indexing support" + }, + }, + "resources": { + "homepage": "https://github.com/postgrespro/jsquery", + "bugtracker": { + "web": "https://github.com/postgrespro/jsquery/issues" + }, + "repository": { + "url": "https://github.com/postgrespro/jsquery.git", + "web": "https://github.com/postgrespro/jsquery", + "type": "git" + } + }, + "generated_by": "Josh Berkus", + "meta-spec": { + "version": "1.0.0", + "url": "http://pgxn.org/meta/spec.txt" + }, + "tags": [ + "JSON", + "index", + "search" + ] +} \ No newline at end of file From 8ce09dfe54c2f9873e782ffb3e6c09d62e221a63 Mon Sep 17 00:00:00 2001 From: Josh Berkus Date: Fri, 26 Jun 2015 17:51:25 -0700 Subject: [PATCH 2/2] Fixed a couple META.json typos --- META.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/META.json b/META.json index b2c4a07..35ba35f 100644 --- a/META.json +++ b/META.json @@ -25,9 +25,9 @@ "jsquery": { "file": "sql/jsquery.sql", "docfile": "README.md", - "version": "1.0", + "version": "1.0.0", "abstract": "JSON query language with GIN indexing support" - }, + } }, "resources": { "homepage": "https://github.com/postgrespro/jsquery",