The rubygems tag has no wiki summary.
0
votes
1answer
116 views
Dependency issues while installing curl-devel
I'm trying to run the passenger-install-apache2-module so I can install Redmine on CentOS 5.8, but passenger-install-apache2-module tells me I need Curl development headers with SSL support, which it ...
4
votes
2answers
78 views
maintenance/installation of ruby gems/ruby on rails on Linux in general and Gentoo
I am currently looking into Ruby/Ruby on Rails as an alternative to Python/Django. My main problem is that it is rather unclear what the best practices are when it comes to installing Ruby gems and/or ...
0
votes
0answers
40 views
Unable to install rubygems in ubuntu 10.04
I had installed the ruby 1.8.7 with patch level 253 successfully on my ubuntu 10.04, but while installing ruby gems I am facing the below error, can anybody help me on this.
ruby -v
ruby 1.8.7 ...
0
votes
1answer
74 views
sudo ./starling start works well but sudo service starling start fails
sudo ./starling start works well but sudo service starling start fails
$ sudo ./starling start
* Starting Starling Server... [ OK ]
$ sudo ./starling stop
* Stop Starling ...
0
votes
3answers
367 views
cannot load such file — OpenSSL (LoadError)
I'm having an issue with an uncooperative EC2 Ubuntu 10.04 4 LTS instance. I'm trying to install a few prerequisites for a Ruby web app which has the following dependencies:
require 'rubygems'
...
0
votes
1answer
35 views
Recommended way to install rubygems
There are server way to install rubygems
Using apt-get: apt-get install rubygems1.8
Using rvm: bash -s stable < <(curl -s ...
0
votes
0answers
170 views
LoadError in Home#index “no such file to load — sass”
I'm getting the following error when i run my application with Apache (thru passenger gem) or Rails server:
LoadError in Home#index
Showing ...
2
votes
2answers
78 views
Is removing ~/.rvm/ all I needed to perform a clean re-install
I have installed ruby and gems under ~/.rvm/, now I want to re-install all the stuffs agaain.
Are there any modifications/links live outside of this folder? So, by just removing the folder ~/.rvm/ is ...
0
votes
1answer
83 views
Phusion Passenger without RVM
Usually I use RVM + Passenger for my rails applications. Recently, however, I needed to use Passenger without RVM. And I'm confused about gem location.
What's the location of gems that Passenger ...
1
vote
1answer
131 views
zlib error on gem install rails after rvm version switch
(Debian squeeze)
rvm version: 1.10.0
I have just installed ruby 1.9.2-p290 using "rvm install 1.9.2" and made it default. However, I am getting this error when trying to install rails using rubygems. ...
0
votes
3answers
87 views
how to point rubygems to use ruby 1.9.1?
[Debian squeeze]
It has been surprisingly difficult to find an answer for this.
I had ruby v1.9.1 installed (/usr/bin/ruby1.9.1), but after I then installed rubygems, it also installed ruby1.8 ...
0
votes
0answers
80 views
ArgumentError (invalid date) on redmine
Have installed redmine on ubuntu 10.04 LTS but when I add quotes or comments to an issue I get this error:
ArgumentError (invalid date):
/usr/local/lib/ruby/1.8/date.rb:752:in `civil'
...
1
vote
1answer
163 views
Trouble installing Heroku taps gem using RVM
I tried to install the taps gem on my rvm, but got the following result:
larson:~ larson$ rvm gem install taps
Successfully installed taps-0.3.23
1 gem installed
Installing ri documentation for ...
0
votes
0answers
193 views
ROR3 Linecache19 and MacPorts Update Error
Am getting this error message when I try to start 'Rails Server' after updating MacPorts earlier today.
User$ rails server
Could not find linecache-0.43 in any of the sources
Run `bundle install` to ...
0
votes
0answers
71 views
gem list GEMNAME doesn't return all installed versions?
i use rvm on my webserver. when i use gem list GEMNAME, it doesn't show my all installed version of the gem I'm looking for. But when I look into gems in the /usr/lib/rvm dir, it lists all other ...
2
votes
1answer
719 views
ActiveAdmin User management
I am new to Ruby on Rails. I am using ActiveAdmin for administration purposes.
I have Googled a lot about "how to manage admin users" for example, changing default username password from ...
0
votes
1answer
137 views
Mac terminal unix questions. Trying to install showoff.io
I installed the gem according to the instructions at showoff.io, but when I try to run
show 8888
it doesn't work and I get
-bash: show: command not found
In their faq, they mention running
gem ...
1
vote
1answer
173 views
Ruby 1.8.7 on Plesk 9.5.4
I'm trying to get Ruby 1.8.7 installed on Plesk 9.5.4. I'm currently running 1.8.6 but gem requires a newer version of Ruby to be installed:
/opt/ruby/bin/gem update --system
Updating RubyGems
...
0
votes
0answers
395 views
Bundler breaks mysql gem causing “The bundled mysql.rb driver has been removed from Rails 2.2” error
I am sure I am missing something... can someone please point me to the right direction as I feel I have been chasing my tail for the last few hours.
PROBLEM
I am able to run rvm, mysql and Rails but ...
1
vote
3answers
228 views
Using gcc instead of SUNWspro cc in ruby mkmf for yajl on Solaris 10
How do I get mkmf to use gcc instead of /opt/SUNWspro/bin/cc on Solaris 10?
I am trying to install chef using gem install chef. It is failing with:
Building native extensions. This could take a ...
0
votes
1answer
306 views
Unicorn installation error on Debian 5
I am running ruby1.9 on Debian 5, and did not manage to install 'unicorn' with rubygems. I got this error and do not really know how to solve it.
Do you have any idea of the possible root cause ?
...
1
vote
1answer
40 views
When you have a server and don't use RVM, do you sudo gem install or just gem install?
When you set up a Linux server with Ruby on Rails on it, and you're not using RVM, is the best practice to sudo gem install [gem] or gem install [gem]. I'm using the second approach, and storing my ...
2
votes
3answers
537 views
RVM not picking up /etc/gemrc
in a system wide RVM ....
heres my /etc/gemrc
---
gem:--no-ri --no-rdoc
heres the system gem env
GEM PATHS:
- /usr/lib/ruby/gems/1.9.1
- /home/${USER}/.gem/ruby/1.9.1
GEM ...
0
votes
2answers
205 views
Sqlite3-ruby installation issue
I'm trying to install sqlite3-ruby gem (or as it's now called, simply sqlite3) and whenever I run
gem install sqlite3
it spits this out
Building native extensions. This
could take a ...
2
votes
2answers
989 views
How does `sudo` search the path for executables?
I am using rubygems (1.3.7) with gems that require root privileges on Ubuntu 10.10. When I compare my setup to an ubuntu 9.10 with rubygems 1.3.6 installation, I see the following difference in gem ...
0
votes
1answer
352 views
-bash: /usr/bin/ruby: No such file or directory
I have installed ruby 1.9.2 on my centos server as per this tutorial - http://blog.jeffcosta.com/2010/09/10/7-steps-to-rails-on-centos/
It says that it should be installed to the following locations:
...
1
vote
2answers
2k views
ruby on rails gitorious setup on ubuntu
Ive been trying to install gitorious for a while now which required ruby and rails etc. Ive finally got rails pages serving but cant finish the installation of gitorious because the gem version is too ...
0
votes
2answers
112 views
RubyGems: sqlite3 too old, and no sudo
I have an account on a server that is not a super user. Because of this I've used RVM to install Ruby, and I've also installed a few gems.
However, the sqlite3-ruby gem does not want to install, ...
1
vote
1answer
317 views
Error 302 when installing rake gem
i try to install rake on my clean lenny server, i get the following error:
Updating installed gems
ERROR: While executing gem ... (Gem::RemoteFetcher::FetchError)
bad response Found 302 ...
0
votes
2answers
289 views
Installing gem MySQL failed
I'm installing mysql gem on Amazon AMI 2010.11.1 and I'm having the next problem:
# gem install mysql
Building native extensions. This could take a while...
ERROR: Error installing mysql:
...
0
votes
1answer
90 views
How do I host an internal rubygem source?
We'd like to host a rubygems source internally on our own network, because while we do want to use gems as a distribution mechanism, we don't want to publish our gems externally to the company, since ...
3
votes
3answers
4k views
How to setup Ruby and RubyGems on CentOS?
I have a CentOS 5.5 (64-bit server)
I'd like to install Ruby 1.8.7 (current patch level) and RubyGems
What's the best way to go about this?
disclaimer: I'm a CentOS noob
0
votes
1answer
372 views
Compiled ruby fails to find curses
I'm attempting to install the sup MUA but I'm having trouble. When I try to run it, it can't find curses:
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no ...
0
votes
1answer
495 views
Installing Redmine on bluehost
I'm installing redmine on a bluehost server, and thanks to scripts like this one, most of everything is covered (except the RAILS_ENV=production rake config/initializers/session_store.rb step). ...
1
vote
0answers
150 views
gem mirror segfaulting
I'm trying to create rubygems mirror on my VDS doing the following:
$ gem mirror
$ gem generate_index -d /home/rubygems/mirror
The problem that each time I run first command ruby segfaults with ...
2
votes
1answer
444 views
Memcache on ubuntu server lucid and ruby 1.9.1
I'm trying to set up a memcache server on the above setup. I'm getting the following error:
/var/lib/gems/1.9.1/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:443:in ...
0
votes
2answers
2k views
check which version of rubygems installed on ubuntu?
How do I check which version of rubygems i have installed on my ubuntu box?
0
votes
1answer
314 views
undefined method `manage_gems`
On my ubuntu 8.04, I did a
gem update --system
and now everytime i try to run the gem command line from console, i get the error:
/usr/bin/gem:10: undefined method `manage_gems' for Gem:Module ...
0
votes
2answers
466 views
gem install rails gives me Error: undefined method include?
I'm using ubuntu 9.10, apache 2 and mysql 5. I install ruby 1.8.7 on the server. I ran the command
gem install rails -v 1.2.3
But then I get the error
ERROR: While executing gem ... ...
1
vote
1answer
94 views
How best to automatically deal with multiple site_ruby locations?
Is there a way to automatically append to $: variable in ruby to account for additional site_ruby locations?
Ruby is installed in /usr/local/ and using gem_install will properly install the new ruby ...
4
votes
3answers
2k views
How do you uninstall the rubygem application?
We have installed the rubygem application (version 1.3.6) on a Debian system by downloading the rubygems tar.gz archive and running the setup.rb command.
What is the best way to uninstall this ...
0
votes
4answers
2k views
Passenger “Missing the Rails 2.3.4 gem” after Apache restart
I have a rails app running on passenger/apache 2.2.3/RHEL. Everything was working fine until I had to restart Apache. Once I did that, I got the following message:
Missing the Rails 2.3.4 gem. Please ...
6
votes
8answers
561 views
gem vs apt-get in a server environment
Where should I draw the line between using apt-get and gem when setting up a server to host ruby on rails with passenger + apache?
Does it even matter?
It feels wrong to mix package management ...
1
vote
1answer
516 views
How to install mysql gem under OS X
When installing the ruby mysql gem by doing:
sudo gem install mysql
Subsequent rails migrations still fail, with a message like:
$ rake db:migrate
(in /Users/guy/code/project)
rake aborted!
...
0
votes
2answers
421 views
gltail “Missing gem net-ssh”
I'm attempting to get gltail set up on my local system to monitor logs remotely.
I've got all the dependencies installed, but when I go to run gltail ...
./gl_tail configfile ../config.yaml
I get ...
1
vote
1answer
385 views
Why won't ruby recognize Haml under ubuntu64 while using jekyll static blog generator?
I have been trying, quite unsuccessfully, to run henrik's fork of the jekyll static blog generator on Ubuntu 64-bit. I just can't seem to figure this out and I've tried a bunch of different things. ...
1
vote
5answers
3k views
Installing Mysql Ruby gem on 64-bit CentOS
I have a problem installing mysql ruby gem on 64bit CentOS machine.
[jacekb@vitaidealn ~]$ uname -a
Linux vitaidealn.local 2.6.18-92.el5 #1 SMP Tue Jun 10 18:51:06 EDT 2008 x86_64 x86_64 x86_64 ...
1
vote
3answers
2k views
How can I uninstall software from an RHEL 5 system?
I installed Rubygems 1.3.4 on an RHEL 5 system. The way you install that is to download source and run setup.rb. I did not find a package for it through yum list available.
Now I'd like to uninstall ...