Skip to content

Commit e5c6b46

Browse files
committed
Rails 7 compatible
1 parent d7a0a01 commit e5c6b46

File tree

10 files changed

+154
-154
lines changed

10 files changed

+154
-154
lines changed

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby-2.7.2
1+
ruby-3.0.3

Gemfile

+6-4
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,22 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
88
# development dependencies will be added by default to the :development group.
99
gemspec
1010

11+
gem "activeentity", path: "../activeentity"
12+
1113
# Declare any dependencies that are still in development here instead of in
1214
# your gemspec. These might include edge Rails or gems from your path or
1315
# Git. Remember to move these dependencies to your gemspec before releasing
1416
# your gem to rubygems.org.
1517

16-
gem "rails", "~> 6.1.0"
18+
gem "rails", "~> 7.0.0"
1719
gem "sqlite3"
1820

1921
# To support ES6
20-
gem "sprockets", "~> 4.0.0.beta5"
22+
gem "sprockets", "~> 4.0"
2123
# Support ES6
2224
gem "babel-transpiler"
2325
# Use CoffeeScript for .coffee assets and views
24-
gem "coffee-rails", "~> 4.2"
26+
# gem "coffee-rails", "~> 4.2"
2527
# Use SCSS for stylesheets
2628
gem "sassc-rails"
2729
# Use Uglifier as compressor for JavaScript assets
@@ -36,7 +38,7 @@ gem "turbolinks"
3638
gem "puma"
3739

3840
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
39-
gem "listen", ">= 3.0.5", "< 3.2"
41+
gem "listen", ">= 3.2"
4042
gem "web-console", group: :development
4143
# Call "byebug" anywhere in the code to stop execution and get a debugger console
4244
gem "byebug", platforms: %i[mri mingw x64_mingw]

0 commit comments

Comments
 (0)