diff options
-rw-r--r-- | Gemfile | 3 | ||||
-rw-r--r-- | Gemfile.lock | 17 | ||||
-rw-r--r-- | infra-status.rb | 6 |
3 files changed, 26 insertions, 0 deletions
@@ -0,0 +1,3 @@ +source "http://rubygems.org" + +gem "sinatra"
\ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..608c42a --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,17 @@ +GEM + remote: http://rubygems.org/ + specs: + rack (1.4.1) + rack-protection (1.2.0) + rack + sinatra (1.3.3) + rack (~> 1.3, >= 1.3.6) + rack-protection (~> 1.2) + tilt (~> 1.3, >= 1.3.3) + tilt (1.3.3) + +PLATFORMS + ruby + +DEPENDENCIES + sinatra diff --git a/infra-status.rb b/infra-status.rb new file mode 100644 index 0000000..ff654d9 --- /dev/null +++ b/infra-status.rb @@ -0,0 +1,6 @@ +require "bundler/setup" +require "sinatra" + +get '/' do + "Hello World!" +end
\ No newline at end of file |