From f5fcc05947f520806785db903f0e3c0508d58a19 Mon Sep 17 00:00:00 2001 From: Jeromy Date: Thu, 25 Aug 2016 13:03:44 -0700 Subject: [PATCH] gxify and add readme license gitignore --- .gitignore | 1 + LICENSE | 21 +++++++++++++++++++++ README.md | 5 +++++ package.json | 33 +++++++++++++++++++++++++++++++++ 4 files changed, 60 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1377554 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.swp diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f204902 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License + +Copyright (c) 2016 Juan Batiz-Benet + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..80fb079 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# flatfs +flatfs is a simple datastore implementation inspired by gits on-disk object +storage. + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..dccb201 --- /dev/null +++ b/package.json @@ -0,0 +1,33 @@ +{ + "author": "whyrusleeping", + "bugs": { + "url": "https://github.com/ipfs/go-ds-flatfs" + }, + "gx": { + "dvcsimport": "github.com/ipfs/go-ds-flatfs" + }, + "gxDependencies": [ + { + "hash": "QmSpJByNKFX1sCsHBEp3R73FL4NF6FnQTEGyNAXHm2GS52", + "name": "go-log", + "version": "1.2.0" + }, + { + "author": "jbenet", + "hash": "QmaeRR9SpXumU5tYLRkq6x6pfMe8qKzxn4ujBpsTJ2zQG7", + "name": "go-os-rename", + "version": "0.0.0" + }, + { + "author": "jbenet", + "hash": "QmeZBFvNreVkpZkBTFxh56zHWS8wA5S1XxKswHjux76kyz", + "name": "go-datastore", + "version": "0.3.0" + } + ], + "gxVersion": "0.8.0", + "language": "go", + "license": "", + "name": "go-ds-flatfs", + "version": "0.0.0" +}