Skip to content

Commit 2112a79

Browse files
author
Ian Young
committed
Use bundler
1 parent 2fa7a23 commit 2112a79

File tree

5 files changed

+35
-1
lines changed

5 files changed

+35
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
pkg
2+
.bundle

Gemfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'http://rubygems.org'
2+
3+
group :test do
4+
gem "rake"
5+
gem "mocha"
6+
end

Gemfile.lock

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
mocha (0.9.12)
5+
rake (0.9.2)
6+
7+
PLATFORMS
8+
ruby
9+
10+
DEPENDENCIES
11+
mocha
12+
rake

bin/rake

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'rake' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('rake', 'rake')

test/match_test.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
require 'test/unit'
2-
require 'rubygems'
32
require 'mocha'
43
require 'rrrex'
54

0 commit comments

Comments
 (0)