0
votes
1answer
79 views

Command to open new console with ruby script after running selenium server

I am trying to run a script consisting of different commands which are : 1) system "bundle exec rails s -e test -d" 2) system "bundle exec selenium-rc" 3) system "bundle exec rspec ...
0
votes
3answers
163 views

Equivalence of Rails console for Node.js

I am trying out Node.js Express framework, and looking for plugin that allows me to interact with my models via console, similar to Rails console. Is there such a thing in NodeJS world? If not, how ...
1
vote
3answers
625 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 ...
0
votes
1answer
522 views

undefined method `y` for main: Object in rails console

I always used the 'y' method to get my results cleaned up a bit in my rails console. However it doesn't seem to work anymore. I have results to be found, and I can view the result, but just not in a ...
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) ...
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 ...
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 ...
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 ...
6
votes
2answers
715 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?