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.
0
votes
0answers
136 views
Rails console not showing the MongoDB queries
I have a small issue with Rails and mongodb. I m using the MongoId for this purpose. when i going to make any operations on my model for example fetching records or insert new one etc from my rails ...
0
votes
1answer
145 views
how to use rails-console to manage multiple applications in Cloudfoundry
I have 2 applications hosted on Cloudfoundry. when i created the first application. i used vmc rails-console app1 to manage it and it worked perfectly. then i added the second application and try to ...
0
votes
1answer
102 views
rails dbconsole drops me into my 'test' database
For some reason, when I run rails dbconsole command, it brings up my test database. I think that I must have some file misconfigured. I don't even know where to start looking to correct this. Its ...
0
votes
1answer
125 views
Cloudfoundry - Can not access database when using vmc rails-console
I have deployed a rails application (using rails 3.2.3. ruby 1.9.2), it's up and running and everything is working. Then I tried to manage it using rails console, as vmc rails-console myapp. The ...
1
vote
2answers
79 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 ...
0
votes
1answer
85 views
how to replace null by value of an attribute in rails console
I'm writing a redmine plugin where model is Allissue. I added two attributes project_name and create_date. First, I added column project_name and assigned them some values. Second, I added one more ...
1
vote
1answer
558 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 ...
0
votes
0answers
6 views
results from find_by_cmsGUID executed in function differs from console
I am pretty new to ruby on rails. I must find a record, based on it's GUID, by following the foreign key located in another record. (I have replaced the variables by hard coded GUIDs while debugging, ...
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 ...
0
votes
0answers
122 views
compile error (irb):5: syntax error, unexpected ':', expecting ')'
I'm intrigued in trying to create a new car using sandbox with the next code
rails console --sandbox
then i type
Car.new
=> #<Car id: nil, user_id: nil, brand: nil, model: nil, year: nil, ...
0
votes
1answer
175 views
Unitialized constant error in rails console vs. irb using a Mechanize wrapper
First question from a fundamental level - What is the meaning of an un-initialized constant error in Ruby? I come from an objective-c background, if that helps provide some context.
Secondly, I am ...
1
vote
2answers
119 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
258 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
2answers
89 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 ...
0
votes
0answers
99 views
Rails 3: Undefined method after adapting existing sqlite db
In rails console doing User.first and Post.first works fine. Post.first.user works fine but User.first.posts gives me an Undefined method error
The models:
class User < ActiveRecord::Base
...
0
votes
3answers
100 views
RSpec results and Rails Console behaving differently
Here is my Lesson model:
before_create :set_sequence
def set_sequence
maxseq = Lesson.where(:course_id => self.course_id).maximum("sequence")
if (maxseq.nil?)
maxseq = 0
end
...
0
votes
1answer
133 views
Ruby on Rails - how to invoke a ruby class from console?
I have this class:
module App
module Tools
module Pollers
class Kpi
...
I am in the rails console and I am trying to do something like this:
x = App::Tools::Pollers::Kpi.new
...
0
votes
1answer
246 views
How do I query for a specific MongoDB collection field inside Rails Console?
I have a Rails 3 app using MongoDB, with Mongoid as the ORM. I'd like to query for a specific field within a collection.
To query for all records of a particular collection I use User.all.to_a, as an ...
0
votes
0answers
49 views
Rails method takes too long, gets killed. What are my options?
I have a method I need run only sporadically but it takes about 15 mins to update all the fields in the table so it gets killed on our online server.
I would run this from the CLI, not the actual web ...
0
votes
0answers
151 views
Difference between memory and database calls
Ok, my main problem on my first project was speed. I don't know which is which, between memory and database calls. I have two questions:
How can I differentiate a database call from a memory call ...
3
votes
0answers
225 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 ...
1
vote
1answer
399 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 ...
4
votes
1answer
628 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 ...
1
vote
2answers
338 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
1answer
300 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
255 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 ...
2
votes
3answers
653 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 ...
0
votes
1answer
351 views
save a text from text file through rails console
like in title - I want to save a content of a text file in database (and couple other things) through rails console - how to do it?
I'm entering rails console by:
rails c
and then I should do
...
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
152 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
380 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 ...
0
votes
2answers
518 views
switch database stage in rails
It seems that the database used to display the data is different from the one I can work with in rails console.
I have tried running rails dbconsole and I get:
Couldn't find database client: ...
1
vote
2answers
153 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 ...
0
votes
1answer
104 views
Why rails console did not fire up on ubuntu with rails 3.1.3
When type rails console under the deploy subdir on ubuntu, instead of firing up the console, it displays help message for rails:
Usage:
rails new APP_PATH [options]
Options:
-r, [--ruby=PATH] ...
1
vote
1answer
501 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 ...
0
votes
0answers
169 views
how does rails console interact with model
I wanted to understand how rails console interacts directly with the model classes without getting routed via controllers.
And if the same mechanism can be used for integrating rails applications ...
0
votes
3answers
330 views
rails console get all
I have a very simple question about rails console, if I want to get a single account I do this:
y Account.find_by_zipcode("XXXXX")
This returns me only one account, what if I want to get all the ...
0
votes
2answers
510 views
How to access a namespace method in Ruby console?
Found this post Include namespace in Rails 3.1 console but it doesn't seem to work.
The following lib/task defined and it works from the command line: rake namespace_name:task_name.
How to call a ...
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 ...
0
votes
0answers
263 views
Rails character encoding different between rake & console
I have a rake task that pulls some data from a MS SQL db, and recently I noticed that some special characters get encoded as a question mark '?'. While trying to dig into this issue, I realized that I ...
0
votes
0answers
40 views
Is there any way to check if we are loading the environment from the console in Rails? [duplicate]
Possible Duplicate:
How can I detect if my code is running in the console in Rails 3?
I'm building a rails 3.1 application which uses a background process to fetch data using an initializer ...
0
votes
1answer
362 views
Rails 3,how to update a habtm table in the rails console?
I have Awards - Awards_Categories - Categories in a HABTM association.
I updated my routes so that
resources :categories do
resources :awards
end
I have two awards that didn't have a category ...
0
votes
0answers
282 views
Ruby 1.9.1 Console - invalid byte sequence in UTF-8
I cannot use Rails console. Anything that I write there I get the following error.
Any idea?
/Users/macuser/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/irb/ruby-lex.rb:773:in ...
2
votes
1answer
425 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 ...
0
votes
1answer
116 views
My Rails console session went wrong and now my rspec tests fail?
I am using Postgres 9.1, Rails 3.1.3 and Ruby 1.9.3.
I tried some things out in rails console --sandbox and then I ventured to rails console.
On entering Employee.create!(a whole lot of data), I ...
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 ...
1
vote
2answers
74 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
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
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 ...
0
votes
0answers
559 views
Rails.application.load_seed works but rake db:seed doesn't
What is the difference between rake environment and console environment?
I am trying to seed mysql database using csv file with rails 3.1.0.
It used to be a piece of cake with ActiveRecord::Fixtures. ...
