diff --git a/RxLibrary.podspec b/RxLibrary.podspec
deleted file mode 100644
index d160f17d7302aad96c8e1707ddb72dd4b4d307c6..0000000000000000000000000000000000000000
--- a/RxLibrary.podspec
+++ /dev/null
@@ -1,16 +0,0 @@
-Pod::Spec.new do |s|
-  s.name     = 'RxLibrary'
-  s.version  = '0.0.1'
-  s.summary  = 'Reactive Extensions library for iOS'
-  s.homepage = 'https://github.com/grpc/grpc/tree/master/src/objective-c/RxLibrary'
-  s.license  = 'New BSD'
-  s.authors  = { 'Jorge Canizales' => 'jcanizales@google.com' }
-
-  # s.source = { :git => 'https://github.com/grpc/grpc.git', :tag => 'release-0_5_0' }
-  s.source_files = 'src/objective-c/RxLibrary/*.{h,m}', 'src/objective-c/RxLibrary/transformations/*.{h,m}', 'src/objective-c/RxLibrary/private/*.{h,m}'
-  s.private_header_files = 'src/objective-c/RxLibrary/private/*.h'
-
-  s.platform = :ios
-  s.ios.deployment_target = '6.0'
-  s.requires_arc = true
-end
diff --git a/gRPC.podspec b/gRPC.podspec
index 4bf1d3515e5402688328cc3e6347f201b0165c57..654f613f1c285eadb9f749e63ea57acd17d2e47c 100644
--- a/gRPC.podspec
+++ b/gRPC.podspec
@@ -14,7 +14,16 @@ Pod::Spec.new do |s|
   s.ios.deployment_target = '6.0'
   s.requires_arc = true
 
+  s.subspec 'RxLibrary' do |rs|
+    rs.summary  = 'Reactive Extensions library for iOS'
+    rs.authors  = { 'Jorge Canizales' => 'jcanizales@google.com' }
+
+    rs.source_files = 'src/objective-c/RxLibrary/*.{h,m}', 'src/objective-c/RxLibrary/transformations/*.{h,m}', 'src/objective-c/RxLibrary/private/*.{h,m}'
+    rs.private_header_files = 'src/objective-c/RxLibrary/private/*.h'
+  end
+
   s.subspec 'C-Core' do |cs|
+    cs.summary  = 'Core gRPC library, written in C'
   	cs.authors = { 'Craig Tiller'   => 'ctiller@google.com',
   		           'David Klempner' => 'klempner@google.com',
   		           'Nicolas Noble'  => 'nnoble@google.com',
@@ -54,5 +63,4 @@ Pod::Spec.new do |s|
   CMD
 
   s.xcconfig = { 'HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/Headers/Public/gRPC/include"' }
-  s.dependency 'RxLibrary', '~> 0.0'
 end
diff --git a/src/objective-c/examples/Sample/Podfile b/src/objective-c/examples/Sample/Podfile
index df07ab026aa6e36370669eba8a7f30e808d7bdb7..848627ff547e17d01fa99484447af6ebec8cfa38 100644
--- a/src/objective-c/examples/Sample/Podfile
+++ b/src/objective-c/examples/Sample/Podfile
@@ -2,7 +2,6 @@ source 'https://github.com/CocoaPods/Specs.git'
 platform :ios, '8.0'
 
 pod 'gRPC', :path => "../../../.."
-pod 'RxLibrary', :path => "../../../.."
 
 link_with 'Sample', 'SampleTests'