From 512da888c46d14b53e909bde99aa23ef42a3ff33 Mon Sep 17 00:00:00 2001 From: Jayant Kolhe Date: Thu, 19 Feb 2015 10:54:48 -0800 Subject: [PATCH 01/11] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 2b049d206bd..d4140c54837 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,9 @@ of shared C core library [src/core] (src/core). Java source code is in [grpc-java] (http://github.com/grpc/grpc-java) repository. Go source code is in [grpc-go] (http://github.com/grpc/grpc-go) repository. +#Documentation + +You can find more detailed documentation of grpc in [grpc-common repository](http://github.com/grpc/grpc-common). #Overview From c284c545614160efc7ab010fbdc137656209a5b8 Mon Sep 17 00:00:00 2001 From: Jayant Kolhe Date: Thu, 19 Feb 2015 11:06:58 -0800 Subject: [PATCH 02/11] Update README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index d4140c54837..42e1c5a5e00 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ of shared C core library [src/core] (src/core). * NodeJS source code: [src/node] (src/node) * PHP source code: [src/php] (src/php) * C# source code: [src/csharp] (src/csharp) + * Objective-C source code: [src/objective-c] (src/objective-c) Java source code is in [grpc-java] (http://github.com/grpc/grpc-java) repository. Go source code is in [grpc-go] (http://github.com/grpc/grpc-go) repository. @@ -26,6 +27,19 @@ Go source code is in [grpc-go] (http://github.com/grpc/grpc-go) repository. You can find more detailed documentation of grpc in [grpc-common repository](http://github.com/grpc/grpc-common). +#Current Status of libraries + +Libraries in different languages are in different state of development. We are seeking contributions for all of these libraries. + + * shared C core library [src/core] (src/core) : Early adopter ready - Alpha. + * C++ Library: [src/cpp] (src/cpp) : Early adopter ready - Alpha. + * Python Library: [src/python] (src/python) : Early adopter ready - Alpha. + * Ruby Library: [src/ruby] (src/ruby) : Early adopter ready - Alpha. + * NodeJS Library: [src/node] (src/node) : Early adopter ready - Alpha. + * PHP Library: [src/php] (src/php) : Pre-Alpha. + * C# Library: [src/csharp] (src/csharp) : Pre-Alpha. + * Objective-C Library: [src/objective-c] (src/objective-c): Pre-Alpha. + #Overview From 4040e656c011470e1ccb2fe595bfc8a22769203c Mon Sep 17 00:00:00 2001 From: Jayant Kolhe Date: Thu, 19 Feb 2015 11:26:16 -0800 Subject: [PATCH 03/11] Create README.md --- src/core/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/core/README.md diff --git a/src/core/README.md b/src/core/README.md new file mode 100644 index 00000000000..407dc4f7019 --- /dev/null +++ b/src/core/README.md @@ -0,0 +1,9 @@ +#Overview + +This directory contains source code for shared C library. Libraries in other languages in this repository (C++, Ruby, +Python, PHP, NodeJS, Objective-C) are layered on top of this library. + +#Status + +Alpha : Ready for early adopters + From 80949e36d3a54129bdfe2460ad5604b4cdd892f3 Mon Sep 17 00:00:00 2001 From: Jayant Kolhe Date: Thu, 19 Feb 2015 11:27:07 -0800 Subject: [PATCH 04/11] Create README.md --- src/cpp/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/cpp/README.md diff --git a/src/cpp/README.md b/src/cpp/README.md new file mode 100644 index 00000000000..a2eb9a08c81 --- /dev/null +++ b/src/cpp/README.md @@ -0,0 +1,9 @@ + +#Overview + +This directory contains source code for C++ implementation of gRPC. + +#Status + +Alpha : Ready for early adopters + From 1b360d3ac7104bb19f322f7f244f6575b3189fb2 Mon Sep 17 00:00:00 2001 From: Jayant Kolhe Date: Thu, 19 Feb 2015 11:28:07 -0800 Subject: [PATCH 05/11] Update README.md --- src/csharp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/csharp/README.md b/src/csharp/README.md index a16f1e719e1..c4e2f674ad6 100755 --- a/src/csharp/README.md +++ b/src/csharp/README.md @@ -3,7 +3,7 @@ gRPC C# A C# implementation of gRPC, Google's RPC library. -EXPERIMENTAL ONLY +Status ----------------- **This gRPC C# implementation is work-in-progress and is not expected to work yet.** From 06aef235e956f8d8d751afd21ee67c07a8c39832 Mon Sep 17 00:00:00 2001 From: Jayant Kolhe Date: Thu, 19 Feb 2015 11:28:57 -0800 Subject: [PATCH 06/11] Update README.md --- src/node/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/node/README.md b/src/node/README.md index c342b7ca575..8880213e9a9 100644 --- a/src/node/README.md +++ b/src/node/README.md @@ -1,5 +1,9 @@ # Node.js gRPC Library +## Status + +Alpha : Ready for early adopters + ## Installation First, clone this repository (NPM package coming soon). Then follow the instructions in the `INSTALL` file in the root of the repository to install the C core library that this package depends on. From 300748ea7da1e2aa8166c34908a7799dcea0665e Mon Sep 17 00:00:00 2001 From: Jayant Kolhe Date: Thu, 19 Feb 2015 11:30:40 -0800 Subject: [PATCH 07/11] Update README.md --- src/php/README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/php/README.md b/src/php/README.md index 620c68fd7b5..e47dafcc081 100755 --- a/src/php/README.md +++ b/src/php/README.md @@ -1,4 +1,12 @@ -# PHP wrapper for the GRPC interfaces. + +#Overview + +This directory contains source code for PHP implementation of gRPC layered on shared C library. + +#Status + +Pre-Alpha : Not ready for usage yet. + ## LAYOUT From 691dbcc7f96bebbbacbdfb27dd2e95fc0f0cc7d4 Mon Sep 17 00:00:00 2001 From: Jayant Kolhe Date: Thu, 19 Feb 2015 11:31:20 -0800 Subject: [PATCH 08/11] Update README.md --- src/php/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/php/README.md b/src/php/README.md index e47dafcc081..40c79e0dd40 100755 --- a/src/php/README.md +++ b/src/php/README.md @@ -5,7 +5,7 @@ This directory contains source code for PHP implementation of gRPC layered on sh #Status -Pre-Alpha : Not ready for usage yet. +Pre-Alpha : This gRPC PHP implementation is work-in-progress and is not expected to work yet. ## LAYOUT From fca87034a341820094188e2cfd532f0b4f15f361 Mon Sep 17 00:00:00 2001 From: Jayant Kolhe Date: Thu, 19 Feb 2015 11:34:43 -0800 Subject: [PATCH 09/11] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42e1c5a5e00..268d4f4dbfb 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Go source code is in [grpc-go] (http://github.com/grpc/grpc-go) repository. #Documentation -You can find more detailed documentation of grpc in [grpc-common repository](http://github.com/grpc/grpc-common). +You can find more detailed documentation about grpc in [grpc-common repository](http://github.com/grpc/grpc-common). #Current Status of libraries From ad82155cd5e57fd604cfe717cc0dbf75af1d3317 Mon Sep 17 00:00:00 2001 From: Jayant Kolhe Date: Thu, 19 Feb 2015 11:44:49 -0800 Subject: [PATCH 10/11] Update README.md --- src/ruby/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ruby/README.md b/src/ruby/README.md index 7ece7e27065..9b157d1ce7f 100755 --- a/src/ruby/README.md +++ b/src/ruby/README.md @@ -3,6 +3,10 @@ gRPC Ruby A Ruby implementation of gRPC, Google's RPC library. +Status +------- + +Alpha : Ready for early adopters INSTALLATION PREREQUISITES -------------------------- From a143af389ee552f96163505ef56644a757de57c6 Mon Sep 17 00:00:00 2001 From: Mugur Marculescu Date: Thu, 19 Feb 2015 11:49:55 -0800 Subject: [PATCH 11/11] Small change to documentation text. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 268d4f4dbfb..19851767536 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Go source code is in [grpc-go] (http://github.com/grpc/grpc-go) repository. #Documentation -You can find more detailed documentation about grpc in [grpc-common repository](http://github.com/grpc/grpc-common). +You can find more detailed documentation and examples in the [grpc-common repository](http://github.com/grpc/grpc-common). #Current Status of libraries