I volunteer for a non-profit with a Ruby on Rails app and they recently
lost their web developer. I have done a lot of programming from Perl to
PHP
and ASP, but never RoR. I’ve become somewhat familiar and been able to
track down and make some cosmetic changes to some of the apps web pages,
but I wanted to make sure what versions I’m dealing with and having a
problem finding the Rails version. I found some instruction on how to
determine and see we have ruby 1.9.3, but there is no rails command and
not
on the gems list, see below. How do I find my rails version?
root@app01:~/www# ruby -v
ruby 1.9.3p392 (2013-02-22 revision 39386) [x86_64-linux]
root@app01:~/www# rails -v
rbenv: rails: command not found
The `rails’ command exists in these Ruby versions:
1.9.3-p448
root@app01:~/www# gem list
*** LOCAL GEMS ***
activemodel (4.0.0)
activerecord (4.0.0)
activerecord-deprecated_finders (1.0.3)
activerecord-mysql-adapter (0.0.1)
activesupport (4.0.0)
arel (4.0.0)
atomic (1.1.13)
bigdecimal (1.1.0)
builder (3.1.4)
bundler (1.3.5)
i18n (0.6.5)
io-console (0.3)
json (1.5.5)
minitest (4.7.5, 2.5.1)
multi_json (1.7.9)
mysql (2.9.1)
rake (0.9.2.2)
rdoc (3.9.5)
thread_safe (0.1.2)
tzinfo (0.3.37)
This install is on a Ubuntu VPS using the nginx web server, I would like
to
get a copy of the app running on a local Ubuntu server I have in my
office,
but I am only running Apache on it now and would like to possibly run
the
app on Apache versus installing nginx. Hopefully I can do that once I
have
all my version information, but I’m also reading several different ways
to
install Rails, and what is passenger? The service to start nginx on the
VPS
is nginx-passenger. Any advice on the best way for me to go about
getting
my own copy of the app running would be appreciated. I have a copy of
its
MySQL db copied and loaded already, just need to get the app working.
Thanks for any help!