https://github.com/arunkumar-ms/ror
https://github.com/arunkumar-ms/ror
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arunkumar-ms/ror
- Owner: Arunkumar-MS
- Created: 2018-07-02T04:53:01.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-04T10:51:37.000Z (almost 8 years ago)
- Last Synced: 2025-01-07T03:12:45.024Z (over 1 year ago)
- Language: Ruby
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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