@@ -149,7 +149,7 @@ For example, assume VCAP_SERVICES was set to the following:
149149 {
150150 "user-provided": [
151151 {
152- "name": "cfenv -test",
152+ "name": "cf-env -test",
153153 "label": "user-provided",
154154 "tags": [],
155155 "credentials": {
@@ -167,8 +167,8 @@ In this case, `appEnv.services` would be set to that same object, but
167167` appEnv.getServices() ` would return
168168
169169 {
170- "cfenv -test": {
171- "name": "cfenv -test",
170+ "cf-env -test": {
171+ "name": "cf-env -test",
172172 "label": "user-provided",
173173 "tags": [],
174174 "credentials": {
@@ -232,7 +232,7 @@ For example, assume VCAP_SERVICES was set to the following:
232232 {
233233 "user-provided": [
234234 {
235- "name": "cfenv -test",
235+ "name": "cf-env -test",
236236 "label": "user-provided",
237237 "tags": [],
238238 "credentials": {
@@ -248,7 +248,7 @@ For example, assume VCAP_SERVICES was set to the following:
248248
249249Assume you run the following code:
250250
251- url = appEnv.getServiceURL("cfenv -test", {
251+ url = appEnv.getServiceURL("cf-env -test", {
252252 pathname: "database",
253253 auth: ["username", "password"]
254254 })
@@ -287,9 +287,9 @@ testing with Cloud Foundry
287287
288288You can push this project as a Cloud Foundry project to try it out.
289289
290- First, create a service name ` cfenv -test` with the following command:
290+ First, create a service name ` cf-env -test` with the following command:
291291
292- cf cups cfenv -test -p "url, username, password, database"
292+ cf cups cf-env -test -p "url, username, password, database"
293293
294294You will be prompted for these values; enter something reasonable like:
295295
@@ -334,6 +334,19 @@ with no arguments to see what tasks are available, along with a short
334334description of them.
335335
336336
337+ changes
338+ ================================================================================
339+
340+ ** 1.0.1** - 2014/09/29
341+
342+ - remove node_modules from .cfignore - [ issue #8 ] ( https://github.com/cloudfoundry-community/node-cfenv/issues/8 )
343+ - updated package dependencies
344+ - changed README.md to correct sample service to cf-env-test
345+ - files in lib/ recompiled due to coffee-script update
346+
347+ ** 1.0.0** - 2014/09/03
348+
349+ - initial 1.0.0 release
337350
338351license
339352================================================================================
0 commit comments