An open API service indexing awesome lists of open source software.

https://github.com/arunkumar-ms/ror


https://github.com/arunkumar-ms/ror

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

irb -> ruby env
rails server -> to start app
ruby -c debug file

for rails debug
gem 'pry-rails', group: [:development, :test]

require "pry"
binding.pry

cucumber --format json_pretty > cucumber.json
feature
==> .feature
==> step_definition

# debug
# ruby -r debug filename
# n - step next
# s - step in
# c - continue
# l - list the source code
# b 4 -> jump to break point
# p variable -> prints the variable c
# v l -> list all local variable
# # single line comments
# =begin
# multi line comments
# =end