0

I downloaded the jira4r-jh gem and tried to test it from irb, but as soon as I type require 'jira4r-jh' I get a load error complaining about a missing gem.

I am using ruby 1.8.7

rb512
  • 6,880
  • 3
  • 36
  • 55

1 Answers1

1

figured it out!

the right way to do it:

gem 'jira4r-jh'
require 'jira4r/jira_tool'

rb512
  • 6,880
  • 3
  • 36
  • 55