rails_ops 1.5.6 → 1.5.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 558a4a1a3cb23bc32dfec42de13a4d3b53f70d03e6b86148ba31be121af9dd61
4
- data.tar.gz: 11662c7d0089d418644c0f26e081b0f149d17d713b68f40becd0ea0eeaef79b6
3
+ metadata.gz: 2bbc09db31ff37b510e90a5e4b1de5ba64f50a5d53461c6526eb55011cede2c1
4
+ data.tar.gz: 5803d14113c57b999f7a119fa9ccf9f7e6582e0750943476b5b10ffb664b0d9b
5
5
  SHA512:
6
- metadata.gz: 86c2246c61c29c514d1a60c3644ade9aae78036871d0343c0ab8b0e531a0cb61e67567a628c5cf7447ef3841f1139fd4b71511968af3a17d013e06d3cdaa80d5
7
- data.tar.gz: 637c74db154cd4eac60d4775fbf3da556d9198307fcc00583e0f44ae3a0e8250dcae38781d62429272b2b7ffd5bb3da59348a7c4ab2d966de0c2296570897473
6
+ metadata.gz: ed731e2912fd87ebbef299555febefa0dbe4f1a20201f429a92ca97e2f6e17c9e6106e4d701039c1832a8cb037d1feca6c92095da05eeea8ddb783e86644058e
7
+ data.tar.gz: 80c2d4ec48d3fa45ab385694acfecfccc94213e12e99107d456fbf8d0325853a19d6f6148b6da001a115a9120ff0b4cd394fd8f883985ee84693a7c1b3398095
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.5.7 (2024-08-22)
4
+
5
+ * Fix compatibility issue with older versions of Rails introduced in version
6
+ 1.5.6
7
+
3
8
  ## 1.5.6 (2024-08-22)
4
9
 
5
10
  * #42 Bump nokogiri from 1.16.2 to 1.16.5 to mitigate CVE
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_ops (1.5.6)
4
+ rails_ops (1.5.7)
5
5
  active_type (>= 1.3.0)
6
6
  minitest
7
7
  rails
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.5.6
1
+ 1.5.7
@@ -5,7 +5,9 @@ module RailsOps
5
5
  # ---------------------------------------------------------------
6
6
  # Register deprecator
7
7
  # ---------------------------------------------------------------
8
- app.deprecators[:rails_ops] = RailsOps.deprecator if app
8
+ if app.respond_to?(:deprecators)
9
+ app.deprecators[:rails_ops] = RailsOps.deprecator
10
+ end
9
11
 
10
12
  # ---------------------------------------------------------------
11
13
  # Load hookup config eagerly at application startup unless
data/rails_ops.gemspec CHANGED
@@ -1,9 +1,9 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: rails_ops 1.5.6 ruby lib
2
+ # stub: rails_ops 1.5.7 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "rails_ops".freeze
6
- s.version = "1.5.6"
6
+ s.version = "1.5.7"
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib".freeze]
@@ -24,5 +24,9 @@ module Dummy
24
24
  # Settings in config/environments/* take precedence over those specified here.
25
25
  # Application configuration should go into files in config/initializers
26
26
  # -- all .rb files in that directory are automatically loaded.
27
+
28
+ # def deprecators
29
+ # {}
30
+ # end
27
31
  end
28
32
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_ops
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.6
4
+ version: 1.5.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sitrox