File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515
1616 strategy :
1717 matrix :
18- ruby : ['3.0', '3. 3']
18+ ruby : ['3.3']
1919 gemfile : ['rails70_activeadmin']
2020
2121 env :
Original file line number Diff line number Diff line change 1+ ---
2+ name : Specs Rails 8.0
3+
4+ on :
5+ push :
6+ branches :
7+ - main
8+ pull_request :
9+ branches :
10+ - main
11+
12+ jobs :
13+ tests :
14+ runs-on : ubuntu-latest
15+
16+ strategy :
17+ matrix :
18+ ruby : ['3.2', '3.4']
19+ gemfile : ['rails80_activeadmin']
20+
21+ env :
22+ BUNDLE_GEMFILE : ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
23+
24+ steps :
25+ - name : Checkout repository
26+ uses : actions/checkout@v4
27+
28+ - name : Set up Ruby
29+ uses : ruby/setup-ruby@v1
30+ with :
31+ ruby-version : ${{ matrix.ruby }}
32+ bundler-cache : true
33+
34+ - name : Run tests
35+ run : bundle exec rspec --profile
36+
37+ - name : On failure, archive screenshots as artifacts
38+ uses : actions/upload-artifact@v4
39+ if : failure()
40+ with :
41+ name : test-failed-screenshots
42+ path : spec/dummy/tmp/screenshots
Original file line number Diff line number Diff line change @@ -24,3 +24,8 @@ appraise 'rails72-activeadmin' do
2424 gem 'activeadmin'
2525 gem 'rails' , '~> 7.2.0'
2626end
27+
28+ appraise 'rails80-activeadmin' do
29+ gem 'activeadmin'
30+ gem 'rails' , '~> 8.0.0'
31+ end
Original file line number Diff line number Diff line change 22[ ![ gem version] ( https://badge.fury.io/rb/activeadmin_quill_editor.svg )] ( https://badge.fury.io/rb/activeadmin_quill_editor )
33[ ![ gem downloads] ( https://badgen.net/rubygems/dt/activeadmin_quill_editor )] ( https://rubygems.org/gems/activeadmin_quill_editor )
44[ ![ linters] ( https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/linters.yml/badge.svg )] ( https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/linters.yml )
5+
56[ ![ specs Rails 6.1] ( https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails61.yml/badge.svg )] ( https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails61.yml )
67[ ![ specs Rails 7.0] ( https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails70.yml/badge.svg )] ( https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails70.yml )
8+ [ ![ Specs Rails 7.1] ( https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails71.yml/badge.svg )] ( https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails71.yml )
9+ [ ![ Specs Rails 7.2] ( https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails72.yml/badge.svg )] ( https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails72.yml )
10+ [ ![ Specs Rails 8.0] ( https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails80.yml/badge.svg )] ( https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails80.yml )
711
812An Active Admin plugin to use [ Quill Rich Text Editor] ( https://github.com/quilljs/quill ) in form fields.
913
Original file line number Diff line number Diff line change 1+ # This file was generated by Appraisal
2+
3+ source "https://rubygems.org"
4+
5+ gem "sqlite3"
6+ gem "bigdecimal"
7+ gem "mutex_m"
8+ gem "puma"
9+ gem "sassc"
10+ gem "sprockets-rails"
11+ gem "capybara"
12+ gem "cuprite"
13+ gem "rspec_junit_formatter"
14+ gem "rspec-rails"
15+ gem "rspec-retry"
16+ gem "fasterer"
17+ gem "rubocop"
18+ gem "rubocop-capybara"
19+ gem "rubocop-packaging"
20+ gem "rubocop-performance"
21+ gem "rubocop-rails"
22+ gem "rubocop-rspec"
23+ gem "rubocop-rspec_rails"
24+ gem "pry-rails"
25+ gem "activeadmin"
26+ gem "rails", "~> 8.0.0"
27+
28+ gemspec path: "../"
You can’t perform that action at this time.
0 commit comments