Skip to content

Commit

Permalink
Add sinatra support
Browse files Browse the repository at this point in the history
  • Loading branch information
lmacken committed Sep 30, 2011
1 parent 0ff7eda commit 0e0708c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -21,6 +21,7 @@ Deploy a variety of applications to the OpenShift cloud with a single command.
* cakephp - A rapid development PHP framework
* seambooking - Seam is a platform for building rich webapps in Java
* dancer - A micro web application framework for Perl
* sinatra - A DSL for creating web applications in Ruby

[ Content Management ]
* drupal - A content-management platform
Expand Down
5 changes: 5 additions & 0 deletions openshift-app-tester.py
Expand Up @@ -141,6 +141,11 @@ class TestDancer(OpenShiftQuickstartTest, unittest.TestCase):
app = 'dancer'
title = 'Perl is dancing'

class TestSinatra(OpenShiftQuickstartTest, unittest.TestCase):
app = 'sinatra'
title = 'the time where this server lives is'



if __name__ == '__main__':
if not login:
Expand Down
1 change: 1 addition & 0 deletions openshift-quickstarter
Expand Up @@ -51,6 +51,7 @@ quickstarts = {
'seambooking': {'type': java, 'db': True, 'repo': openshift_repo},
'sqlbuddy': {'type': php, 'db': True, 'repo': openshift_alt_repo},
'dancer': {'type': perl, 'db': False, 'repo': openshift_repo},
'sinatra': {'type': ruby, 'db': False, 'repo': openshift_repo},
}

run = lambda cmd, **kw: subprocess.call(cmd, shell=True, **kw)
Expand Down

0 comments on commit 0e0708c

Please sign in to comment.