rename the gem to reflect the fact that it contains two samples
diff --git a/ruby/grpc-demo.gemspec b/ruby/grpc-demo.gemspec
new file mode 100644
index 0000000..d4e2ec7
--- /dev/null
+++ b/ruby/grpc-demo.gemspec
@@ -0,0 +1,23 @@
+# -*- ruby -*-
+# encoding: utf-8
+
+Gem::Specification.new do |s|
+  s.name          = 'grpc-demo'
+  s.version       = '0.1.0'
+  s.authors       = ['gRPC Authors']
+  s.email         = 'temiola@google.com'
+  s.homepage      = 'https://github.com/grpc/grpc-common'
+  s.summary       = 'gRPC Ruby overview sample'
+  s.description   = 'Simple demo of using gRPC from Ruby'
+
+  s.files         = `git ls-files -- ruby/*`.split("\n")
+  s.executables   = `git ls-files -- ruby/*client.rb ruby/*server.rb`.split("\n").map do |f|
+    File.basename(f)
+  end
+  s.require_paths = ['lib']
+  s.platform      = Gem::Platform::RUBY
+
+  s.add_dependency 'grpc', '~> 0.0.1'
+
+  s.add_development_dependency 'bundler', '~> 1.7'
+end