satis 2.1.39 → 2.1.40
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/Rakefile +0 -4
- data/app/components/satis/card/component.rb +1 -1
- data/app/components/satis/tab/component.rb +2 -2
- data/lib/satis/version.rb +1 -1
- data/lib/satis.rb +6 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ddd69c85158a1f192490265d8123601aa127be531b934d424c4fdbd86cc70f6
|
|
4
|
+
data.tar.gz: d697b3310fa323edc711d67a59a4a88e7d693199958852574da3bbd3bf5a6628
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 928bd7eaf9e0cf2ca7a6da48bb8026a2d4a0aac27c758dd9539f04ce9de74cbedd9922ca8e80fd8d0500a8297d177582bda4233bc99815d3b53714d30b850be7
|
|
7
|
+
data.tar.gz: 216e3e5b8ade1af565de6307ec7d581259fae456658d2e48fdbaab3223e8f32d727dc6e04cc550edcc4822d1b0c9e3dce311f340be7ff0e5d805e3920d7e1f15
|
data/Rakefile
CHANGED
|
@@ -27,7 +27,7 @@ module Satis
|
|
|
27
27
|
super
|
|
28
28
|
|
|
29
29
|
if identifier.blank?
|
|
30
|
-
|
|
30
|
+
Satis::Deprecation.warn('Calling sts.card with the id parameter will become mandatory')
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
@identifier = identifier
|
|
@@ -36,12 +36,12 @@ module Satis
|
|
|
36
36
|
# FIXME: Obsolete these
|
|
37
37
|
if tab_menu.present?
|
|
38
38
|
@menu ||= tab_menu
|
|
39
|
-
|
|
39
|
+
Satis::Deprecation.warn('Calling tab with the tab_menu parameter, use menu instead')
|
|
40
40
|
end
|
|
41
41
|
|
|
42
42
|
if selected_tab_index.present?
|
|
43
43
|
@selected_tab_index = selected_tab_index # use selected
|
|
44
|
-
|
|
44
|
+
Satis::Deprecation.warn('Calling tab with the selected_tab_index parameter, use selected instead')
|
|
45
45
|
end
|
|
46
46
|
|
|
47
47
|
@block = block
|
data/lib/satis/version.rb
CHANGED
data/lib/satis.rb
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
require
|
|
2
|
-
require
|
|
3
|
-
require
|
|
4
|
-
require
|
|
1
|
+
require "satis/version"
|
|
2
|
+
require "satis/engine"
|
|
3
|
+
require "satis/configuration"
|
|
4
|
+
require "satis/active_record_helpers"
|
|
5
5
|
|
|
6
6
|
Browser::Base.include(Browser::Aliases)
|
|
7
7
|
|
|
8
8
|
module Satis
|
|
9
9
|
extend Configurable
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
Deprecation = ActiveSupport::Deprecation.new("2.2", "Satis")
|
|
12
12
|
|
|
13
|
+
class << self
|
|
13
14
|
def confirm_before_leave?
|
|
14
15
|
return false if config.nil?
|
|
15
16
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: satis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.40
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom de Grunt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-11-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: browser
|