Tagged Questions
0
votes
0answers
40 views
IRB subsession exit hangs if IRB::Abort/CTRL+C received previously
I created a script to log IRB input & output, per assigned task (in this case, a support ticket to development). This script retains a few select instance variables, but wipes the rest. I wanted ...
-7
votes
2answers
36 views
Did I break my version of ruby?
I was doing some math stuff in my console with lat/lon, trying to get the logic right for a distance formula. I got it, but now every time I try and divide an integer by a larger integer, it returns ...
1
vote
1answer
85 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
2answers
58 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, ...
0
votes
1answer
30 views
rails extract variable from hashie returned from a gem
I'm using a gem called Desk to return data from desk.com's API. When I run Desk.customers(:custom_external_id => temp.id) it returns a lovely set of data.
I'm looking for the integer 71095620 ...
1
vote
3answers
141 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 ...
0
votes
1answer
64 views
Trouble accessing column value rails console
I'm trying to access the integer stored in a column called totalVotes in my UserVotes table but keep getting a No Method Error
I have been trying to debug from the console:
1.9.3-p327 :006 > ...
0
votes
2answers
167 views
Rails Console not loading? y (Errno::ENOENT)
I'm all of the sudden getting the follow error message when I try to load the rails console. I just recently switched databases to postgres, which has given me a slew of problems (although I must ...
1
vote
2answers
88 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 ...
0
votes
1answer
97 views
What's the difference between using a delayed_job and running rails console
I need to get a long running crawling task done on the server side, so I have tried to use a delayed_job for it, however, I've ran into problem while using the delayed_job with Capybara. So, I run the ...
1
vote
3answers
606 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 ...
2
votes
1answer
66 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
...
0
votes
1answer
60 views
Rails: saving record from console with Timezone
I created a new object and saved the same through the console. I noticed that created_at and updated_at columns were in GMT format but when I do a Time.now in my console I get the time in my time ...
0
votes
1answer
84 views
Rails 2.3.14 - to_datetime returns UTC time
I have a following issue - I'm not using config.time_zone, so it should default to my server time zone (if I understand it correctly).
And in my rails console when I do something like
'Oct 12, ...
0
votes
1answer
60 views
Validation works in the browser but doesn't work in the console. Why?
I have the following custom validation:
app/validators/clock_able_validator.rb
class ClockAbleValidator < ActiveModel::Validator
def validate(record)
time_tracker = time_tracker(record)
...
1
vote
2answers
88 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
1answer
131 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
...
1
vote
2answers
330 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.
0
votes
1answer
345 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
...
1
vote
1answer
496 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
2answers
507 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
261 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 ...
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
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
...
2
votes
4answers
695 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 ...
1
vote
1answer
224 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 ...
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
...
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 ...


