Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 11 additions & 12 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,25 @@ git_source(:github) do |repo_name|
"https://github.com/#{repo_name}.git"
end

ruby '3.1.4'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '5.2.3'
# Use sqlite3 as the database for Active Record
gem 'pg', '0.21.0'
gem 'rails', '7.1.3.4'
# Use Puma as the app server
gem 'puma', '3.12.6'
gem 'puma', '6.4.2'
# Use SCSS for stylesheets
gem 'sass-rails', '5.0.6'
gem 'sass-rails', '>=5.0.5'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '3.2.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '4.2.2'
gem 'coffee-rails', '5.0.0'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '5.0.1'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '2.7.0'
gem 'jbuilder', '2.11.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
Expand All @@ -37,14 +36,14 @@ 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]
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '2.15.4'
gem 'selenium-webdriver', '3.6.0'
gem 'capybara', '3.39.0'
gem 'selenium-webdriver', '4.8.6'
end

group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '3.5.1'
gem 'listen', '3.1.5'
gem 'web-console', '4.2.0'
gem 'listen', '3.9.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', '2.0.2'
gem 'spring-watcher-listen', '2.0.1'
Expand All @@ -53,4 +52,4 @@ end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

gem 'contentstack', '~> 0.2.1'
gem 'contentstack', '~> 0.8.0'
Loading