From 5aab7295bf722baa507e80dd4291733e5deed95c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Tue, 7 Jun 2016 15:39:21 +0200 Subject: [PATCH] Helper Makefile. --- Makefile | 12 ++++++++++++ README.md | 7 +++++++ 2 files changed, 19 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b6be076 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +all: run + +run: Gemfile.lock + bundle exec rackup + +check: + : + +Gemfile.lock: + bundle install + +.PHONY: all run check diff --git a/README.md b/README.md index ae0b615..70d5fdf 100644 --- a/README.md +++ b/README.md @@ -7,3 +7,10 @@ This is the component to extend OpenNebula network orchestration capabilities. ``` rackup ``` + +## Development +``` +make run +``` + +It calls `rackup` through bundler. -- 1.8.2.3