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.
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
...
9
votes
1answer
2k views
Rails console 'y' helper returns NameError rather than yaml-formatting output
I'm trying to use y object in Rails 3.2.6/Ruby 1.9.3 console to get nicely formatted yaml output for an ActiveRecord object, but for some reason it isn't working for me. I've used it in the past, but ...
6
votes
1answer
740 views
Can I get the Ruby on Rails console to remember my command history, umm, better?
I'm using the console in Ruby on Rails 3.1.1, and I'm finding its command history (up arrow) to be really flaky. I've run the commands p = Product.by_name 'Acme' and p.add_search_term('Snipe') several ...
6
votes
2answers
765 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?
5
votes
1answer
1k views
Rails deprecation warning for vendor/plugins when I don't have any [duplicate]
Possible Duplicate:
eliminating Rails 2.3-style plugins and deprecation warnings
I get the following error when I do a heroku run console:
$ heroku run console
Running `console` attached ...
5
votes
1answer
607 views
Postgresql table values don't match Ruby on Rails Active Record query results
I have a table named monthly_trips in Postgresql. There is a row with values id = 3 & al = 107.415. My problem is when I try to access the value of the "al" column in rails. Using the Rails ...
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 ...
4
votes
1answer
4k 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 ...
4
votes
3answers
4k views
Devise password reset from Rails console
While running an app how do you select a user by email address and then set the password manually within rails console for Devise?
Also, where would I go to review documentation to cover more details ...
4
votes
2answers
226 views
Rails console - process finished with exit code 0
Can't start rails console. When I'm trying to start it I 've got this message:
Loading development environment (Rails 3.2.12)
Process finished with exit code 0
It exits without any errors. But ...
4
votes
1answer
240 views
Rails console issues using JRuby: no prompt character, no tab completion, broken arrow keys, etc
I'm having various issues with my Rails console under JRuby, including
No prompt character
Tab completion not working (literal tab gets inserted)
Up/down arrows not browsing history (^[[A or ^[[B ...
4
votes
1answer
290 views
Rails Console Crashing
When I load up my Rails Console, I get the following error
Loading development environment (Rails 3.2.3)
/Users/nataliamurashev/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/irb/magic-file.rb:7:in ...
3
votes
1answer
249 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
1answer
444 views
Ruby on Rails 3 Tutorial: Entering commands in console issue
I am working through this tutorial book and have run into an issue with the rails console not recognizing the user model that I've created. Here is what I am working with
This is what I've defined in ...
2
votes
1answer
78 views
How to save a string to a database from rails console
I'm trying to save a string to the database and output it from the view. Just starting to learn RoR, so a bit confused here...
Here's what I did:
generate model test id :string value :string
...
2
votes
2answers
667 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. ...
2
votes
3answers
24 views
Rails console compare model instances
Is there a way to compare two instances of model like
Model.compare_by_name("model1", "model2") which would list the differing column fields
2
votes
2answers
1k views
How do I prevent Rails Console from performing an immediate rollback on db transaction?
I'm new to rails and I'm having some trouble in the console. I'd like to add records to my Users table and test some functions. However, everytime i perform a User.create or similar function, it ...
2
votes
2answers
155 views
Rails console limits text output. How do I get to see it all?
It seems like the Rails console limits its character output to about 880 characters.
How do I remove this limitation?
Printing large objects, or text fields from the database, gives output like this:
...
2
votes
1answer
409 views
how can I run an initializer from the rails console?
I've got an initialization file config/initializers/linkedin.rb that sets up the Linkedin gem so that my app can connect to the LinkedIn service and run queries. I'm now testing out some new features ...
2
votes
4answers
783 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) ...
2
votes
1answer
266 views
Adding Roles to Rails Composer, Devise, CanCan, Twitter Bootstrap
I am making an app that started with Rails Composer, Devise, CanCan, Twitter Bootstrap.
I know how to set the users permissions using the ability model. How do I add more roles to attribute certain ...
2
votes
3answers
703 views
Add tests for dependent :destroy in the Relationship model (Chapter 11, Exercise 1 Rails Tutorial, 2nd Ed)
Pretty sure these tests are working correctly. Got them to fail by removing the dependent: :destroy options on the has_many :relationships and has_many :reverse_relationships in user.rb.
Wanted to ...
1
vote
2answers
401 views
Is there a way in the Rails Console to print a table of database contents?
I'm looking for a clean and simple way to print in the Rails Console the contents of my 5 row database with 2 columns.
Any ideas? I Googled around but didn't find much.
1
vote
2answers
1k views
Why do ActiveRecord queries from console print sql statements?
I'm using pry, and ActiveRecord queries from the console always print out their corresponding SQL statements. I don't want this behavior. Googling around I only see that this must be explicitly ...
1
vote
2answers
75 views
What exactly does the “Rails development environment” entail?
I'm running Rails 3.1.1 and Ruby 1.8.7. When I type irb in the OS X Terminal the command prompt ree-1.8.7-2011.03 :001 > is displayed immediately. When I type rails console in the terminal the same ...
1
vote
1answer
142 views
Why does Rails console say “cannot load such file — readline”?
I am new to Ruby on Rails, and am using RVM to manage Ruby versions.
My laptop has Ruby1.8.7 installed, but my project is using RVM, Ruby1.9.3 and Rails 3.2.11.
I can't run rails c or rails console ...
1
vote
3answers
353 views
Write to rails console
When I want to try or debug smthing I run rails console and do some stuff there. I can print some text or variables from code by raising exception with raise "blablabla".
Question: How I can just ...
1
vote
2answers
178 views
clear all variables in rails console
can any body tell me what command is used to clear all variables in rails console?
e.g.
1.9.1 :001 > permissions = {:show => true}
=> {:show=>true}
1.9.1 :001 > foo = "bar"
=> ...
1
vote
2answers
93 views
How to create a custom method for the rails console?
When I'm using the Rails console in Ubuntu for a long session I define the clear method:
def clear; system 'clear' end
So when my console is getting dirty the only thing I have to do is type clear ...
1
vote
1answer
274 views
Rails console doesn't run on ec2 after deployment with rubber
I deployed my application on ec2 using rubber and it works fine, however when i try to run the console (typed rails console) it didn't work. It didn't recognize the scipt at first and when i tried to ...
1
vote
3answers
705 views
'rails console' command throwing error in Rails 3.2.9
I am using Rails 3.2.9 with ruby 1.9.3 (made default using RVM). From the root directory of my test_app when I executed the command 'rails console' / 'rails c', the following error is showing.
rails ...
1
vote
2answers
282 views
Truncate table(s) with rails console
I have this testingdatabase which, by now, is stuffed with junk. Now I've done a few Table.destroy_all commands in the rails console which deletes all records and dependencies which is awesome. ...
1
vote
2answers
83 views
Is it possible to run Rails console with pager like less?
I'm using the awesome_print to prettify objects to print.
But when I use it for many objects, I can't see all of them because they are too many to display in terminal scroll.
I would like to use a ...
1
vote
1answer
64 views
Time zone varies when ruby version varies why?
I am running Rails 3.0.1 with Ruby 1.9.2p290.In rails c
Time.zone
gives
=> (GMT+00:00) UTC
In my friends rails console [Rails 3.0.1, Ruby 1.8.7]
Time.zone
gives
...
1
vote
1answer
285 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
vote
2answers
156 views
Catalyst equivalent for Rails script console
Is there anything like Ruby on Rails' script console for Perl's Catalyst? From rubyonrails.org:
The console command lets you interact with your Rails application from the command line. On the ...
1
vote
1answer
529 views
Rails Console gives me a “wirble” error
rails-project git:creating-models ❯ rails console
Loading development environment (Rails 3.2.1)
Couldn't load Wirble: cannot load such file -- wirble
irb(main):001:0>
I've googled and nothing ...
1
vote
2answers
2k views
How to attach the Rubymine IDE debugger to a shell process?
I want to use Rubymine's IDE debugger to debug a ruby process running in the command shell, as it is spawned, e.g. by "rails console".
I've gotten great mileage out of the debugger when running the ...
1
vote
2answers
69 views
Instance of Rails model only creatable through console
I've been following the tutorial on creating a Rails blog (http://www.roberthuberdeau.com/articles/4-How-to-create-a-blog-in-Ruby-on-Rails-3) and have basically got all the way to the end.
However, ...
1
vote
2answers
103 views
how do I unload & load a class?
I've got a class in /lib that I'm mucking with and testing via the console. I'm making changes to the class (adding a debugger line for instance) and using reload! but the new or removed line is not ...
1
vote
1answer
34 views
Reload rails console with hotkey
Is it possible to reload rails console with hotkey?
Something like binding reload! to CMD+r (like reloading page in browser).
1
vote
1answer
599 views
How can I display MongoDB queries in the rails console/server
I trying to use MongoDB with Rails (I never tried MongoDB before).
And I want to display the queries made by mongomapper in the rails console or the rails server (like ActiveRecord does)
Is there a ...
1
vote
1answer
315 views
Rails 3 - trying to create polymorphic has_one association in console
Here's my code:
Models:
class Article < ActiveRecord::Base
attr_accessible :title, :author, :content, :imageable_attributes
has_one :image, as: :imageable, dependent: :destroy
...
1
vote
1answer
192 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
...
1
vote
0answers
18 views
Can the Rails Console be reloaded when release symlink changes?
I am running rails on a Capistrano-based deployment setup. I prefer to leave rails console sessions open in tmux, and have them persistently available.
Capistrano puts the application in a director ...
1
vote
2answers
121 views
Rails Console Broken
I discovered today that my ruby console on rails is no longer working. (I don't work out of the console all that often, so not exactly sure when or how this happened). I'd like to get feedback on ...
1
vote
2answers
273 views
Rails console not working with redgreen gem
I have a problem with rails console, here is what I am getting when I try to start rails console:
backo@speedy:~/ucimrails/simple_app$ rails c --sandbox
...
1
vote
1answer
436 views
Unable to load “rails c” (error: “Switch to inspect mode”) from within the otherwise functional command line inside of the RubyMine Jetbrains IDE
EDIT: The question is, how to I "switch to inspect mode"?
Through the "External Tools" function within the RubyMine Jetbrains IDE (file, settings, external tools), I have cleverly added a command ...
1
vote
1answer
231 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 ...
