Skip to content

Commit 54376e0

Browse files
authored
Merge pull request #336 from bookingexperts/add-support-for-rails-8-1
Add support for Rails 8.1
2 parents bf2a816 + cb6384e commit 54376e0

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44
Gemfile.lock
55
pkg/*
66
vendor/*
7+
spec/support/dummy_app/log/*
8+
spec/support/dummy_app/tmp/*

carrierwave_backgrounder.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
2121
s.required_ruby_version = '>= 3.0'
2222

2323
s.add_dependency "carrierwave", ["> 2.0", "< 4.0"]
24-
s.add_dependency "rails", ["> 6.0", "< 8.1"]
24+
s.add_dependency "rails", ["> 6.0", "< 8.2"]
2525

2626
s.add_development_dependency "rspec", ["~> 3.12"]
2727
s.add_development_dependency "rake"

lib/backgrounder/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module CarrierWave
22
module Backgrounder
3-
VERSION = "1.1.1"
3+
VERSION = "1.1.2"
44
end
55
end

spec/support/dummy_app/Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
44
ruby "3.4.5"
55

66
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
7-
gem "rails", "~> 8.0.2"
7+
gem "rails", "~> 8.1.1"
88

99
# Use sqlite3 as the database for Active Record
1010
gem "sqlite3", "~> 2.7"
@@ -46,4 +46,3 @@ group :development do
4646
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
4747
# gem "spring"
4848
end
49-

0 commit comments

Comments
 (0)