-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ruby 3.2.1, bundle update (Sidekiq 7) (#186)
* Minor fixes, yarn upgrade * Rspec, rubocop fixes * Cleanup wallboard.js * Add redis-server to travis.yml * Add brakeman.ignore * Update brakeman github action * Add Woke github action * Use Redis for websockets in development * Bundle update (Sidekiq 7) * Upgrade Ruby to 3.2.1
- Loading branch information
Showing
61 changed files
with
2,288 additions
and
2,511 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Brakeman Scan | ||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
jobs: | ||
brakeman-scan: | ||
name: Brakeman Scan | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Setup Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.2.1' | ||
- name: Setup Brakeman | ||
env: | ||
BRAKEMAN_VERSION: '5.4.0' | ||
run: | | ||
gem install brakeman --version $BRAKEMAN_VERSION | ||
- name: Scan | ||
continue-on-error: true | ||
run: | | ||
brakeman -f sarif -o output.sarif.json . | ||
- name: Upload SARIF | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: output.sarif.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Woke | ||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
jobs: | ||
woke: | ||
name: woke | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: woke | ||
uses: get-woke/woke-action@v0 | ||
with: | ||
fail-on-error: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This configuration was generated by | ||
# `rubocop --auto-gen-config --auto-gen-only-exclude --exclude-limit 1000` | ||
# on 2023-01-16 20:02:50 UTC using RuboCop version 1.43.0. | ||
# The point is for the user to remove these configuration records | ||
# one by one as the offenses are removed from the code base. | ||
# Note that changes in the inspected code, or installation of new | ||
# versions of RuboCop, may require this file to be generated again. | ||
|
||
# Offense count: 33 | ||
RSpec/PendingWithoutReason: | ||
Exclude: | ||
- 'spec/controllers/hooks/base_controller_spec.rb' | ||
- 'spec/controllers/oauth/slack_controller_spec.rb' | ||
- 'spec/models/concerns/profile_decorator_spec.rb' | ||
- 'spec/models/reward_spec.rb' | ||
- 'spec/models/team_spec.rb' | ||
- 'spec/services/actions/message_spec.rb' | ||
- 'spec/services/actions/reaction_added_spec.rb' | ||
- 'spec/services/bonus_calculator_service_spec.rb' | ||
- 'spec/services/commands/help_spec.rb' | ||
- 'spec/services/commands/leaderboard_spec.rb' | ||
- 'spec/services/commands/undo_spec.rb' | ||
- 'spec/services/discord/post_service_spec.rb' | ||
- 'spec/services/discord/team_sync_service_spec.rb' | ||
- 'spec/services/mention_parser_spec.rb' | ||
- 'spec/services/note_sanitizer_spec.rb' | ||
- 'spec/services/slack/post_service_spec.rb' | ||
- 'spec/services/tip_histogram_service_spec.rb' | ||
- 'spec/services/tip_mention_service_spec.rb' | ||
- 'spec/services/tip_response_service_spec.rb' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.1.2 | ||
3.2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.