0

My Operating System is Windows 7

in command line

c:>ruby -v

ruby 2.0.0p598 [i368-mingw32]

when I type

c:>rails -v 

DL is deprecated, please use Fiddle

Rails 4.1.8

Darkmouse
  • 1,941
  • 4
  • 28
  • 52
  • Have you tried google, before asking? It's so easily found if you just search *DL is depricated, please use Fiddle* – Yu Hao Dec 07 '14 at 06:38

1 Answers1

1

DL and Fiddle are both Ruby libraries. The message, DL is depricated, please use Fiddle is a warning message that shows up if you are using Windows.

Under C:\Ruby200\lib\ruby\2.0.0\dl.rb

There is the line

warn "DL is deprecated, please use Fiddle"

You can simply comment this out. It's not an error message, but simply a warning.

Darkmouse
  • 1,941
  • 4
  • 28
  • 52