Add PodTarget#resources_bundle_target_label(bundle_name)
diff --git a/lib/cocoapods/target/pod_target.rb b/lib/cocoapods/target/pod_target.rb
index a9a5f39..d8d314c 100644
--- a/lib/cocoapods/target/pod_target.rb
+++ b/lib/cocoapods/target/pod_target.rb
@@ -82,6 +82,15 @@
       root_spec.name
     end
 
+    # @param  [String] bundle_name
+    #         The name of the bundle product, which is given by the +spec+.
+    #
+    # @return [String] The derived name of the resource bundle target.
+    #
+    def resources_bundle_target_label(bundle_name)
+      "#{label}-#{bundle_name}"
+    end
+
     # @return [Array<String>] The names of the Pods on which this target
     #         depends.
     #
diff --git a/spec/unit/target/pod_target_spec.rb b/spec/unit/target/pod_target_spec.rb
index 5855654..f7f6fbd 100644
--- a/spec/unit/target/pod_target_spec.rb
+++ b/spec/unit/target/pod_target_spec.rb
@@ -34,6 +34,10 @@
         @pod_target.pod_name.should == 'BananaLib'
       end
 
+      it 'returns the name of the resources bundle target' do
+        @pod_target.resources_bundle_target_label('Fruits').should == 'Pods-BananaLib-Fruits'
+      end
+
       it 'returns the name of the Pods on which this target depends' do
         @pod_target.dependencies.should == ['monkey']
       end