similar to: Error with installing rails/gems on ubuntu-dapper

Displaying 20 results from an estimated 500 matches similar to: "Error with installing rails/gems on ubuntu-dapper"

2006 May 18
4
Install Glitch
Ubuntu 5.10, Ruby 1.8.3. I installed rubygems, then tried rails, and get a tragic looking error at the end. Is this a problem? It looks related to rdoc. root@bonus:/usr/local/rubygems-0.8.11# gem install rails --include-dependencies Attempting local installation of ''rails'' Local gem file not found: rails*.gem Attempting remote installation of ''rails''
2006 Apr 24
1
Upgrading Rails to 1.1.2 exception thrown ...
Hi, I was able to successfully upgrade my ruby version to 1.8.4 After that i issued this: sudo gem install rails --include-dependencies The output of which is this: Attempting local installation of ''rails'' Local gem file not found: rails*.gem Attempting remote installation of ''rails'' Updating Gem source index for: http://gems.rubyforge.org Successfully
2006 Aug 04
2
MacOS + darwinport + rubygems
Hi, Installing ruby (following wiki recommandations) with darwinport, I have the following error when I want to install rails gem: /opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'': no such file to load -- sources (LoadError) from /opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'' from
2007 Jun 14
1
HABTM and acts_as_list
I don''t think this needs much explanation. Is what I''m trying to do even possible? class CreateLanguagesProducts < ActiveRecord::Migration create_table languages_products do |t| t.column :language_id, :integer t.column :product_id, :integer t.column :language_position, :integer end end class Language < ActiveRecord::Base acts_as_list :scope =>
2005 Nov 18
2
Migrate Ubuntu Rails App to Fedora?
I developed a small RoR app on my Ubuntu laptop and I just tried to migrate it to my "production" box which is Fedora FC3. I moved the entire rails app. I received this error when I tried to get the first page: [2005-11-17 15:36:00] INFO WEBrick::HTTPServer#start: pid=32546 port=3000 192.168.0.61 - - [17/Nov/2005:15:40:01 EST] "GET /freesql HTTP/1.1" 200 0 - ->
2006 Jul 31
6
Unable to install Gems with RubyGems on Intel OSX with DarwinPorts
I followed Duncan Davidson''s Sandboxing Rails with Darwin Ports guide and everything went fine up till the part where I had to install gems using gem install. I would get this stacktrace: Attempting local installation of ''rake'' Local gem file not found: rake*.gem Attempting remote installation of ''rake''
2006 Jan 23
0
gem install login_generator
I am trying to install a gem into my Dreamhost account: http://wiki.dreamhost.com/index.php/Ruby_on_Rails#Using_gems_installed_in_your_home_directory But it doesn''t work. I don''t quite understand the error message: pico$ gem update --source http://gems.rubyonrails.com Upgrading installed gems... Updating Gem source index for: http://gems.rubyonrails.com Gems: [] updated pico$
2006 Jan 23
5
can''t install model_security_generator
I''m trying to install Bruce Perens'' ModelSecurity gem, but it keeps asking me if I want to install rails too (I have already installed rails). It exits if I say no and crashes if I say yes: C:\>"c:\ruby\bin\ruby.exe" "c:\ruby\bin\gem" install model_security_generator Attempting local installation of ''model_security_generator'' Local gem
2006 Jul 30
0
Rails installation problem - activesupport
I am trying to install Ruby on Rails on my G5 PowerPC, I followed <a href="http://hivelogic.com/articles/2005/12/01/ruby_rails_lighttpd_mysql_tiger">these</a> instructions. Everything seems to be working fine until i try to install Rails with Rubygems, then I get the following error-message: <blockquote>Install required dependency activesupport? [Yn] y ERROR:
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-linux architecture and it runs well on the embedded
2005 Mar 18
4
NoMemoryError on "gem install rails"
Greetings all-- Humble newbie requesting help here. I''ve just installed Ruby 1.8.2, Rake 0.4.15, and RubyGems 0.8.8. When I try to get Rails into place via "gem install rails," I get the error below. What have I done wrong? Can anybody throw me a rope? Attempting local installation of ''rails'' Local gem file not found: rails*.gem Attempting remote
2006 Mar 25
3
Rails and Lighttpd, hangs?
I know this is kind of a generic question. But, when hitting my lighttpd/rails site on some of the first hits, the site hangs. I think it has something with the lighttpd configuration, possibly something I am missing with rails or ruby? Any ideas or how to track this down. fastcgi.server = ( ".fcgi" => ( "0.0.0.0" => ( "socket" =>
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 <---
2006 Apr 18
3
install rail behind a proxy
Hello i try to install rail. I am behin a proxy with no Authorization C:\rubygems-0.8.11>gem install rails -p http://xxx.xxx.xxx.xxx Attempting local installation of ''rails'' Local gem file not found: rails*.gem Attempting remote installation of ''rails'' Updating Gem source index for: http://gems.rubyforge.org Install required dependency rake? [Yn] y
2006 Apr 27
0
Another simple rails application - really only a hour or two
This is another simple rails application. I am just putting them out there; doesn''t really add to any of the other depot applications out there, just another. From type ''rails XXXX'' it probably was a hour or so to setup and design the layout and what-not. http://www.newspiritcompany.com:8086/helper_numbers_idea/
2006 May 29
1
Init lifecycle and rails
In a servlet J2EE application, there is an init style method that gets called after that servlet is loaded. Is there something similar within a rails controller context. I am looking for something where I can load and setup a particular object. Also, what about with sessions as well. I would like to call some library when a user session begins and possibly kill that object when the
2006 Jun 01
1
Upgrading old rails application for new rails version
I want to update my application which was generated with rails 1.0.0 to the new version. My question. I have already updated the ruby gems library and things seem to work. Do I really need to update the actual code. Can I update the code? For example, I noticed that prototype is a lot newer version. I would like to update that. -- Berlin Brown (ramaza3 on freenode)
2006 May 04
1
Ways to share code among the ''layout''
Is there a way to use the same code accross multiple layouts. Normally, I am associating a layout with a particular controller? Is there a cleaner way. -- Berlin Brown (ramaza3 on freenode) http://www.newspiritcompany.com http://www.newspiritcompany.com/newforums also checkout alpha version of botverse: http://www.newspiritcompany.com:8086/universe_home
2006 May 29
0
Custom command line libraries for controllers and rails
I have a library that is basically used on the command-line. I am trying to fit it in for my rails application. So far it works, but I was worried about how rails does caching or anything else. Basically, is this an ok approach. So far, I put the library in RAILS_APP/lib/bot.rb And ''bot.rb'' contains a class ''VM''. I have a controller: BotController..
2006 Apr 18
0
activerecord(mysql) and hash to unique count
I am working with ruby(activerecord) and want to save a ''hash'' of URLs such that a key is the URL and the value points to a count of how many times it occurs after processing a csv file my question; all I know of is right now is to attempt to save, get a unique error and then when handling the exception increment the hash value (really a column in a table) Is this bad? Or