Last active
March 1, 2018 11:32
-
-
Save valeth/f1a5e7a7a6ac024c6e9253a2dd381fc9 to your computer and use it in GitHub Desktop.
Useful ruby gems
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Event scheduling | |
gem "rufus-scheduler" | |
# Retrying with exponential backoff | |
gem "retriable" | |
# RSS/Atom feed parsing | |
gem "feedjira" | |
# Markdown processing | |
gem "redcarpet" | |
gem "mailcatcher" | |
# Interactive console | |
gem "pry" | |
gem "pry-doc" | |
gem "pry-rails" | |
# Authentication | |
gem "devise" | |
# Authorization | |
gem "cancancan" | |
# Role management (Admin, User, etc.) | |
gem "rolify" | |
# More concise logs | |
gem "lograge" | |
# Administration dashboard | |
gem "rails_admin" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment