the interactive, command-line interface to the Ruby-based Rails framework. The Rails console allows developers to interact directly with their application without using a browser.
3
votes
1answer
234 views
How to update test database in Rails 3?
I added an entry to the yml fixture for a model. Then rails console test. But the new record is not in the database.
How do you "update" the test database to access it in rails console?
Working in ...
2
votes
4answers
693 views
Michael Hartl's Rails Tutorial: User.find(1) after destroy method shows stack trace
I'm going through Michael Hartl's Rails tutorial, specifically Chapter 6:
http://ruby.railstutorial.org/chapters/modeling-and-viewing-users-one#sec:finding_user_objects
after I do the User.find(1) ...
0
votes
1answer
123 views
Can I ignore certain fields that are too long in Hirb?
I am using Hirb in my Rails console to try to display mongoid records in a nicer looking table, but the _id, created_at, and updated_at fields take too much space and, even though I really have one ...
0
votes
2answers
98 views
Stop Rails Console from loading Test::Unit
I have a model named "Test" (I commented everything out of that model so all that's left is class Test end for debugging purposes) and every time I try instantiating it in the rails console I get an ...
1
vote
1answer
266 views
NameError (uninitialized constant) when trying to call method from gem
I wanna use harvested gem in one of my models. It's installed (no issues), bundle check says it's ok. It works from rails console but somehow not from model. Any hints?
def get_clients
harvest = ...
-1
votes
1answer
399 views
rails console error
I'm trying to user rails console but every time I type a command I get
NameError: undefined local variable or method `user' for main:Object
from (irb):3
from ...
0
votes
1answer
146 views
Have i screwed up my rails console? I get verbose errors?
When i type something like person.valid? in my rails console, instead of returning 'false' i get the following output:
NameError: undefined local variable or method `person' for main:Object
from ...
1
vote
1answer
223 views
Generic way to paginate output of IRB or Rails console
The output of an IRB command is often too large for one "screen"
(even if I scroll up - I am using Windows - I cannot get to the start of the output).
Is there a generic way to scroll/paginate ...
6
votes
2answers
702 views
Get rails associations from console
I have a model User. Now i need all the associations details of the same from console.
And need to know whether it is a one-one or one-many.Is there any method to do that?
26
votes
2answers
12k views
Rails Console: reload! not reflecting changes in model files? What could be possible reason?
Earlier it was working fine. I have been playing little bit config. So may be i have changed some config unknowingly.
here is config of environment/development.rb
config.cache_classes = false
...
0
votes
3answers
580 views
Rails console: Does rails console maintain cache for database tables? How to disable that?
I got fk parent/child row deletion/update errors while performing deletion on parent row.So I removed related child records from database manually. But still i am getting errors. I presume it is ...
1
vote
1answer
191 views
Assigning a polymorphic acts_as_mappable model in the Rails console
I have a polymorphic Location model:
class Location < ActiveRecord::Base
acts_as_mappable
before_validation :geocode_address, :on => :create
belongs_to :locatable, :polymorphic => true
...
4
votes
1answer
3k views
Rails 3 Sandbox Console
In Rails 2 you're able to run
script/console --sandbox
so you can play with production data and not accidentally break anything.
I can't seem to find the equivalent command for Rails 3. Does ...
2
votes
2answers
638 views
Strange Rails console behaviour
When I run a multi-line statement in the Rails 3.0.1 console, pressing enter doesn't actually run the statement. Instead, it goes to a new console line, and the cursor has been tabbed to the right. ...
0
votes
1answer
361 views
On Ruby on Rails' script/console, is there a way to print out all the models in your app? (all ActiveRecord subclasses)
which is to find out all the Models in the app. This can be found out from the project folders / filenames, or in the route.rb, but just wonder if there is a Ruby way of finding it out on ...
4
votes
4answers
1k views
~/.irbrc not executed when starting irb or script/console
Here's what I've tried:
1. gem install awesome_print
2. echo "require 'ap'" >> ~/.irbrc
3. chmod u+x ~/.irbrc
4. script/console
5. ap { :test => 'value' }
Result:
NameError: undefined ...
0
votes
1answer
368 views
Ruby from the command line - sticking - Windows
I have seen this behavior on Windows with Ruby for a long time. If I install a gem sometimes the command line will just get "lost" and stop printing output until you go back to the command line and ...