Skip to content
This repository has been archived by the owner on Sep 23, 2022. It is now read-only.

Commit

Permalink
Merge pull request #36 from broothie/delete-old-messages
Browse files Browse the repository at this point in the history
add message hourly deletion job
  • Loading branch information
broothie committed Apr 23, 2022
2 parents 9ea174a + 7bd4d8d commit fe42415
Show file tree
Hide file tree
Showing 38 changed files with 436 additions and 353 deletions.
1 change: 1 addition & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--require spec_helper
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.3
2.7.6
13 changes: 7 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
source 'https://rubygems.org'
ruby '2.7.3'

git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
ruby '2.7.6'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.4'
Expand Down Expand Up @@ -45,6 +40,9 @@ gem 'rack-cors'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri

gem "rspec-rails", "~> 4.1"
gem "factory_bot_rails", "~> 6.2"
end

group :development do
Expand All @@ -65,3 +63,6 @@ end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

gem "sidekiq", "~> 5.2"
gem "sidekiq-scheduler", "~> 3.2"
Loading

0 comments on commit fe42415

Please sign in to comment.