]> git.wincent.com - mkdtemp.git/commitdiff
Add rcov as a development dependency
authorWincent Colaiuta <win@wincent.com>
Mon, 5 Sep 2011 02:22:20 +0000 (19:22 -0700)
committerWincent Colaiuta <win@wincent.com>
Mon, 5 Sep 2011 02:22:20 +0000 (19:22 -0700)
Signed-off-by: Wincent Colaiuta <win@wincent.com>
Gemfile.lock
bin/rcov [new file with mode: 0755]
mkdtemp.gemspec

index 8158721ee299cde0c493ad2c1411e0fd6e8162b3..4ca17730e3f50f4b0a943543f7562ad0f0e54f81 100644 (file)
@@ -1,13 +1,14 @@
 PATH
   remote: .
   specs:
-    mkdtemp (1.2.0.99)
+    mkdtemp (1.2.1)
 
 GEM
   remote: http://rubygems.org/
   specs:
     diff-lcs (1.1.3)
     rake (0.9.2)
+    rcov (0.9.10)
     rspec (2.6.0)
       rspec-core (~> 2.6.0)
       rspec-expectations (~> 2.6.0)
@@ -24,5 +25,6 @@ PLATFORMS
 DEPENDENCIES
   mkdtemp!
   rake
+  rcov
   rspec (~> 2.0)
   yard
diff --git a/bin/rcov b/bin/rcov
new file mode 100755 (executable)
index 0000000..ad7b36b
--- /dev/null
+++ b/bin/rcov
@@ -0,0 +1,16 @@
+#!/usr/bin/env ruby
+#
+# This file was generated by Bundler.
+#
+# The application 'rcov' is installed as part of a gem, and
+# this file is here to facilitate running it.
+#
+
+require 'pathname'
+ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
+  Pathname.new(__FILE__).realpath)
+
+require 'rubygems'
+require 'bundler/setup'
+
+load Gem.bin_path('rcov', 'rcov')
index 1d3762c7f896f2848ea7bce730d7cf1ca423e2f6..02f19ad1a43b192275d6e6a35ead329f7680cd95 100644 (file)
@@ -22,6 +22,7 @@ Gem::Specification.new do |s|
   s.extensions        = ['ext/extconf.rb']
 
   s.add_development_dependency 'rake'
+  s.add_development_dependency 'rcov'
   s.add_development_dependency 'rspec', '~> 2.0'
   s.add_development_dependency 'yard'
 end