Skip to content

Instantly share code, notes, and snippets.

@elikem
Last active October 18, 2019 06:22
Show Gist options
  • Select an option

  • Save elikem/87df3c1f7d7c3a980509 to your computer and use it in GitHub Desktop.

Select an option

Save elikem/87df3c1f7d7c3a980509 to your computer and use it in GitHub Desktop.
Gemfile -- Favorite Gems
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