├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── scripts └── snap.sh ├── snapcraft-login.enc ├── snapcraft.yaml └── tests ├── data └── expected_cat.jpg └── smoke_test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/come-maiz/ipfs-snap/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/come-maiz/ipfs-snap/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/come-maiz/ipfs-snap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/come-maiz/ipfs-snap/HEAD/README.md -------------------------------------------------------------------------------- /scripts/snap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/come-maiz/ipfs-snap/HEAD/scripts/snap.sh -------------------------------------------------------------------------------- /snapcraft-login.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/come-maiz/ipfs-snap/HEAD/snapcraft-login.enc -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/come-maiz/ipfs-snap/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /tests/data/expected_cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/come-maiz/ipfs-snap/HEAD/tests/data/expected_cat.jpg -------------------------------------------------------------------------------- /tests/smoke_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/come-maiz/ipfs-snap/HEAD/tests/smoke_test.sh --------------------------------------------------------------------------------