I have a sinatra app which runs on
ruby 1.9.3-p327with gemset exampleGemset
(.rvmrc file)
when I run
bundle exec gem list
I get the gem
friendlyfashion-graylog2_exceptions (1.3.2)
but when I try to require it with require 'graylog2_exceptions'
I get this error
LoadError: cannot load such file -- graylog2_exceptions
any ideas??
the problem was resloved by using the gem graylog2_exceptions
simply gem install graylog2_exceptions
did the trick