Giter Site home page Giter Site logo

Comments (3)

tenderlove avatar tenderlove commented on July 28, 2024

This should have been fixed in Psych 1.2.1. Can you try on Ruby 1.9.3? The current exception should look something like this:

irb(main):003:0> require 'psych'
=> true
irb(main):004:0> Psych.load "foo:
irb(main):005:0"   <<: *bar"
Psych::BadAlias: Unknown alias: bar
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:208:in `block in visit_Psych_Nodes_Alias'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:208:in `fetch'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:208:in `visit_Psych_Nodes_Alias'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/visitor.rb:15:in `visit'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/visitor.rb:5:in `accept'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:20:in `accept'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:226:in `block in revive_hash'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:220:in `each'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:220:in `each_slice'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:220:in `revive_hash'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:128:in `visit_Psych_Nodes_Mapping'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/visitor.rb:15:in `visit'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/visitor.rb:5:in `accept'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:20:in `accept'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:235:in `block in revive_hash'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:220:in `each'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:220:in `each_slice'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:220:in `revive_hash'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:128:in `visit_Psych_Nodes_Mapping'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/visitor.rb:15:in `visit'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/visitor.rb:5:in `accept'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:20:in `accept'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych/nodes/node.rb:35:in `to_ruby'
    from /Users/aaron/.local/lib/ruby/1.9.1/psych.rb:127:in `load'
    from (irb):4
    from /Users/aaron/.local/bin/irb:12:in `<main>'irb(main):006:0>

from psych.

tigrish avatar tigrish commented on July 28, 2024

This doesn't seem to be fixed for me :

irb(main):001:0> RUBY_VERSION
=> "1.9.3"
irb(main):002:0> require 'psych'
=> true
irb(main):003:0> Psych::VERSION
=> "1.2.1"
irb(main):004:0> Psych.load "foo:
irb(main):005:0"   <<: *bar"
TypeError: can't convert nil into Hash
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:217:in `merge!'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:217:in `block in revive_hash'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:211:in `each'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:211:in `each_slice'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:211:in `revive_hash'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:123:in `visit_Psych_Nodes_Mapping'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/visitor.rb:15:in `visit'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/visitor.rb:5:in `accept'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:16:in `accept'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:226:in `block in revive_hash'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:211:in `each'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:211:in `each_slice'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:211:in `revive_hash'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:123:in `visit_Psych_Nodes_Mapping'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/visitor.rb:15:in `visit'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/visitor.rb:5:in `accept'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:16:in `accept'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/nodes/node.rb:35:in `to_ruby'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych.rb:113:in `load'
from (irb):4
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/bin/irb:16:in `<main>'irb(main):006:0> 

from psych.

tenderlove avatar tenderlove commented on July 28, 2024

Make sure you do:

gem 'psych'

before you require it, or use edge 1.9.3

Aaron Patterson
http://tenderlovemaking.com/

On Dec 20, 2011, at 12:25 PM, Christopher [email protected] wrote:

This doesn't seem to be fixed for me :

irb(main):001:0> RUBY_VERSION
=> "1.9.3"
irb(main):002:0> require 'psych'
=> true
irb(main):003:0> Psych::VERSION
=> "1.2.1"
irb(main):004:0> Psych.load "foo:
irb(main):005:0" <<: *bar"
TypeError: can't convert nil into Hash
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:217:in merge!' from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:217:inblock in revive_hash'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:211:in each' from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:211:ineach_slice'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:211:in revive_hash' from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:123:invisit_Psych_Nodes_Mapping'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/visitor.rb:15:in visit' from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/visitor.rb:5:inaccept'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:16:in accept' from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:226:inblock in revive_hash'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:211:in each' from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:211:ineach_slice'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:211:in revive_hash' from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:123:invisit_Psych_Nodes_Mapping'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/visitor.rb:15:in visit' from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/visitor.rb:5:inaccept'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/visitors/to_ruby.rb:16:in accept' from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych/nodes/node.rb:35:into_ruby'
from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/psych.rb:113:in load' from (irb):4 from /Users/chris/.rvm/rubies/ruby-1.9.3-p0/bin/irb:16:in

'irb(main):006:0>


Reply to this email directly or view it on GitHub:
#41 (comment)

from psych.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.