msvcrt-ruby18.dll is the runtime library for MRI 1.8.x. Somehow, you installed a MRI C extension for which the author provides a pre-compiled binary, but with the wrong version information. That way, you ended up with a C extension that has been compiled for MRI 1.8.x, but you are actually using YARV 1.9.2-p0.
You need to find either a different version of the gem which provides a pre-compiled binary for your version of YARV, or you need to compile it yourself.
If you use the MinGW port of YARV, that's trivial: just install the DevKit and then re-install the offending gem with the --platform=ruby option, to force compilation.