Dyld: Symbol not found: _rb_ary_new_from_values ​​When trying to start the starter

I get the following error when I try to run the “launch wizard” to execute my rails file.

dyld: Symbol not found: _rb_ary_new_from_values Referenced from: /Users/paulbattisson/.rvm/gems/ruby-2.1.1/gems/psych-2.0.5/lib/psych.bundle Expected in: flat namespace 

If I run s rails, the application starts fine, but I want to use the following Procfile:

 web: bundle exec rackup config.ru -p $PORT resque: env TERM_CHILD=1 bundle exec rake resque:work 

So I can use resque. Any help is significant. I tried installing the package to check if the problem resolves, but it does not seem to be the case. I am controlled by rvm via JewelryBox and using Rails 4.1.1 with Ruby 2.1.1

+6
source share
1 answer

The solution is similar to reinstalling the wizard with

 gem install foreman 
+16
source

Source: https://habr.com/ru/post/972574/


All Articles