Skip to content

Commit fd07b40

Browse files
committed
absolute paths for gemspecs for 1.9.2 compatibility
1 parent be9dc15 commit fd07b40

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bson.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require "lib/bson"
1+
require "./lib/bson"
22

33
Gem::Specification.new do |s|
44
s.name = 'bson'

bson_ext.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'lib/bson'
1+
require './lib/bson'
22
VERSION_HEADER = File.open(File.join(File.dirname(__FILE__), 'ext', 'cbson', 'version.h'), "r")
33
VERSION = VERSION_HEADER.read.scan(/VERSION\s+"(\d+\.\d+(\.\d+\w*)?)\"/)[0][0]
44
Gem::Specification.new do |s|

mongo.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require "lib/mongo"
1+
require "./lib/mongo"
22

33
Gem::Specification.new do |s|
44
s.name = 'mongo'

0 commit comments

Comments
 (0)