|
1 | 1 | source 'https://rubygems.org'
|
| 2 | +git_source(:github) { |repo| "https://github.com/#{repo}.git" } |
2 | 3 |
|
3 |
| -git_source(:github) do |repo_name| |
4 |
| - repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") |
5 |
| - "https://github.com/#{repo_name}.git" |
6 |
| -end |
7 |
| - |
| 4 | +ruby '2.7.3' |
8 | 5 |
|
9 |
| -# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' |
10 |
| -gem 'rails', '~> 5.2' |
11 |
| -# Use postgresql as the database for Active Record |
12 |
| -gem 'pg', '>= 0.18', '< 2.0' |
| 6 | +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main' |
| 7 | +gem 'rails', '~> 6.1.4' |
| 8 | +# Use sqlite3 as the database for Active Record |
| 9 | +gem 'pg' |
13 | 10 | # Use Puma as the app server
|
14 |
| -gem 'puma', '~> 3.7' |
| 11 | +gem 'puma', '~> 5.0' |
15 | 12 | # Use SCSS for stylesheets
|
16 |
| -gem 'sass-rails', '~> 5.0' |
17 |
| -# Use Uglifier as compressor for JavaScript assets |
18 |
| -gem 'uglifier', '>= 1.3.0' |
19 |
| -# See https://github.com/rails/execjs#readme for more supported runtimes |
20 |
| -# gem 'therubyracer', platforms: :ruby |
21 |
| - |
22 |
| -# Use CoffeeScript for .coffee assets and views |
23 |
| -gem 'coffee-rails', '~> 4.2' |
| 13 | +gem 'sass-rails', '>= 6' |
| 14 | +# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker |
| 15 | +gem 'webpacker', '6.0.0.rc.6' |
24 | 16 | # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
25 | 17 | gem 'turbolinks', '~> 5'
|
26 | 18 | # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
27 |
| -gem 'jbuilder', '~> 2.5' |
| 19 | +gem 'jbuilder', '~> 2.7' |
28 | 20 | # Use Redis adapter to run Action Cable in production
|
29 | 21 | # gem 'redis', '~> 4.0'
|
30 |
| -# Use ActiveModel has_secure_password |
| 22 | +# Use Active Model has_secure_password |
31 | 23 | # gem 'bcrypt', '~> 3.1.7'
|
32 | 24 |
|
33 |
| -gem "react_on_rails", "11.1.7" |
34 |
| -gem "webpacker", "~> 3.5" |
| 25 | +# Use Active Storage variant |
| 26 | +# gem 'image_processing', '~> 1.2' |
35 | 27 |
|
36 |
| -# Use Capistrano for deployment |
37 |
| -# gem 'capistrano-rails', group: :development |
| 28 | +# Reduces boot times through caching; required in config/boot.rb |
| 29 | +gem 'bootsnap', '>= 1.4.4', require: false |
38 | 30 |
|
39 | 31 | group :development, :test do
|
40 | 32 | # Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
41 | 33 | gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
42 |
| - # Adds support for Capybara system testing and selenium driver |
43 |
| - gem 'capybara', '~> 2.13' |
44 |
| - gem 'selenium-webdriver' |
45 | 34 | end
|
46 | 35 |
|
47 | 36 | group :development do
|
48 |
| - # Access an IRB console on exception pages or by using <%= console %> anywhere in the code. |
49 |
| - gem 'web-console', '>= 3.3.0' |
50 |
| - gem 'listen', '>= 3.0.5', '< 3.2' |
| 37 | + # Access an interactive console on exception pages or by calling 'console' anywhere in the code. |
| 38 | + gem 'web-console', '>= 4.1.0' |
| 39 | + # Display performance information such as SQL time and flame graphs for each request in your browser. |
| 40 | + # Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md |
| 41 | + gem 'rack-mini-profiler', '~> 2.0' |
| 42 | + gem 'listen', '~> 3.3' |
51 | 43 | # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
52 | 44 | gem 'spring'
|
53 |
| - gem 'spring-watcher-listen', '~> 2.0.0' |
| 45 | +end |
| 46 | + |
| 47 | +group :test do |
| 48 | + # Adds support for Capybara system testing and selenium driver |
| 49 | + gem 'capybara', '>= 3.26' |
| 50 | + gem 'selenium-webdriver' |
| 51 | + # Easy installation and use of web drivers to run system tests with browsers |
| 52 | + gem 'webdrivers' |
54 | 53 | end
|
55 | 54 |
|
56 | 55 | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
57 | 56 | gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
58 | 57 |
|
| 58 | +gem "react_on_rails", "~> 12.5.2" |
| 59 | + |
| 60 | +gem 'mini_racer', platforms: :ruby |
59 | 61 | gem 'mini_racer', platforms: :ruby
|
0 commit comments