-
Notifications
You must be signed in to change notification settings - Fork 286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adds bullet and rails_db gem #66
base: master
Are you sure you want to change the base?
Conversation
rails_db is already listed in the database section. |
@@ -76,6 +76,8 @@ The goal is to help every Rails developer to build an awesome Rails product/serv | |||
* [ActsAsTaggableOn](https://github.com/mbleigh/acts-as-taggable-on) - A tagging plugin for Rails applications that allows for custom tagging along dynamic contexts. | |||
* [closure_tree](https://github.com/mceachen/closure_tree) - Easily and efficiently make your ActiveRecord models support hierarchies. | |||
* [ActionStore](https://github.com/rails-engine/action-store) - Store different kind of actions (Like, Follow, Star, Block ...) in one table via ActiveRecord Polymorphic Association. | |||
* [Bullet](https://rubygems.org/gems/bullet) - The Bullet gem is designed to help you increase your application's performance by reducing the number of queries it makes, help to kill N+1 queries and unused eager loading. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the link to https://github.com/flyerhzm/bullet is better than rubygems'.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ohh yeah, sure i will update it Thanks @meganemura 👍 :
@@ -76,6 +76,8 @@ The goal is to help every Rails developer to build an awesome Rails product/serv | |||
* [ActsAsTaggableOn](https://github.com/mbleigh/acts-as-taggable-on) - A tagging plugin for Rails applications that allows for custom tagging along dynamic contexts. | |||
* [closure_tree](https://github.com/mceachen/closure_tree) - Easily and efficiently make your ActiveRecord models support hierarchies. | |||
* [ActionStore](https://github.com/rails-engine/action-store) - Store different kind of actions (Like, Follow, Star, Block ...) in one table via ActiveRecord Polymorphic Association. | |||
* [Bullet](https://rubygems.org/gems/bullet) - The Bullet gem is designed to help you increase your application's performance by reducing the number of queries it makes, help to kill N+1 queries and unused eager loading. | |||
* [Rails_db](https://github.com/igorkasyanchuk/rails_db) - Rails Database Viewer and SQL Query Runner https://youtu.be/TYsRxXRFp1g Quick way to inspect your Rails database, see content of tables, export them to CSV, EXPLAIN SQL and run SQL queries. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this gem is already on the database section, maybe you can organize some gems from active_record to database part?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ashjambhulkar could you help to check?
Both bullet and rails db gem are very helpful in active record evaluations.