diff --git a/README.md b/README.md index 4a86c46..366fc3a 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# blueprint-hello-world +# template-hello-world ### Overview -You can use this blueprint to deploy some IBM Cloud Functions assets for you. The assets created by this blueprint are described in the manifest.yaml file, which can be found at `blueprint-hello-world/runtimes/your_language_choice/manifest.yaml` +You can use this template to deploy some IBM Cloud Functions assets for you. The assets created by this template are described in the manifest.yaml file, which can be found at `template-hello-world/runtimes/your_language_choice/manifest.yaml` -The only assets described by this hello world blueprint are a single action, named helloworld, which takes as input a message parameter. +The only assets described by this hello world template are a single action, named helloworld, which takes as input a message parameter. You can use the wskdeploy tool to deploy this asset yourself using the manifest and available code. ### Available Languages -This blueprint is available in node.js, php, python & swift. +This template is available in node.js, php, python & swift. diff --git a/settings.gradle b/settings.gradle index 72419a8..d7ff71d 100644 --- a/settings.gradle +++ b/settings.gradle @@ -8,7 +8,7 @@ include 'whisktests'; project(':whisktests').projectDir = new File(owDirectory, include 'tests' -rootProject.name = 'blueprint-hello-world' +rootProject.name = 'template-hello-world' gradle.ext.scala = [ version: '2.11.8', diff --git a/tests/src/test/scala/blueprints/HelloTests.scala b/tests/src/test/scala/templates/HelloTests.scala similarity index 96% rename from tests/src/test/scala/blueprints/HelloTests.scala rename to tests/src/test/scala/templates/HelloTests.scala index 340fefa..388920b 100644 --- a/tests/src/test/scala/blueprints/HelloTests.scala +++ b/tests/src/test/scala/templates/HelloTests.scala @@ -40,10 +40,10 @@ class HelloTests extends TestHelpers val pythonfolder = "../runtimes/python/actions"; val swiftfolder = "../runtimes/swift/actions"; - behavior of "Hello World Blueprint" + behavior of "Hello World Template" /** - * Test the nodejs "hello world" blueprint + * Test the nodejs "hello world" template */ it should "invoke helloworld.js and get the result" in withAssetCleaner(wskprops) { (wp, assetHelper) => val name = "helloNode" @@ -68,7 +68,7 @@ class HelloTests extends TestHelpers } } /** - * Test the php "hello world" blueprint + * Test the php "hello world" template */ it should "invoke helloworld.php and get the result" in withAssetCleaner(wskprops) { (wp, assetHelper) => val name = "helloPhp" @@ -93,7 +93,7 @@ class HelloTests extends TestHelpers } } /** - * Test the python "hello world" blueprint + * Test the python "hello world" template */ it should "invoke helloworld.py and get the result" in withAssetCleaner(wskprops) { (wp, assetHelper) => val name = "helloPython" @@ -118,7 +118,7 @@ class HelloTests extends TestHelpers } } /** - * Test the swift "hello world" blueprint + * Test the swift "hello world" template */ it should "invoke helloworld.swift and get the result" in withAssetCleaner(wskprops) { (wp, assetHelper) => val name = "helloSwift" diff --git a/tools/travis/build.sh b/tools/travis/build.sh index 4a4c4ea..8c1a113 100755 --- a/tools/travis/build.sh +++ b/tools/travis/build.sh @@ -53,5 +53,5 @@ cd $DEPLOYDIR/packages source $DEPLOYDIR/packages/installCatalog.sh $AUTH_KEY $EDGE_HOST $WSK_CLI # Test -cd $ROOTDIR/blueprint-hello-world +cd $ROOTDIR/template-hello-world ./gradlew :tests:test