Displaying 20 results from an estimated 10000 matches similar to: "How to determine whether dev,test or prod from the code"
2010 Sep 27
3
Rails3 app deploy : how to ?
Hello,
I know many people are asking this kind of question. I searched in
this forum and some others in the web but i did found something clear
enough for my "ror''s power" (i''m not completly new but real
close ;-) )
Well, I''m developing my application on os x, i''m using svn (team
choice) for versionning but i will need to deploy on linux server
(with
2006 Mar 25
67
Your Ruby IDE
Just a poll here i am looking for a good IDE for rails and wondering
what you guys use?
features i like in an ide
code highlites
auto code complete
file browser
Currently i am using dreamwever but the code highliting is really bad
its also a pain to set up other doucment types such as .yml data config.
--
Posted via http://www.ruby-forum.com/.
2006 Jul 26
9
RadRails config? Getting blank project only created?
Hi,
Does anyone know how to correctly configure RadRails (0.7)?
I can''t seem to get 0.7 version of radrails to create a Rails project.
All I get is a blank project. I have ensured that my PATH does point to
my ruby\bin area. Also any clarification regarding which directory
(with an example) should be used for the following preferences setting
(are they asking for a file or
2007 Nov 27
1
capistrano hangs
Any idea why this command takes upwards of 15 minutes to complete?
run "cd #{release_path} && ORACLE_HOME=/home/oracle
RAILS_ENV=production rake db:migrate"
When running it against my local Postgres it completes in a few
seconds or so. Running it against my local Oracle XE takes only
slightly longer. But running it with capistrano over ssh is taking
years away from my life.
2006 Feb 01
3
Getting database config info
Hi folks. I have a very small problem which is probably very simple. But
I''ve scoured the api and the rails book with no luck.
I''m trying to get information about the database definition out of active
record. When I go into console and say
ActiveRecord::Base.connection
I get a MysqlAdapter object, with an instance variable called @config that''s
a hash containing all
2009 Aug 25
28
Anything but Aptana
Not trying to get into a "What''s a good IDE" here, BUT....On
Windows....RadRails never cut it. Under Aptana, it''s a terrible joke,
and I''m sick of losing so much time waiting not only for this thing to
initialize, but the hanging and crashing I go through is killing me.
Please, someone....point me to a decent, lightweight IDE. All i want
is syntax coloring.
2010 Jun 10
9
Rails3 beta4 + Ruby 1.9
When I try rails console using Rails3 beta4 and Ruby 1.9.1-p378 I
cannot save a record:
> rails console
Loading development environment (Rails 3.0.0.beta4)
ruby-1.9.1-p378 > g = Game.new
=> #<Game id: nil, player_id: nil, versus_id: nil, finished: nil,
created_at: nil, updated_at: nil>
ruby-1.9.1-p378 > g.save
NameError: undefined method `<=>'' for class
2006 Jul 23
6
routes
My best guess at how to make this route
map.connect '':user'', :controller => ''user'', :action => ''profile''
makes my
link_to :controller => ''admin'', :action => ''index''
stop working ?
I''m needing urls like http://localhost:3000/username but without
breaking all my other controller index
2011 Sep 02
1
can't compile assets on prod due to asset_host config && SSL requirement
My production asset_host config looks like this:
config.action_controller.asset_host = Proc.new { |source, request|
if request.ssl?
"#{request.protocol}#{request.host_with_port}"
else
"#{request.protocol}assets#{(source.length % 4) +
1}.example.com"
end
}
...which is more or less straight from the docs:
2009 Sep 16
12
Connecting to Oracle (Solaris Sparc 10)
My company''s System-admin installed Ruby and Gems (using Sun Coolstack
package) and I have sudo access to ruby, gem etc. Now I need to get my
app to talk to oracle db (through network).
From what I understand, it requires three steps:
Step 1: Install oracle instant client ( I installed it in my ~/oracle/
instantclient_11_1)
Step2: Install OCI8 libraries (this is where I am stuck). Here is
2009 Sep 25
8
Cheapest Rails Hosting where they give you full access to Apache (to load modules etc)???
any pointers / suggestions re cheapest Rails hosting where they give
you full access to Apache (to load modules etc)??? Can be a shared
platform, however not sure if there is a shared platform type hosting
service where they do give you such access?
2005 Dec 22
1
[NEWB] How to access database.yml parameters in a controller
Hi,
Are the active database.yaml attributes for the current environment
(dev, prod, test) available inside a controler ?
adapter, host, db, socks, etc.
AFIK Class#connection don''t give back theses infos.
Thanks
2006 Jun 28
8
How to obtain clients IP adress
Is it possible to obtain clients adress in ruby on rails?
by
TheR
--
Posted via http://www.ruby-forum.com/.
2009 Mar 12
4
Help: rails magic fallout
Hi all,
I''ve just wasted a day fixing an issue that IMO shouldn''t be one. I''ve
got a workaround, but it smells as there''s more, and I would greatly
appreciate pointers what to watch out for.
The issue: I''ve got a model, and it had a method ''all_noload''. It''s
homebrew, i.e. doesnt'' derive from ActiveRecord::Base.
2007 May 22
4
Rails API is not well defined
Although somewhat new, I continue to struggle with passing the right
parameters to the Rails methods despite making direct reference to the
documentation. For example, I want to create a form:
form_tag :action => ''deliver'', :id => @event.id, :class => ''entry''
The class doesn''t show up. I''ve tried various combinations of hash
2009 Sep 16
5
piece of code that runs only once
hi, an strange error is happening here
in User model i have the following method:
def falta_votar
Category.find(:all) - votes.collect {|v| v.category}
end
and in the default.html.erb layout i have:
<%= current_user.falta_votar.size %>
but it only works once, when i try to access another page i get an
error message saying that the falta_votar method is nil, then i have
to restart
2009 Mar 12
3
Session Expiry
Helllo there,
Can any one help me on this "Session Expiry"
I just want to make the session expire when the system goes idle
how do i do it
yours ,
Narayanan.cj.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2006 Aug 05
22
MySQL vs SQLite
I have an application where speed is probably the #1 priority here. I am
using MySQL 5.0.22. Would SQL be considerably faster than MySQL?
I know this has been discussed before, but the search on the forums is
not working.
Thanks for your help.
--
Posted via http://www.ruby-forum.com/.
2010 Aug 18
2
[Rails 3] remote_function ?
Is the remote_function still valid in Rails 3 as it seems many of the
Prototype helpers have been replaced ? (link_to_remote, ...)
where can I find any link on it ? not in the standard doc I guess ..
thanks for you feedback
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2006 May 23
7
how to pull text from database and eval it?
I''m trying to add some executable code to my blog posts. How can I
include this inside of a blog post and eval it?
Charlie bowman
http://www.recentrambles.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060523/a3536408/attachment.html