testcentricity_web 2.0.21 → 2.0.23
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/lib/testcentricity_web/environment.rb +7 -7
- data/lib/testcentricity_web/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 63ec2f6b0773bbe8e2225961565c2aa8dd7de8aa
|
|
4
|
+
data.tar.gz: ba2ce39763b20736b2a25bae7896a4674003360d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 615b6576addedd45fa21d8441e355285e25e0ae9ea31a27a442955015986374b30c91045e71cbce09e631fcd0a004db4175f082d49d6049ab0949981a8fbc278
|
|
7
|
+
data.tar.gz: a083ae6997c6abb5b9572594581fbf5b31a92892a11531de55e1b63222402c79186c7538e140e17142688dd3535f2d6cee52dfadced9471efaae09b85a5fc7b9
|
|
@@ -92,7 +92,7 @@ module TestCentricity
|
|
|
92
92
|
end
|
|
93
93
|
end
|
|
94
94
|
|
|
95
|
-
# @deprecated Please use {#
|
|
95
|
+
# @deprecated Please use {#browser=} instead
|
|
96
96
|
def self.set_browser(browser)
|
|
97
97
|
warn "[DEPRECATION] 'TestCentricity::Environ.set_browser' is deprecated. Please use 'Environ.browser =' instead."
|
|
98
98
|
@browser = browser.downcase.to_sym
|
|
@@ -114,7 +114,7 @@ module TestCentricity
|
|
|
114
114
|
@browser_size
|
|
115
115
|
end
|
|
116
116
|
|
|
117
|
-
# @deprecated Please use {#
|
|
117
|
+
# @deprecated Please use {#os=} instead
|
|
118
118
|
def self.set_os(os)
|
|
119
119
|
warn "[DEPRECATION] 'TestCentricity::Environ.set_os' is deprecated. Please use 'Environ.os =' instead."
|
|
120
120
|
@os = os
|
|
@@ -128,7 +128,7 @@ module TestCentricity
|
|
|
128
128
|
@os
|
|
129
129
|
end
|
|
130
130
|
|
|
131
|
-
# @deprecated Please use {#
|
|
131
|
+
# @deprecated Please use {#device=} instead
|
|
132
132
|
def self.set_device(device)
|
|
133
133
|
warn "[DEPRECATION] 'TestCentricity::Environ.set_device' is deprecated. Please use 'Environ.device =' instead."
|
|
134
134
|
@device = device
|
|
@@ -142,7 +142,7 @@ module TestCentricity
|
|
|
142
142
|
@device
|
|
143
143
|
end
|
|
144
144
|
|
|
145
|
-
# @deprecated Please use {#
|
|
145
|
+
# @deprecated Please use {#device_type=} instead
|
|
146
146
|
def self.set_device_type(type)
|
|
147
147
|
warn "[DEPRECATION] 'TestCentricity::Environ.set_device_type' is deprecated. Please use 'Environ.device_type =' instead."
|
|
148
148
|
@device_type = type.downcase
|
|
@@ -172,7 +172,7 @@ module TestCentricity
|
|
|
172
172
|
@device_orientation
|
|
173
173
|
end
|
|
174
174
|
|
|
175
|
-
# @deprecated Please use {#
|
|
175
|
+
# @deprecated Please use {#platform=} instead
|
|
176
176
|
def self.set_platform(platform)
|
|
177
177
|
warn "[DEPRECATION] 'TestCentricity::Environ.set_platform' is deprecated. Please use 'Environ.platform =' instead."
|
|
178
178
|
@platform = platform
|
|
@@ -198,7 +198,7 @@ module TestCentricity
|
|
|
198
198
|
@signed_in
|
|
199
199
|
end
|
|
200
200
|
|
|
201
|
-
# @deprecated Please use {#
|
|
201
|
+
# @deprecated Please use {#portal_state=} instead
|
|
202
202
|
def self.set_portal_state(portal_state)
|
|
203
203
|
warn "[DEPRECATION] 'TestCentricity::Environ.set_portal_state' is deprecated. Please use 'Environ.portal_state =' instead."
|
|
204
204
|
@portal_status = portal_state
|
|
@@ -212,7 +212,7 @@ module TestCentricity
|
|
|
212
212
|
@portal_status
|
|
213
213
|
end
|
|
214
214
|
|
|
215
|
-
# @deprecated Please use {#
|
|
215
|
+
# @deprecated Please use {#portal_context=} instead
|
|
216
216
|
def self.set_portal_context(portal_context)
|
|
217
217
|
warn "[DEPRECATION] 'TestCentricity::Environ.set_portal_context' is deprecated. Please use 'Environ.portal_context =' instead."
|
|
218
218
|
@portal_context = portal_context
|