satis 2.1.39 → 2.1.40

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: b2bb03a6dd505a66bab8954f44688caae478ea05d597693fe98d78214ddad550
4
- data.tar.gz: 6da9d6e93810ee42bb5ba48f7c3ac7e15d0a36d640555bc0489c2339934cf96e
3
+ metadata.gz: 6ddd69c85158a1f192490265d8123601aa127be531b934d424c4fdbd86cc70f6
4
+ data.tar.gz: d697b3310fa323edc711d67a59a4a88e7d693199958852574da3bbd3bf5a6628
5
5
  SHA512:
6
- metadata.gz: 50e71afa728f3f64ebdc1629d4fff2ead6359ab896ac97d6367f0b72edbf5148db10cf24d552593ca0d8a0e706c7d6a712d1621df0819e54bcb71e8c0879e8e3
7
- data.tar.gz: 7ddbeb16decb994c3f2b12603bfb039ef85c355557b8d685b3bb1da87be18cda38896605cbc17db6617655bb2539943bc5574342b567db7339cced34378b260a
6
+ metadata.gz: 928bd7eaf9e0cf2ca7a6da48bb8026a2d4a0aac27c758dd9539f04ce9de74cbedd9922ca8e80fd8d0500a8297d177582bda4233bc99815d3b53714d30b850be7
7
+ data.tar.gz: 216e3e5b8ade1af565de6307ec7d581259fae456658d2e48fdbaab3223e8f32d727dc6e04cc550edcc4822d1b0c9e3dce311f340be7ff0e5d805e3920d7e1f15
data/Rakefile CHANGED
@@ -17,7 +17,3 @@ Rake::TestTask.new(:test) do |t|
17
17
  end
18
18
 
19
19
  task default: :test
20
-
21
- # Adds the Auxilium semver task
22
- spec = Gem::Specification.find_by_name "auxilium"
23
- load "#{spec.gem_dir}/lib/tasks/semver.rake"
@@ -27,7 +27,7 @@ module Satis
27
27
  super
28
28
 
29
29
  if identifier.blank?
30
- ActiveSupport::Deprecation.warn('Calling sts.card with the id parameter will become mandatory')
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
- ActiveSupport::Deprecation.warn('Calling tab with the tab_menu parameter, use menu instead')
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
- ActiveSupport::Deprecation.warn('Calling tab with the selected_tab_index parameter, use selected instead')
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
@@ -1,3 +1,3 @@
1
1
  module Satis
2
- VERSION = "2.1.39"
2
+ VERSION = "2.1.40"
3
3
  end
data/lib/satis.rb CHANGED
@@ -1,15 +1,16 @@
1
- require 'satis/version'
2
- require 'satis/engine'
3
- require 'satis/configuration'
4
- require 'satis/active_record_helpers'
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
- class << self
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.39
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-09-23 00:00:00.000000000 Z
11
+ date: 2024-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: browser