Skip to content

Commit 26eb722

Browse files
authored
Merge pull request #333 from lardawge/ls/add-supported-ruby-version-to-gemspec
Update description and supported ruby version to gemspec file
2 parents 537ec9e + af59e79 commit 26eb722

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ruby-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
ruby: ['3.0', '3.1', '3.2', '3.4', '3.5', 'ruby-head']
15+
ruby: ['3.2', '3.4', 'ruby-head']
1616
queue_adapter: ['sidekiq', 'active_job']
1717
continue-on-error: ${{ matrix.ruby == 'ruby-head' }}
1818
steps:

carrierwave_backgrounder.gemspec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,20 @@ Gem::Specification.new do |s|
66
s.name = "carrierwave_backgrounder"
77
s.version = CarrierWave::Backgrounder::VERSION
88
s.platform = Gem::Platform::RUBY
9+
910
s.authors = ["Larry Sprock"]
1011
s.email = ["larry@lucidbleu.com"]
1112
s.homepage = "https://github.com/lardawge/carrierwave_backgrounder"
1213
s.licenses = ["MIT"]
13-
s.summary = %q{Offload CarrierWave's image processing and storage to a background process using Delayed Job, Resque, Sidekiq, Qu, Queue Classic or Girl Friday}
14+
s.summary = %q{Offload CarrierWave's image processing and storage to a background process using ActiveJob or Sidekiq.}
1415

1516
s.files = `git ls-files`.split("\n")
1617
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
1718
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
1819
s.require_paths = ["lib"]
1920

21+
s.required_ruby_version = '>= 3.0'
22+
2023
s.add_dependency "carrierwave", ["> 2.0", "< 4.0"]
2124
s.add_dependency "rails", ["> 6.0", "< 8.1"]
2225

0 commit comments

Comments
 (0)