Skip to content
This repository was archived by the owner on Mar 15, 2022. It is now read-only.

Ruby 1.9 Compatibility: Add missing require #37

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ rvm:
- ruby-head
- jruby-head
- rbx-3.84
before_install:
- gem update --system
- gem install bundler
jdk:
- oraclejdk8

Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ group :testing do
gem 'test-unit', '~> 3.0.9'
gem 'rspec', '~> 3.6'
gem 'coveralls', '~> 0.8.21', :require => false
gem 'json', '< 2.3', :platforms => [:ruby_19, :jruby], :require => false
end

group :documentation do
Expand Down
1 change: 1 addition & 0 deletions lib/ref.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ module Ref
require 'ref/abstract_reference_key_map'
require 'ref/reference'
require 'ref/reference_queue'
require 'monitor'

if defined?(Java)
begin
Expand Down