Last active
October 18, 2019 06:22
-
-
Save elikem/87df3c1f7d7c3a980509 to your computer and use it in GitHub Desktop.
Gemfile -- Favorite 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
| gem "active_link_to" | |
| gem "activerecord-import" | |
| gem "bootsnap", ">= 1.4.2", require: false | |
| gem "csv" # Use to write to CSV | |
| gem "dotenv-rails" | |
| gem "devise" | |
| gem "excon" | |
| gem "flutie" | |
| gem "friendly_id" | |
| gem "fog" | |
| gem "gon" | |
| gem "jbuilder", "~> 2.7" | |
| gem "pagy" | |
| gem "pg", ">= 0.18", "< 2.0" | |
| gem "puma", "~> 3.11" | |
| gem "pundit" | |
| gem "rails", "~> 6.0.0" | |
| gem "sass-rails", "~> 5" | |
| gem "slim-rails" | |
| gem "smarter_csv" # Use to import CSV into rails | |
| gem "turbolinks", "~> 5" | |
| gem "webpacker", "~> 4.0" | |
| group :development, :test do | |
| gem "awesome_print" | |
| gem "byebug", platforms: [:mri, :mingw, :x64_mingw] | |
| end | |
| group :development do | |
| gem "annotate" | |
| gem "better_errors" | |
| gem "binding_of_caller" | |
| gem "bullet" | |
| gem "forgery" | |
| gem "guard" | |
| gem "guard-annotate" | |
| gem "guard-rails" | |
| gem "listen", ">= 3.0.5", "< 3.2" | |
| gem "meta_request" | |
| gem "peek" | |
| gem "peek-pg" | |
| gem "peek-performance_bar" | |
| gem "peek-rblineprof" | |
| gem "peek-gc" | |
| gem "prettier" # Use for linting JS | |
| gem "rails-erd" | |
| gem "rufo" | |
| gem "smusher" | |
| gem "spring" | |
| gem "spring-watcher-listen", "~> 2.0.0" | |
| gem "web-console", ">= 3.3.0" | |
| gem "xray-rails" | |
| end | |
| group :test do | |
| gem "capybara", ">= 2.15" | |
| gem "selenium-webdriver" | |
| gem "webdrivers" | |
| end | |
| gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment