Saludos.Estoy haciendo un script de Ruby sin Rails, solo Ruby; es primera vez que lo intento.Tengo este Gemfile:source "https://rubygems.org"gem 'colorize', '~> 0.8.1'Y este archivo:#dnfacts.rbrequire 'colorize'puts "Hola Mundo!".colorize(:green)Bundle install funciona, pero al ejecutar mi script:
ruby :
C:/Ruby24-x64/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- colorize (LoadError)from C:/Ruby24-x64/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb:55:in `require'from dnfacts.rb:1:in `<main>'Alguien me podría indicar lo que sucede.Gracias.
--
--
You received this message because you are subscribed to the Google
Groups "ror-es" group.
To post to this group, send email to ror...@googlegroups.com
To unsubscribe from this group, send email to
ror_es+un...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/ror_es?hl=en
Rails no escala.
---
You received this message because you are subscribed to the Google Groups "ror-es" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ror_es+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
require 'rubygems'
require 'bundler/setup'
--