vario 1.0.5 → 1.0.7

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: 9088a7f9335191086e2f1f8f1cb904df70965f6fd70ddc570ba54553320c13de
4
- data.tar.gz: 397a9dcd2e917cba8b0465bdfc6f6933b747e74e119ad67035ac0793d7b5aa23
3
+ metadata.gz: d05e19cb7867108b8418ed9d883f14426c739cd82bda85477c91a6b33ca1d071
4
+ data.tar.gz: 8a3ec565a958f7d7abdb402583752c00300e265407c728e6274a09f10faa1a96
5
5
  SHA512:
6
- metadata.gz: 9c2cef091ac91dfe6d85a5cff90fc02393b703e453b5b6d9ae66d81854f6e9027685b1a0096a088ab8b16a5d06366a35d70a136279f64dc1410d3770fbe6b1f7
7
- data.tar.gz: fbdd6d764f1ab453e6916b55bcea25ba99f8f08be5f81b60dde9d837e125dce9cac266d1332bb251eebd35d0d8c8fcd2d35c5994480f4c1f420d34b1c5f75738
6
+ metadata.gz: 6ac0aa3e19f7ef9cad8bcdfc972d1c9def674e0ed22f1c4ac86ffe49c2ea2ac2830a617407614c61cebc544f09bb777f8bc751966e59e5aab998fb3e1f305f9c
7
+ data.tar.gz: ab052a42269f6cc92ebd80817fa50ef320742c44ce6791532924d002a7446966e270df4d3a20c0c6b0687484d07cb426131cf06c6e5ccca9e29014536fd5cf37
@@ -13,8 +13,11 @@ module Vario
13
13
  @level.conditions = normalize_booleans(level_params[:conditions].to_h)
14
14
  @level.conditions = normalize_booleans(level_params[:conditions].to_h)
15
15
  @setting.save
16
-
17
- respond_with @setting, collection_location: -> { setting_path(@setting) }
16
+ if request.referer.present? && URI.parse(request.referer).path != setting_path(@setting)
17
+ redirect_to request.referer
18
+ else
19
+ respond_with @setting, collection_location: -> { setting_path(@setting) }
20
+ end
18
21
  end
19
22
 
20
23
  def update
@@ -27,15 +30,21 @@ module Vario
27
30
  @level.value = level_params[:value]
28
31
  @level.conditions = normalize_booleans(level_params[:conditions].to_h)
29
32
  @setting.save
30
-
31
- respond_with @setting, collection_location: -> { setting_path(@setting) }
33
+ if request.referer.present? && URI.parse(request.referer).path != setting_path(@setting)
34
+ redirect_to request.referer
35
+ else
36
+ respond_with @setting, collection_location: -> { setting_path(@setting) }
37
+ end
32
38
  end
33
39
 
34
40
  def destroy
35
41
  @setting.levels.reject! { |level| level.id == params[:id] }
36
42
  @setting.save
37
-
38
- respond_with @setting, collection_location: -> { setting_path(@setting) }
43
+ if request.referer.present? && URI.parse(request.referer).path != setting_path(@setting)
44
+ redirect_to request.referer
45
+ else
46
+ respond_with @setting, collection_location: -> { setting_path(@setting) }
47
+ end
39
48
  end
40
49
 
41
50
  def move
data/lib/vario/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Vario
4
- VERSION = "1.0.5"
4
+ VERSION = "1.0.7"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vario
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andre Meij
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-19 00:00:00.000000000 Z
11
+ date: 2025-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grape