Skip to content

Commit

Permalink
Merge branch 'main' into refactor/better-engine-mounting
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul-Bob committed Feb 11, 2025
2 parents 8f74693 + 42d738b commit ed1bfa5
Show file tree
Hide file tree
Showing 281 changed files with 4,852 additions and 1,387 deletions.
4 changes: 4 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Ask a question
url: https://github.com/avo-hq/avo/discussions
about: Ask questions and discuss with other community members
- name: Priority Support
url: https://avohq.io/support
about: Get fast support from the authors of Avo
4 changes: 2 additions & 2 deletions .github/workflows/i18n-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ jobs:
id: run_tests
run: bundle exec rspec spec/system/i18n_spec.rb

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: coverage_system_${{ matrix.rails }}_ruby_${{ matrix.ruby }}
path: coverage/.resultset.json

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always() && steps.run_tests.outcome == 'failure'
with:
name: rspec_failed_screenshots_rails_${{ matrix.rails }}_ruby_${{ matrix.ruby }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ jobs:
id: run_tests
run: bundle exec rspec spec/system/ --tag=~i18n

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: coverage_system_${{ matrix.rails }}_ruby_${{ matrix.ruby }}
path: coverage/.resultset.json

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always() && steps.run_tests.outcome == 'failure'
with:
name: rspec_failed_screenshots_rails_${{ matrix.rails }}_ruby_${{ matrix.ruby }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,4 @@ brakeman_results.html

.env
.env.test
*~
6 changes: 6 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
gem "activestorage", "~> #{rails_version}"
gem "activestorage"
gem "acts-as-taggable-on"

if rails_version == "6.1"
# Fix `<module:LoggerThreadSafeLevel>': uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger (NameError)
# https://stackoverflow.com/questions/79360526/uninitialized-constant-activesupportloggerthreadsafelevellogger-nameerror
gem "concurrent-ruby", "1.3.4"
end
end
end
end
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ gem "image_processing", "~> 1.12"
gem "prefixed_ids"

gem "mapkick-rb", "~> 0.1.4"

gem "mapkick-static"
gem "pluggy", path: "./pluggy"

gem "hashid-rails", "~> 1.4", ">= 1.4.1"
Expand Down
Loading

0 comments on commit ed1bfa5

Please sign in to comment.