Questions tagged [rbp]

Rails best practices is a code metric tool used to check the quality of Rails codes.

rails_best_practices is a code metric tool to check the quality of rails codes.

It supports following ORM/ODMs:

  • activerecord
  • mongoid
  • mongomapper

Following template engines:

  • erb
  • haml
  • slim
  • rabl

rails_best_practices works well only in ruby 1.9.2 and ruby 1.9.3 so far.

See also:

Related tags:

2 questions
3
votes
1 answer

Rails Best Practices false positive unused methods

I'm using Rails best practices to validate my own code. ./app/controllers/news_items_controller.rb:2 - remove unused methods (NewsItemsController#new) ./app/controllers/news_items_controller.rb:2 - remove unused methods…
Loïc Faure-Lacroix
  • 13,220
  • 6
  • 67
  • 99
0
votes
1 answer

C program stores function parameters from $rbp+4 in memory? My check failed

I was trying to learn how to use rbp/ebp to visit function parameters and local variables on ubuntu1604, 64bit. I've got a simply c file: #include int main(int argc,char*argv[]) { printf("hello\n"); return argc; } I compiled it…
Hind Forsum
  • 9,717
  • 13
  • 63
  • 119