Pry is an alternative to the standard Ruby interpreter, IRB.

learn more… | top users | synonyms

2
votes
0answers
29 views

vim-ruby-debugger style breakpoints with Pry in Vim

Right now, when I want a breakpoint in vim or Sublime Text, I drop a line like the following into the code: binding.pry if Rails.env.test? Pry (and its associated plugins) provide a nice ...
0
votes
0answers
12 views

before_session hook failed: Pry::CommandError: Cannot locate this method: load.

Loading up the Pry REPL in a Ruby script I get this odd error: before_session hook failed: Pry::CommandError: Cannot locate this method: load. ...
3
votes
1answer
38 views

Is there a pry debug setup that works with ruby 2.0?

I'm using ruby 2.0.0-p195 on OSX. pry-debugger does not work (step/continue/next all appear to work like step). Is there a pry debugging gem that works with ruby 2.0? update: pry-debugger and ...
0
votes
1answer
26 views

Rspec model test with Fabricator & let(…) format. Console shows no data in databse but there is.

I don't understand why it returns empty when I type "Video.all" first time in console after it did not pass the test, but if I specify them like "video" & "video2", and then I type "Video.all" it ...
0
votes
2answers
34 views

Send an object using pry?

I am trying to send an object (user) to NotificationsMailer like this: ...
2
votes
5answers
159 views

Start ruby debugger if rspec test fails

Often, when a test fails, I spend quite sometime trying to figure out the what caused it to fail. It'd be useful if RSpec could kick off a Ruby debugger when the test fails, so that I can inspect the ...
0
votes
1answer
39 views

Ruby, pry: Can I add something to the command `pry example.rb` so pry automatically goes interactive when it finishes executing the script?

Pry goes into interactive mode if it encounters an exception (eg if you just put an undefined variable 'x' at the end of the script). (Also if, inside the script itself you require 'pry' and put ...
1
vote
0answers
58 views

Get pry to display characters like [äöüßÄÖÜß] (utf-8 encoding)? (Possibly Windows-specific issue?)

[All the scripts I'm working with with these German characters are in UTF-8 themselves, have #encoding: utf-8 at the top (and Encoding.external_default = 'utf-8', not that that's really relevant I ...
0
votes
2answers
28 views

How to remote debug a rails 3.0.2

I have a bug in my application which is only happening on 'stage' but not locally. I would like to use a debugger and set a breakpoint so I can debug the application on stage. Locally I use pry and ...
2
votes
2answers
74 views

binding.pry in BasicObject

pry would be great for debugging a subclass of BasicObject ! https://github.com/pry/pry says that pry has: "Exotic object support (BasicObject instances..." But how to do that? As can be expected a ...
0
votes
0answers
44 views

inserting binding.pry changes which rspec tests pass

tl;dr: I was trying to test that the correct items were added to an array. When I ran the test, it said that things were being added to the array indiscriminately. However, when I put a binding.pry ...
0
votes
1answer
93 views

factory girl nested attributes

In rails console,I run this command bill = Bill.last bill.bill_extras The result is like that. [#<BillExtra id: 141, bill_id: 621, content: "extra fee", prize: ...
0
votes
1answer
110 views

NameError: undefined local variable or method `app' for main:Object

I would like to know if when using pry is possible to have access to the variable app? As an example, when I try to access the root_path I get the following error: [14] pry(main)> app.root_path ...
0
votes
1answer
77 views

How do I configure Guard to skip the Pry prompt and just run my changed test?

I am working on an in-house Rails application running Rails (2.3.18) on Ruby (1.8.7) with tests written in Test::Unit (2.5.4) and Shoulda (2.10.2) Guard (1.6.2) runs all the tests on startup via ...
0
votes
1answer
51 views

pry not available in the irb debugger

I want to use pry from within irb/debugger, so I can: invoke step, next, continue, finish inside of pry still be able to set breakpoints, etc. What I did is the following: $ gem install pry $ gem ...
1
vote
1answer
59 views

Debugging a gem in ruby

I have a gem, nanoc, which I'd like to debug. Its command line, nanoc executes the following script (in /.rvm/gems/ruby-1.9.2-p290/bin) #!/usr/bin/env ruby # # This file was generated by RubyGems. # ...
0
votes
3answers
34 views

Assigning an exception to a variable in pry

So I'm trying to use pry to debug a method_missing in my Rails app and am getting a: [5] pry(#<VoyageArrival>)> puts e NameError: undefined local variable or method `e' for ...
0
votes
1answer
47 views

opening the pry console in sandbox mode

I recently found pry and I find it to be a great replacement for irb. I figured I'd use it as replacement for my ROR development and debugging. I know that to open pry with a rails app you simply ...
1
vote
2answers
34 views

How can I start Pry in Rails/Ruby automatically when any exception occurs, at the location of the raised exception

How can I start Pry in Rails/Ruby automatically when any exception occurs, at the location of the raised exception? I have a hard to debug problem, that I can't seem to trace back to it's source, it ...
1
vote
1answer
37 views

Pry: alias for whereami command

Is there a shorthand for the whereami command in Pry ? If not, is there a way to define an alias for Pry commands in config like .pryrc ?
1
vote
2answers
120 views

Pry: show me the stack

Using Pry in Rails, when I hit a breakpoint in the code binding.pry I want to know how I got here, who called me, who called them, etc. But oddly I don't see that command. Does anyone know?
0
votes
2answers
54 views

Does pry or irb allow you to work interactively from inside a block?

I know that pry allows you to "cd" into other scopes. pry(main)> cd Object pry(Object)> ls constants: ARGF Encoding GC NIL ...
1
vote
3answers
90 views

Debugging ruby code in irb/pry

Is there a way to find out more information of what a method does in irb. Example would be in irb/pry I could do something like this: strigy_object = "I am string" Now if i type stringy_object. ...
0
votes
1answer
59 views

Launching Pry on the command line errors out

So this is what i get when I launch the pry command at my Zsh. I've tried reinstalling using rvm reinstall 1.9.3 rvm repair all and even rvm reinstall all --force At a loss as to how to get rid ...
0
votes
2answers
143 views

Jruby: using Pry with JRuby (and JRubyFx)

What is the correct way to use Pry gem with JRuby and JRubyFx on windows? I am using the JRubyFx (a JavaFX JRuby binding - https://github.com/jruby/jrubyfx) and for my test I am using this example ...
1
vote
1answer
194 views

Using binding.pry in Rails app's view or partial

Pry is quite amazing in my R3 app. But any chance I can use <% binding.pry %> in a view or a partial like I did previously with <% debugger %> This doesn't seem to work. Thanks.
2
votes
1answer
190 views

How to integrate pry with RubyMine IRB console?

How to use pry to debug rails app instead of RubyMine IRB console? Shall I just add pry-rails and pry to my gemfile?
3
votes
1answer
89 views

Guard-rails not providing REPL for binding.pry

I'm using guard-rails to run my rails server, my problem is I can't access the REPL when I add binding.pry I just get From: /home/martinr/code/app/controllers/tools_controller.rb @ line 2 ...
0
votes
1answer
51 views

How to I access the request object when debugging with pry?

I am trying to figure out what is going on in the admin/topics controller in the spree_easy contact gem. There is this bit of code in the controller: new_action.response do |wants| wants.html ...
0
votes
1answer
50 views

pry: artifacts on ctrl-arrow (ubuntu)

I installed ruby using rvm and I use it in a RoR project. the problem is that when I start pry inside that project, I'm not able to use ctrl-arrows shortcuts> Instead of getting a word left/right, it ...
0
votes
1answer
119 views

How to customize the colors of Ruby pry gem?

See the below image. I want to know whether there is a way to change the colors? Thanks. Edit: My OS is Win7 64 bit enterprise. I'm using Pry in a PowerShell command line windows, which was set ...
0
votes
1answer
98 views

How to paginate awesome_print results inside pry

I'm using awesome_print gem to display output from pry to look pretty. Since, awesome_print uses line breaks, long outputs like ap html.chapters.order("position ASC") only shows the end part of the ...
1
vote
2answers
82 views

Weird bug navigating multiline command history in pry

When I enter a string that is too long for the console width into a pry or regular irb console it wraps as usual, see below (Using pry in OS X 10.8.2 terminal.app): However when I try to replay the ...
0
votes
1answer
48 views

How can I cd to a class/object in a .pryrc file?

I want the .pryrc for a particular project to cd to a class context that will be the context for 99% of all pry sessions in that project. just doing: cd MyModule doesn't work: Error loading ...
0
votes
1answer
35 views

How to list all the methods in a Module using Pry navigation?

The feature that Pry provides using 'cd' to change the content and using 'ls' to show all the methods and variable in it. My question is how can I use it in Module, like show all the method in Math ...
0
votes
1answer
154 views

How to use pry to access a Rack middleware instance?

I'm new to using Pry, and try as I might, I can't find the right commands to access a rack middleware instance that's being run with a Sinatra app. I've set binding.pry in the part of the app where I ...
2
votes
1answer
108 views

how do I set the external encoding for pry

IRB has the -E flag for setting the external encoding but it doesn't work in pry: /usr/local/lib/ruby/gems/1.9.1/gems/pry-0.9.10/lib/pry/repl_file_loader.rb:16:in `initialize': No such file: ...
0
votes
1answer
103 views

How to clean rails console output when using pry-rails?

I have in my Gemfile pry-rails gem. I would like to use pry as rails console but without that text below. How to clean my rails console output, now I receive a lot of unnecessary text: >> ...
2
votes
1answer
152 views

How to use Pry with Cucumber / Capybara?

What should I do to use Pry for debuging my Cucumber steps? Here is an example. When 'I download a PDF via "$label"' do |label| old_body = page.body click_link(label) ...
0
votes
1answer
83 views

trying to debug a homebrew script with pry

Gem list shows: *** LOCAL GEMS *** bundler (1.1.5) coderay (1.0.8) method_source (0.8.1) pry (0.9.10) slop (3.3.3) yet, it seems that if I go into any homebrew file, and do: require 'pry' I get: ...
13
votes
4answers
292 views

Does an (experimental) class browser exist for Ruby?

Does an (experimental) class browser exist for Ruby? I am talking about a class browser/editor combination similar to that of most Smalltalk implementations (i.e. focused on [runtime] classes/objects ...
2
votes
0answers
39 views

Ruby: Difference between Topic.methods and Topic#methods [duplicate]

Possible Duplicate: Difference between . and # Pry gem offers the ability to see all the methods on an object by entering ls -m in the pry console. When I do ls -m on the Topic model, it ...
1
vote
1answer
51 views

PRY Gem Issue When Loading Many Records

I am having an issue with using the PRY console for Ruby. When I fetch many records (e.g. Account.all) the output fills the page, and forces me to scroll to the end where I find an (END). However I ...
-1
votes
2answers
139 views

Pry: location of .pryrc [closed]

I'm trying to customize pry, which I need to do in the pryrc file. Problem is that I can't find it. The docs say that it's in the home directory, but I don't see it in there. One problem might be ...
1
vote
1answer
178 views

How to run a file in pry that takes arguments

I can start a pry session of a command line app like this pry -r ./todo.rb However, if I want to call the list function pry -r ./todo.rb list I'm getting an error message. Without pry, I call ...
1
vote
3answers
897 views

Why I get syntax error in Rails console if my ruby version is correct?

I added gem 'pry-rails' and when i run rails console i receive following error: Loading development environment (Rails 3.2.6) ...
1
vote
1answer
83 views

In ruby debug, only step through application/project files and skip framework files?

I'm using pry-debugger with debugger. When stepping through the execution stack, I would like to skip over framework and library files and only view code in my project (a rails app). Is there a way ...
2
votes
1answer
154 views

Pry command not available (Linux Mint Maya)

When I enter pry to start the pry gem shell my terminal (Gnome 3.4.1.1) responds: $ pry No command 'pry' found, did you mean: Command 'pr' from package 'coreutils' (main) pry: command not found I ...
3
votes
1answer
1k views

How to run pry on Debian Linux for ARM

I installed rvm and Ruby 1.9.3p194 on a Raspberry Pi using Debian Linux. When I installed pry using gem install pry, everything installed perfectly but typing pry in a terminal didn't work: ...
0
votes
1answer
151 views

run minitest programatically

I've got this code (in pry): class Hash def invert_by_array each.with_object({}) {|(key,value), obj| value.each do |element| obj[element] = key end } end end require ...

1 2