forked from fixin.me/fixin.me
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			961 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			961 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
source "https://rubygems.org"
 | 
						|
 | 
						|
ruby "2.7.7"
 | 
						|
 | 
						|
gem "rails", "~> 7.0.4", ">= 7.0.4.2"
 | 
						|
 | 
						|
gem "sprockets-rails"
 | 
						|
 | 
						|
gem "mysql2", "~> 0.5"
 | 
						|
 | 
						|
gem "puma", "~> 5.0"
 | 
						|
 | 
						|
gem "importmap-rails"
 | 
						|
gem "turbo-rails"
 | 
						|
 | 
						|
gem "sassc-rails"
 | 
						|
 | 
						|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
 | 
						|
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
 | 
						|
 | 
						|
gem "devise"
 | 
						|
 | 
						|
group :development, :test do
 | 
						|
  # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
 | 
						|
  gem "debug", platforms: %i[ mri mingw x64_mingw ]
 | 
						|
end
 | 
						|
 | 
						|
group :development do
 | 
						|
  gem "byebug"
 | 
						|
 | 
						|
  # Use console on exceptions pages [https://github.com/rails/web-console]
 | 
						|
  gem "web-console"
 | 
						|
 | 
						|
  # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
 | 
						|
  # gem "rack-mini-profiler"
 | 
						|
end
 | 
						|
 | 
						|
group :test do
 | 
						|
  # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
 | 
						|
  gem "capybara"
 | 
						|
  gem "selenium-webdriver"
 | 
						|
  gem "webdrivers"
 | 
						|
end
 |