activeadmin 3.3.0 → 3.4.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e080845beb483b8364c49bb199ac8b4ba61975854316d053df39b39208d863bf
4
- data.tar.gz: c30bcfde594fb30c2a8796741451f245b77ddeaa66c6a66ecbfbcbec3064918a
3
+ metadata.gz: 3421560bc8ebcddcb2685e3a296c5dbecd08d53f90c858f747dd57729e63136b
4
+ data.tar.gz: 53a03320dfd11b59d81392a942a138d84c50403119f2f8007700e433a1ac32db
5
5
  SHA512:
6
- metadata.gz: fe64d783c2ac39dbbc74df16985dabcbee5e300039f8b703df6ccedf7dee24dcda09dd59b154383ba0dc593310f163dd6ca51af5f59d26b11646683158eeae4a
7
- data.tar.gz: f4e988b7bf89e2cb291822c62d891d958ec48400e3ccee31fc2480b47ee1c8ab80608c939abb80733378c2f27a245044d1f89c68fe04c8fd850264df072ae8d1
6
+ metadata.gz: 25514fe7c810b5df4cd6f91fb5af09f1997d67a0b350003d47c1d3a9bb7c8a4e240045c83a32c07c6207e79a2d3ff29ddbffb0d73801751b8b6f1b0defa354ec
7
+ data.tar.gz: 338c4417858bd84fa539e983c841412d8ebeab3ae1c069410fa015bfc1b5f16506f73d05f3b3e5e95462d1a899d9451359496eddfb519cd33f23d09fd93c9bfc
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 3.4.0 [☰](https://github.com/activeadmin/activeadmin/compare/v3.3.0..v3.4.0)
6
+
7
+ * Add Rails 8.1 compatibility and drop Ruby < 3.0 support [#8837] by [@tagliala]
8
+
5
9
  ## 3.3.0 [☰](https://github.com/activeadmin/activeadmin/compare/v3.2.5..v3.3.0)
6
10
 
7
11
  ### Enhancements
@@ -984,6 +988,7 @@ Please check [0-6-stable] for previous changes.
984
988
  [#8614]: https://github.com/activeadmin/activeadmin/pull/8614
985
989
  [#8650]: https://github.com/activeadmin/activeadmin/pull/8650
986
990
  [#8652]: https://github.com/activeadmin/activeadmin/pull/8652
991
+ [#8837]: https://github.com/activeadmin/activeadmin/pull/8837
987
992
 
988
993
  [@1000ship]: https://github.com/1000ship
989
994
  [@5t111111]: https://github.com/5t111111
@@ -468,23 +468,19 @@
468
468
  $.fn["perPage"] = PerPage._jQueryInterface;
469
469
  $.fn["perPage"].Constructor = PerPage;
470
470
  })(jQuery);
471
- function _inheritsLoose(subClass, superClass) {
472
- subClass.prototype = Object.create(superClass.prototype);
473
- subClass.prototype.constructor = subClass;
474
- _setPrototypeOf(subClass, superClass);
471
+ function _inheritsLoose(t, o) {
472
+ t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o);
475
473
  }
476
- function _setPrototypeOf(o, p) {
477
- _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
478
- o.__proto__ = p;
479
- return o;
480
- };
481
- return _setPrototypeOf(o, p);
474
+ function _setPrototypeOf(t, e) {
475
+ return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(t, e) {
476
+ return t.__proto__ = e, t;
477
+ }, _setPrototypeOf(t, e);
482
478
  }
483
479
  var TableCheckboxToggler = function(_CheckboxToggler) {
484
- _inheritsLoose(TableCheckboxToggler, _CheckboxToggler);
485
480
  function TableCheckboxToggler() {
486
481
  return _CheckboxToggler.apply(this, arguments) || this;
487
482
  }
483
+ _inheritsLoose(TableCheckboxToggler, _CheckboxToggler);
488
484
  var _proto = TableCheckboxToggler.prototype;
489
485
  _proto._bind = function _bind() {
490
486
  var _this = this;
@@ -21,7 +21,7 @@ module ActiveAdmin
21
21
  if namespace.root?
22
22
  router.root namespace.root_to_options.merge(to: namespace.root_to)
23
23
  else
24
- router.namespace namespace.name, namespace.route_options.dup do
24
+ router.namespace namespace.name, **namespace.route_options.dup do
25
25
  router.root namespace.root_to_options.merge(to: namespace.root_to, as: :root)
26
26
  end
27
27
  end
@@ -65,7 +65,7 @@ module ActiveAdmin
65
65
 
66
66
  def page_routes(config)
67
67
  page = config.underscored_resource_name
68
- router.get "/#{page}" => "#{page}#index"
68
+ router.get "/#{page}", to: "#{page}#index"
69
69
  config.page_actions.each do |action|
70
70
  Array.wrap(action.http_verb).each do |verb|
71
71
  build_route(verb, "/#{page}/#{action.name}" => "#{page}##{action.name}")
@@ -91,8 +91,8 @@ module ActiveAdmin
91
91
  build_route(action.http_verb, action.name)
92
92
  end
93
93
 
94
- def build_route(verbs, *args)
95
- Array.wrap(verbs).each { |verb| router.send(verb, *args) }
94
+ def build_route(verbs, ...)
95
+ Array.wrap(verbs).each { |verb| router.send(verb, ...) }
96
96
  end
97
97
 
98
98
  def define_belongs_to_routes(config)
@@ -107,7 +107,7 @@ module ActiveAdmin
107
107
  end
108
108
 
109
109
  def define_namespace(config)
110
- router.namespace config.namespace.name, config.namespace.route_options.dup do
110
+ router.namespace config.namespace.name, **config.namespace.route_options.dup do
111
111
  define_routes(config)
112
112
  end
113
113
  end
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module ActiveAdmin
3
- VERSION = "3.3.0"
3
+ VERSION = "3.4.0"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeadmin
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.0
4
+ version: 3.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charles Maresh
@@ -12,10 +12,9 @@ authors:
12
12
  - Piers C
13
13
  - Sean Linsley
14
14
  - Timo Schilling
15
- autorequire:
16
15
  bindir: bin
17
16
  cert_chain: []
18
- date: 2025-03-08 00:00:00.000000000 Z
17
+ date: 1980-01-02 00:00:00.000000000 Z
19
18
  dependencies:
20
19
  - !ruby/object:Gem::Dependency
21
20
  name: arbre
@@ -518,7 +517,6 @@ metadata:
518
517
  rubygems_mfa_required: 'true'
519
518
  source_code_uri: https://github.com/activeadmin/activeadmin
520
519
  wiki_uri: https://github.com/activeadmin/activeadmin/wiki
521
- post_install_message:
522
520
  rdoc_options: []
523
521
  require_paths:
524
522
  - lib
@@ -533,8 +531,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
533
531
  - !ruby/object:Gem::Version
534
532
  version: '0'
535
533
  requirements: []
536
- rubygems_version: 3.5.22
537
- signing_key:
534
+ rubygems_version: 3.6.9
538
535
  specification_version: 4
539
536
  summary: Active Admin is a Ruby on Rails plugin for generating administration style
540
537
  interfaces. It abstracts common business application patterns to make it simple