mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
fix typo [ci skip] (#5567)
This commit is contained in:
parent
533766aa54
commit
e3df9e383d
4 changed files with 21 additions and 23 deletions
13
Gemfile
13
Gemfile
|
@ -3,16 +3,15 @@ source "https://rubygems.org"
|
|||
gemspec
|
||||
|
||||
gem "rake"
|
||||
RAILS_VERSION = '~> 7.0.4'
|
||||
gem 'actionmailer', RAILS_VERSION
|
||||
gem 'actionpack', RAILS_VERSION
|
||||
gem 'activejob', RAILS_VERSION
|
||||
gem 'activerecord', RAILS_VERSION
|
||||
gem 'railties', RAILS_VERSION
|
||||
RAILS_VERSION = "~> 7.0.4"
|
||||
gem "actionmailer", RAILS_VERSION
|
||||
gem "actionpack", RAILS_VERSION
|
||||
gem "activejob", RAILS_VERSION
|
||||
gem "activerecord", RAILS_VERSION
|
||||
gem "railties", RAILS_VERSION
|
||||
gem "redis-client"
|
||||
# gem "debug"
|
||||
|
||||
|
||||
gem "sqlite3", platforms: :ruby
|
||||
gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
|
||||
gem "after_commit_everywhere"
|
||||
|
|
|
@ -80,7 +80,7 @@ module Sidekiq
|
|||
end
|
||||
|
||||
# Creates a Sidekiq::Config instance that is more tuned for embedding
|
||||
# within an arbitrary Ruby process. Noteably it reduces concurrency by
|
||||
# within an arbitrary Ruby process. Notably it reduces concurrency by
|
||||
# default so there is less contention for CPU time with other threads.
|
||||
#
|
||||
# inst = Sidekiq.configure_embed do |config|
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
source 'https://rubygems.org'
|
||||
source "https://rubygems.org"
|
||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||
|
||||
ruby '3.1.2'
|
||||
ruby "3.1.2"
|
||||
|
||||
RAILS_VERSION = '~> 7.0.4'
|
||||
gem 'actionmailer', RAILS_VERSION
|
||||
gem 'actionpack', RAILS_VERSION
|
||||
gem 'activejob', RAILS_VERSION
|
||||
gem 'activerecord', RAILS_VERSION
|
||||
gem 'railties', RAILS_VERSION
|
||||
RAILS_VERSION = "~> 7.0.4"
|
||||
gem "actionmailer", RAILS_VERSION
|
||||
gem "actionpack", RAILS_VERSION
|
||||
gem "activejob", RAILS_VERSION
|
||||
gem "activerecord", RAILS_VERSION
|
||||
gem "railties", RAILS_VERSION
|
||||
|
||||
gem 'puma', '~> 5.0'
|
||||
gem 'sidekiq', path: '..'
|
||||
gem 'sqlite3', '~> 1.4'
|
||||
gem "puma", "~> 5.0"
|
||||
gem "sidekiq", path: ".."
|
||||
gem "sqlite3", "~> 1.4"
|
||||
|
||||
gem 'after_commit_everywhere'
|
||||
gem "after_commit_everywhere"
|
||||
|
|
|
@ -1,17 +1,16 @@
|
|||
require_relative "boot"
|
||||
|
||||
require "rails"
|
||||
%w(
|
||||
%w[
|
||||
active_record/railtie
|
||||
action_controller/railtie
|
||||
action_view/railtie
|
||||
action_mailer/railtie
|
||||
active_job/railtie
|
||||
).each do |railtie|
|
||||
].each do |railtie|
|
||||
require railtie
|
||||
end
|
||||
|
||||
|
||||
# Require the gems listed in Gemfile, including any gems
|
||||
# you've limited to :test, :development, or :production.
|
||||
Bundler.require(*Rails.groups)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue