File: 0001-Remove-Bundler-Dependencies.patch

package info (click to toggle)
ruby-rack-test 0.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 348 kB
  • ctags: 142
  • sloc: ruby: 1,713; makefile: 3
file content (25 lines) | stat: -rw-r--r-- 621 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From: Debian Ruby Extras Maintainers
 <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Date: Mon, 9 Jul 2012 22:10:53 +0900
Subject: Remove Bundler Dependencies

Signed-off-by: Youhei SASAKI <uwabami@gfd-dennou.org>
---
 spec/spec_helper.rb |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,11 +1,8 @@
 require "rubygems"
-require "bundler/setup"
-
-require "codeclimate-test-reporter"
-CodeClimate::TestReporter.start
 
 require "rack"
 require "rspec"
+require "sinatra"
 
 Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each {|f| require f}