search for: ubygems

Displaying 14 results from an estimated 14 matches for "ubygems".

Did you mean: rubygems
2011 Sep 30
1
ubygems.rb file - is error?
Hi, I just installed Rails, and I was wondering what is this file? /lib/ubygems.rb ? Here is a copy of it: https://github.com/rubygems/rubygems/blob/master/lib/ubygems.rb Is this a bug/type (ubygems rather than what it should be, ubygems) or is it supposed to be that way? If so, what does it do, could someone explain how it works? (sorry if it''s a dumb question I...
2007 Dec 13
2
no such file to load — ubygems (LoadError)
All of a sudden, i''m getting this error when trying to launch the console - no such file to load — ubygems (LoadError) I''m using 1.2.3 as my base rails install and i also get the same problem in a project frozen to 1.1.6. I saw a blog post at http://wharsojo.wordpress.com/2007/05/1 … loaderror/ which recommended removing the RUBYOPT variable from my (windows) environment. On doing this, clos...
2007 Dec 28
3
Cannot install wxruby on Leopard
I''d like to try wxruby on my MacBook Pro with Leopard (10.5.1) But I have troubles with gem. I can see the gem is in rubyforge: $ gem list wxruby -r *** REMOTE GEMS *** wxruby (1.9.2, 1.9.1, 1.9.0) wxrubylayouts (0.0.3, 0.0.2, 0.0.1) but when I try to install it: $ sudo gem install wxruby -r Password: ERROR: could not find wxruby locally or in a repository Any suggestion? Thanks
2008 Nov 24
14
Problem with RubyGems installation
Hello, I am trying to install RubyGems on Ubuntu and i''m having trouble. I''ve downloaded rubygems 1.3.1 and when i run the sudo ruby setup.rb command I get the problem mentioned below. I''d really appreciate if someone can help me out. Thanks mkdir -p /usr/local/lib/site_ruby/1.8 mkdir -p /usr/bin install -c...
2006 May 02
2
Uninstalling RUBYGEMS
Hi, does anyone know how to uninstall rubygem? I installed and it had the notorious hanging problem that no one seems to have an answer to. So I am going to attempt to install Rails without gems. Could someone point me in the right direction if you would not answer me? =) Regards, Edmund -- Posted via http://www.ruby-forum.com/.
2006 May 30
1
Apache can''t load/require rubygems
Hi, I have rubygems installed in my home directory as I''d like to have control over gems without requiring root access. I''m trying to deploy a known working rails app on this machine but it falls down at the "require ''rubygems''" line in boot.rb. I have added the path to r...
2007 Nov 27
13
Mongrel install crash on win32
Something suddenly went wrong in my ruby install. When installing Mongrel on my Windows XP laptop, it incorrectly tries to build it as a native extension. I don''t even get the selection where I can choose to install a compiled version. I would appreciate any help/links or similar, as I frankly don''t understand what''s going on and why I dont get the usual selection box.
2006 Apr 12
3
uninitialized constant OpenSSL::Digest::SHA1
I just updated my ruby from 1.8.2 to the Windows Installer 184-16 RC1, and now when I try to start Webrick I get the following: c:/program files/dev/ruby/lib/ruby/site_ruby/1.8/rubygems/security.rb:18: uninitialized constant OpenSSL::Digest::SHA1 (NameError) from c:/program files/dev/ruby/lib/ruby/site_ruby/1.8/rubygems.rb:397 from c:/program files/dev/ruby/lib/ruby/site_ruby/1.8/ubygems.rb:4 >From security.rb: if Gem.ssl_available? PKEY_RSA = OpenSSL::PKey::RSA...
2010 Feb 02
0
How to set RUBY EXECUTABLE path in Ruby Gems Environment
I have ruby 2 version in my Mac which are 1.8.6 and 1.8.7. I would like to set Rubygems environment to point to Ruby 1.8.7. Anyone know this issure???? ubyGems Environment: - RUBYGEMS VERSION: 1.3.5 - RUBY VERSION: 1.8.6 (2008-08-11 patchlevel 287) [universal- darwin9.0] - INSTALLATION DIRECTORY: /Library/Ruby/Gems/1.8 - RUBY EXECUTABLE: /System/Library/Frameworks/Ruby.frame...
2010 May 29
2
Unable to gem install rails
...o install rails via the CLI, Fedora 13. This is a new installation and I am not certain why I am receiving this error. ERROR: Loading command: install (LoadError) no such file to load -- zlib ERROR: While executing gem ... (NameError) uninitialized constant Gem::Commands::InstallCommand ubyGems Environment: - RUBYGEMS VERSION: 1.3.7 - RUBY VERSION: 1.9.1 (2009-12-07 patchlevel 376) [x86_64-linux] - INSTALLATION DIRECTORY: /usr/local/lib/ruby/gems/1.9.1 - RUBY EXECUTABLE: /usr/local/bin/ruby - EXECUTABLE DIRECTORY: /usr/local/bin - RUBYGEMS PLATFORMS: - ruby - x86_64-li...
2006 Jan 10
0
Problem installing rubygems-0.8.11
I''m having an issue installing rubygems-0.8.11 on 2 different boxes but get the same error on both. The first box is a host environment where I am cross-compiling things for the arm-linux architecture. It is a debian sarge box using the ruby1.8 package which is ruby-1.8.2. I successfully cross-compiled ruby 1.8.4 for the arm-linu...
2006 Apr 01
8
ROR on solaris 10 gem installation error
On my Sun Enterprise 450, I installed ruby-1.8.4 from sunfreeware.com. That installed like a dream. I then downloaded rubygems-0.8.11. Untarred into /usr/local/src and tried to do a /usr/local/bin/ruby install.rb this is what followed and can someone help me figure out what to do? bash-3.00# /usr/local/bin/ruby setup.rb ---> bin <--- bin ---> lib ---> lib/rubygems <--- lib/rubygems <--- lib ---> bin...
2008 Mar 21
26
mongrel garbage collection
Sorry, for the re-post, but I''m new to the mailing list and wanted to bring back up and old topic I saw in the archives. http://rubyforge.org/pipermail/mongrel-users/2008-February/004991.html I think a patch to delay garbage collection and run it later is pretty important for high performance web applications. I do understand the trade-offs of having explicit vs. implicit garbage
2006 Jan 15
15
Gettext and Rails ?
Hello, I''m trying to use ruby-gettext 1.1.1 (installed with gem) with rails and here is all I get : undefined method `init_gettext'' for ApplicationController:Class Here is my source : require ''gettext/rails'' class ApplicationController < ActionController::Base init_gettext "test" end As a Nuby, I don''t really know what to do.