Skip to content

Instantly share code, notes, and snippets.

@pvalena
Created January 18, 2022 03:46
Show Gist options
  • Save pvalena/dac638543855de02ee3b59fec192e4bb to your computer and use it in GitHub Desktop.
Save pvalena/dac638543855de02ee3b59fec192e4bb to your computer and use it in GitHub Desktop.
$ nano Gemfile
GNU nano 5.8 Gemfile
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem 'rails', '~> 6.1.4'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4'
# Use Puma as the app server
gem 'puma'
# Use SCSS for stylesheets
#gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
#gem 'webpacker', '~> 5.0'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.4', require: false
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 4.1.0'
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master>
# gem 'rack-mini-profiler', '~> 2.0'
gem 'listen', '~> 3.3'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/r>
gem 'spring'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 3.26'
gem 'selenium-webdriver'
# Easy installation and use of web drivers to run system tests with browsers
# gem 'webdrivers'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
<mock-chroot> sh-5.1$ bundle --local
Resolving dependencies...
Using rake 13.0.6
Using concurrent-ruby 1.1.5
Using minitest 5.15.0
Using zeitwerk 2.4.2
Using builder 3.2.4
Using erubi 1.10.0
Using racc 1.6.0
Using crass 1.0.4
Using rack 2.2.3
Using nio4r 2.5.2
Using websocket-extensions 0.1.2
Using regexp_parser 2.0.0
Using marcel 1.0.1
Using ffi 1.13.1
Using childprocess 1.0.1
Using thor 1.1.0
Using rubyzip 2.3.0
Using spring 2.1.1
Using sqlite3 1.4.2
Using turbolinks-source 5.2.0
Using i18n 1.8.7
Using public_suffix 4.0.6
Using nokogiri 1.12.5
Using rack-test 1.1.0
Using puma 4.3.6
Using sprockets 4.0.2
Using websocket-driver 0.7.5
Using bindex 0.8.1
Using selenium-webdriver 3.142.7
Using loofah 2.10.0
Using addressable 2.7.0
Using xpath 3.2.0
Using byebug 11.1.3
Using mini_mime 1.1.0
Using method_source 1.0.0
Using mail 2.7.1
Using capybara 3.34.0
Using bundler 2.2.22
Using rb-inotify 0.10.1
Using turbolinks 5.1.1
Using listen 3.5.1
Using rails-html-sanitizer 1.4.2
Using msgpack 1.1.0
Using tzinfo 2.0.4
Using bootsnap 1.4.7
Using activesupport 6.1.4
Using rails-dom-testing 2.0.3
Using globalid 0.4.2
Using activemodel 6.1.4
Using jbuilder 2.11.2
Using actionview 6.1.4
Using activejob 6.1.4
Using activerecord 6.1.4
Using actionpack 6.1.4
Using actioncable 6.1.4
Using activestorage 6.1.4
Using actionmailer 6.1.4
Using actionmailbox 6.1.4
Using actiontext 6.1.4
Using railties 6.1.4
Using sprockets-rails 3.2.2
Using rails 6.1.4
Using web-console 4.1.0
Bundle complete! 13 Gemfile dependencies, 63 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment