[Rails] Re: Installing ruby 2.1 and rails 4.2 in centos 7

2015-01-28 Thread Michał Papis
/usr/local/rvm/gems/ruby-2.1.2/gems/execjs-2.2.2/lib/execjs/runtimes.rb:51:in `autodetect': Could not find a JavaScript runtime. See https://github.com/sstephenson/execjs for a list of available runtimes. (ExecJS::RuntimeUnavailable) for this error check

[Rails] Re: Installing ruby 2.1 and rails 4.2 in centos 7

2015-01-27 Thread Michał Papis
your ruby is: ruby -v ruby 2.1.5p273 (2014-11-13 revision 48405) [x86_64-linux] but rails new prints: /usr/local/rvm/gems/ruby-2.1.2@global/gems/bundler-1.7.7/lib/bundler.rb:301: warning: Insecure world writable dir /usr/local/rvm/gems in PATH, mode 042777 which means you are not using

[Rails] Re: Installing ruby 2.1 and rails 4.2 in centos 7

2015-01-20 Thread Michał Papis
Daniel his RVM is installed in /usr/local/rvm - for this RVM adds a file /etc/profiles.d/rvm.sh so sourcing $HOME/.rvm/scripts/rvm would not help (both scripts prefer $HOME/.rvm) -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To

[Rails] Re: Installing ruby 2.1 and rails 4.2 in centos 7

2015-01-19 Thread Michał Papis
Did you used ruby (rvm use 2.1.2), create an app (rails new app_name) and changed to it's directory (cd app_name)? On Sunday, January 18, 2015 at 6:54:46 PM UTC+1, Nanduchocom wrote: I install ruby 2.1 and rails 4.2 in centos 7, But, when i try init: rails s Appear this messsages:

Re: [Rails] Bundle Install Fails on SSL connect for Rake gem

2014-12-11 Thread Michał Papis
I find this to be easier instruction http://stackoverflow.com/questions/19150017/ssl-error-when-installing-rubygems-unable-to-pull-data-from-https-rubygems-o/19151697#19151697 PLEASE DON'T DO THIS. Downloading and running code from an insecure link automatically is a short slip'n'slide to

[Rails] Re: why does installing ruby 2.1.0 copy to /etc/openssl/cert.perm?

2014-06-24 Thread Michał Papis
mike2r you were quite close with the guess, RVM updates this certificates based on a path from a binary ruby, now that path is hard coded within the ruby as it is statically linked to openssl - usually you should not use static linking, but in that case it was the only option to allow providing

[Rails] Re: Installing rvm on SLES 11 sp3(SUSE Linux Enterprise Server 11)

2014-05-20 Thread Michał Papis
Please open a ticket = https://github.com/wayneeseguin/rvm/issues -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To unsubscribe from this group and stop receiving emails from it, send an email to

[Rails] Re: RVM group in Terminal

2014-02-17 Thread Michał Papis
open an issue for me here https://github.com/wayneeseguin/rvm/issues -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To unsubscribe from this group and stop receiving emails from it, send an email to

[Rails] Re: Trouble with RVM permissions when executing a command line 'bundle install'

2014-01-30 Thread Michał Papis
You have two options: 1) fix the permissions: - make sure you are in rvm group, run id and there should be group rvm - if it is not there run: rvm group add rvm $USER - make sure that rvm is up to date and has properly set permissions: rvm get stable; rvm fix-permissions - restart your

Re: [Rails] Re: Gem Install bundler fails

2013-12-20 Thread Michał Papis
Looks like problems with Homebrew, did you tried updating rvm and homebrew before trying again? if nothing works open a ticket here = https://github.com/wayneeseguin/rvm/issues -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To

[Rails] Re: executable-hooks

2013-10-28 Thread Michał Papis
1) to uninstall run: executable-hooks-uninstaller rvm @global do gem uninstall -ax rubygems-bundler executable-hooks bundler-unload 2) this gems should not be installed in ruby-1.8.6 report a bug here = https://github.com/wayneeseguin/rvm/issues On Monday, October 28, 2013 3:30:29

Re: [Rails] RVM Path issue when I run RVM -V

2013-09-17 Thread Michał Papis
Change this line: export PATH=$PATH:/usr/local/rvm/

[Rails] Re: Installing RVM Problems

2013-07-19 Thread Michał Papis
This messages is intended only for Zsh users - In case of using Zsh - so if you do not use Zsh you can ignore it I have also changed the message to explain it better: https://github.com/wayneeseguin/rvm/compare/c26ce19312f3...0d581bccc6a3 On Friday, July 19, 2013 8:11:11 AM UTC+2,

[Rails] Re: Why the need for multiple $GEM_PATHS

2013-07-14 Thread Michał Papis
also appeared in Ruby Parley - moved to https://github.com/rubygems/rubygems/pull/596 $GEM_HOME is a way of controlling rubygems gems install location: * benefits: thanks to GEM_HOME you can install ruby as root and gems as users, or reinstall ruby without removing gems, it allows you to

Re: [Rails] rvm installation script

2013-05-05 Thread Michał Papis
extra note for the -#L it means: show progress bar + follow links On Sunday, May 5, 2013 10:06:56 PM UTC+2, Jordon Bedwell wrote: On Sun, May 5, 2013 at 9:51 AM, John Merlino stoi...@aol.comjavascript: wrote: https://rvm.io/rvm/install Look at the first line: Install RVM with ruby (#

[Rails] Re: rubygems, rubygems-bundler and bundler

2013-03-19 Thread Michał Papis
run `gem regenerate_binstubs` - it will refresh all the binaries in rubygems to use rubygems-bundler, it's usually done by default when you install gem. On Monday, March 18, 2013 11:13:59 AM UTC+1, Frederick Cheung wrote: On Monday, March 18, 2013 2:39:45 AM UTC, Ruby-Forum.com User wrote:

[Rails] Ruby 1.9.3-p362 segfault fixed (also in RVM)

2013-01-10 Thread Michał Papis
Ruby team provided a fix for the segfault in ruby-1.9.3-p362 but there is no release yet. RVM backports the patch: rvm get stable rvm reinstall 1.9.3-p362 Link to the ruby issue https://bugs.ruby-lang.org/issues/7629 -- You received this message because you are subscribed to the