diff options
author | Francois Perrad <francois.perrad@gadz.org> | 2010-10-25 16:27:36 +0200 |
---|---|---|
committer | Francois Perrad <francois.perrad@gadz.org> | 2010-10-25 16:27:36 +0200 |
commit | d0c88c5bbcff93c66805a1df9b1f8318eba04b9b (patch) | |
tree | f6a2f4fe07329d6245aa0bed7ca8b3301d0f3993 | |
parent | typo (diff) | |
download | api-description-d0c88c5bbcff93c66805a1df9b1f8318eba04b9b.tar.gz |
add an infrastructure (Makefile based)
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | Makefile | 10 | ||||
-rw-r--r-- | apps/Makefile | 14 | ||||
-rw-r--r-- | services/Makefile | 18 | ||||
-rw-r--r-- | services/github/Makefile | 14 |
5 files changed, 59 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 2a61605..d6d83f9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -*.yaml \ No newline at end of file +*.yaml +*.rx + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1c7215c --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ + +check: + @make -C apps check + @make -C services check + +test: check + +clean: + @make -C apps clean + @make -C services clean diff --git a/apps/Makefile b/apps/Makefile new file mode 100644 index 0000000..9f46b1e --- /dev/null +++ b/apps/Makefile @@ -0,0 +1,14 @@ + +VALIDATOR := perl ../utils/validator.pl --schema spore_validation.rx --description + +check: spore_validation.rx + @$(VALIDATOR) couchdb.json + @$(VALIDATOR) presque.json + +test: check + +spore_validation.rx: + wget http://github.com/SPORE/specifications/raw/master/spore_validation.rx + +clean: + -rm spore_validation.rx diff --git a/services/Makefile b/services/Makefile new file mode 100644 index 0000000..7126764 --- /dev/null +++ b/services/Makefile @@ -0,0 +1,18 @@ +VALIDATOR := perl ../utils/validator.pl --schema spore_validation.rx --description + +check: spore_validation.rx + @make -C github check + @$(VALIDATOR) backtweet.json + @$(VALIDATOR) backtype.json + @$(VALIDATOR) github.json + @$(VALIDATOR) ihackernews.json + @$(VALIDATOR) twitter.json + +test: check + +spore_validation.rx: + wget http://github.com/SPORE/specifications/raw/master/spore_validation.rx + +clean: + @make -C github clean + -rm spore_validation.rx diff --git a/services/github/Makefile b/services/github/Makefile new file mode 100644 index 0000000..d9efd92 --- /dev/null +++ b/services/github/Makefile @@ -0,0 +1,14 @@ + +VALIDATOR := perl ../../utils/validator.pl --schema spore_validation.rx --description + +check: spore_validation.rx + @$(VALIDATOR) repository.json + @$(VALIDATOR) user.json + +test: check + +spore_validation.rx: + wget http://github.com/SPORE/specifications/raw/master/spore_validation.rx + +clean: + -rm spore_validation.rx |