active_admin_scoped_collection_actions 0.4.1 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +44 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile +8 -4
- data/active_admin_scoped_collection_actions.gemspec +1 -1
- data/lib/active_admin_scoped_collection_actions/version.rb +1 -1
- metadata +9 -9
- data/.travis.yml +0 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f4cfa1626f8c35e683c20d35f7594f5fc2e69e698b7f306ca86912525b272eb
|
4
|
+
data.tar.gz: ebb1cf80d7894879aa5a3f2556e83b8f837c3d8621ad6137d7795fe2249d20d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2dd83b556c2734c8eda0afe354cb3c93c7610fe6354f922595ad6c6c890a3d1ec7dcf320c92597fe10ad2754fde45b0da83e2575eb0ae911da01c92314290df
|
7
|
+
data.tar.gz: ef7839e57ec7b247dc1952ee47c0ffb121042b1952949655d01b0a36ae1339c2b2cf24414c7ab3e007b994fb3ef45a87c4ecdef7e35c1431319712d8ac443cf9
|
@@ -0,0 +1,44 @@
|
|
1
|
+
name: CI
|
2
|
+
on:
|
3
|
+
pull_request:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
jobs:
|
8
|
+
test:
|
9
|
+
name: Tests with Ruby ${{ matrix.ruby }} Rails ${{ matrix.rails }} Active Admin ${{ matrix.activeadmin }}
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
strategy:
|
12
|
+
matrix:
|
13
|
+
ruby:
|
14
|
+
- '3.0.0'
|
15
|
+
- '3.1.0'
|
16
|
+
- '3.2.0'
|
17
|
+
- '3.3.0'
|
18
|
+
rails:
|
19
|
+
- '6.1.0'
|
20
|
+
- '7.0.0'
|
21
|
+
- '7.1.0'
|
22
|
+
activeadmin:
|
23
|
+
- '2.14.0'
|
24
|
+
- '3.0.0'
|
25
|
+
- '3.1.0'
|
26
|
+
- '3.2.0'
|
27
|
+
exclude:
|
28
|
+
- rails: '7.1.0'
|
29
|
+
activeadmin: '2.14.0'
|
30
|
+
- rails: '7.1.0'
|
31
|
+
activeadmin: '3.0.0'
|
32
|
+
env:
|
33
|
+
RAILS: ${{ matrix.rails }}
|
34
|
+
AA: ${{ matrix.activeadmin }}
|
35
|
+
steps:
|
36
|
+
- uses: actions/checkout@v4
|
37
|
+
- uses: ruby/setup-ruby@v1
|
38
|
+
with:
|
39
|
+
ruby-version: ${{ matrix.ruby }}
|
40
|
+
- name: Run tests
|
41
|
+
run: |
|
42
|
+
gem install bundler -v '< 2'
|
43
|
+
bundle install
|
44
|
+
bundle exec rspec spec
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
## ActiveAdmin Scoped Collection Actions 1.0.1 (March 02, 2024) ##
|
2
|
+
|
3
|
+
* compatibility with ActiveAdmin 3.x (@oskarpearson #43)
|
4
|
+
|
1
5
|
## ActiveAdmin Scoped Collection Actions 0.3.5 (November 22, 2017) ##
|
2
6
|
|
3
7
|
* compatibility with Decorators, fix is intended for old ActiveAdmin (@Zamyatin-AA #30)
|
data/Gemfile
CHANGED
@@ -3,12 +3,15 @@ source 'https://rubygems.org'
|
|
3
3
|
gemspec
|
4
4
|
|
5
5
|
group :test do
|
6
|
-
|
7
|
-
|
6
|
+
default_rails_version = '7.1.0'
|
7
|
+
default_activeadmin_version = '3.2.0'
|
8
8
|
|
9
|
-
gem '
|
9
|
+
gem 'rails', "~> #{ENV['RAILS'] || default_rails_version}"
|
10
|
+
gem 'activeadmin', "~> #{ENV['AA'] || default_activeadmin_version}"
|
11
|
+
|
12
|
+
gem 'sprockets-rails'
|
10
13
|
gem 'rspec-rails'
|
11
|
-
gem '
|
14
|
+
gem 'coveralls_reborn', require: false
|
12
15
|
gem 'sass-rails'
|
13
16
|
gem 'sqlite3', '~> 1.4.0'
|
14
17
|
gem 'launchy'
|
@@ -17,4 +20,5 @@ group :test do
|
|
17
20
|
gem 'webdrivers'
|
18
21
|
gem 'byebug'
|
19
22
|
gem 'draper'
|
23
|
+
gem 'webrick', require: false
|
20
24
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_admin_scoped_collection_actions
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gena M.
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-03-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activeadmin
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '1.1'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
22
|
+
version: '4.0'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '1.1'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version:
|
32
|
+
version: '4.0'
|
33
33
|
description: Plugin for ActiveAdmin. Provides batch Update and Delete for scoped_collection
|
34
34
|
(Filters + Scope) across all pages.
|
35
35
|
email:
|
@@ -38,8 +38,8 @@ executables: []
|
|
38
38
|
extensions: []
|
39
39
|
extra_rdoc_files: []
|
40
40
|
files:
|
41
|
+
- ".github/workflows/ci.yml"
|
41
42
|
- ".gitignore"
|
42
|
-
- ".travis.yml"
|
43
43
|
- CHANGELOG.md
|
44
44
|
- CODE_OF_CONDUCT.md
|
45
45
|
- Gemfile
|
@@ -68,7 +68,7 @@ homepage: https://github.com/activeadmin-plugins/active_admin_scoped_collection_
|
|
68
68
|
licenses:
|
69
69
|
- MIT
|
70
70
|
metadata: {}
|
71
|
-
post_install_message:
|
71
|
+
post_install_message:
|
72
72
|
rdoc_options: []
|
73
73
|
require_paths:
|
74
74
|
- lib
|
@@ -83,8 +83,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
- !ruby/object:Gem::Version
|
84
84
|
version: '0'
|
85
85
|
requirements: []
|
86
|
-
rubygems_version: 3.
|
87
|
-
signing_key:
|
86
|
+
rubygems_version: 3.5.6
|
87
|
+
signing_key:
|
88
88
|
specification_version: 4
|
89
89
|
summary: scoped_collection actions extension for ActiveAdmin
|
90
90
|
test_files: []
|
data/.travis.yml
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
sudo: required
|
2
|
-
|
3
|
-
language: ruby
|
4
|
-
|
5
|
-
addons:
|
6
|
-
chrome: stable
|
7
|
-
|
8
|
-
before_install:
|
9
|
-
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
|
10
|
-
- gem install bundler -v '< 2'
|
11
|
-
|
12
|
-
script: bundle exec rspec spec
|
13
|
-
|
14
|
-
env:
|
15
|
-
matrix:
|
16
|
-
- RAILS=5.2.0 AA=1.4.0
|
17
|
-
- RAILS=5.2.0 AA=2.0.0
|
18
|
-
- RAILS=6.0.0 AA=2.6.0
|
19
|
-
|
20
|
-
rvm:
|
21
|
-
- 2.5
|
22
|
-
- 2.6
|