browserstack-ruby-sdk 0.1.0

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.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +7 -0
  3. data/LICENSE.txt +52 -0
  4. data/README.md +115 -0
  5. data/STYLE_GUIDE.md +43 -0
  6. data/exe/browserstack-sdk +8 -0
  7. data/generated/browserstack/sdk/v1/sdk_pb.rb +80 -0
  8. data/generated/browserstack/sdk/v1/sdk_services_pb.rb +47 -0
  9. data/lib/browserstack/browserstack_logger_factory.rb +123 -0
  10. data/lib/browserstack/browserstack_ruby_agent.rb +123 -0
  11. data/lib/browserstack/child_initializer.rb +123 -0
  12. data/lib/browserstack/cli/browserstack_cli.rb +123 -0
  13. data/lib/browserstack/cli/grpc_client.rb +123 -0
  14. data/lib/browserstack/cli/sdk_cli_utils.rb +123 -0
  15. data/lib/browserstack/command_executor.rb +123 -0
  16. data/lib/browserstack/config/browserstack_config.rb +123 -0
  17. data/lib/browserstack/constants.rb +123 -0
  18. data/lib/browserstack/eventbus/event.rb +123 -0
  19. data/lib/browserstack/eventbus/event_dispatcher.rb +123 -0
  20. data/lib/browserstack/frameworks/automationFrameworks/automation_framework.rb +123 -0
  21. data/lib/browserstack/frameworks/automationFrameworks/selenium_framework.rb +123 -0
  22. data/lib/browserstack/frameworks/constants/automation_constants.rb +123 -0
  23. data/lib/browserstack/frameworks/state/automation_framework_state.rb +123 -0
  24. data/lib/browserstack/frameworks/state/hook_state.rb +123 -0
  25. data/lib/browserstack/frameworks/state/test_framework_state.rb +123 -0
  26. data/lib/browserstack/frameworks/testFrameworks/cucumber_framework.rb +123 -0
  27. data/lib/browserstack/frameworks/testFrameworks/test_framework.rb +123 -0
  28. data/lib/browserstack/instance/automation_framework_instance.rb +123 -0
  29. data/lib/browserstack/instance/test_framework_instance.rb +123 -0
  30. data/lib/browserstack/instance/tracked_context.rb +123 -0
  31. data/lib/browserstack/instance/tracked_instance.rb +123 -0
  32. data/lib/browserstack/modules/base_module.rb +123 -0
  33. data/lib/browserstack/modules/web_driver_module.rb +123 -0
  34. data/lib/browserstack/monitor/performance.rb +123 -0
  35. data/lib/browserstack/monitor/performance_annotator.rb +123 -0
  36. data/lib/browserstack/monitor/performance_constants.rb +123 -0
  37. data/lib/browserstack/monitor/performance_test.rb +123 -0
  38. data/lib/browserstack/monitor/sdk_integration.rb +123 -0
  39. data/lib/browserstack/patches/appium_lib_core_patch.rb +123 -0
  40. data/lib/browserstack/patches/cucumber_patches.rb +123 -0
  41. data/lib/browserstack/patches/selenium_patches.rb +123 -0
  42. data/lib/browserstack/runner.rb +123 -0
  43. data/lib/browserstack/utils/api_utility_methods.rb +123 -0
  44. data/lib/browserstack/utils/framework_detector.rb +123 -0
  45. data/lib/browserstack/utils/http_calls.rb +123 -0
  46. data/lib/browserstack/utils/util_method.rb +123 -0
  47. data/lib/browserstack/version.rb +123 -0
  48. data/lib/browserstack_sdk.rb +123 -0
  49. data/proto/browserstack/sdk/v1/sdk.proto +487 -0
  50. data/sample/browserstack_sample.yml +298 -0
  51. metadata +218 -0
@@ -0,0 +1,298 @@
1
+ # =============================================================================================================================
2
+ # Set BrowserStack Credentials
3
+ # =============================================================================================================================
4
+ userName: YOUR_USERNAME
5
+ accessKey: YOUR_ACCESS_KEY
6
+
7
+ # =============================================================================================================================
8
+ # Parallels per Platform
9
+ # =============================================================================================================================
10
+ # The number of parallel threads to be used for each platform set.
11
+ # BrowserStack's SDK runner will select the best strategy based on the configured value
12
+ #
13
+ # Example 1 - If you have configured 3 platforms and set `parallelsPerPlatform` as 2, a total of 6 (2 * 3) parallel threads
14
+ # will be used on BrowserStack
15
+ #
16
+ # Example 2 - If you have configured 1 platform and set `parallelsPerPlatform` as 5, a total of 5 (1 * 5) parallel threads
17
+ # will be used on BrowserStack
18
+ parallelsPerPlatform: 1
19
+
20
+ # =============================================================================================================================
21
+ # Platforms (Browsers / Devices to test)
22
+ # =============================================================================================================================
23
+ # Platforms object contains all the browser / device combinations you want to test on.
24
+
25
+ platforms:
26
+ - os: OS X
27
+ osVersion: Big Sur
28
+ browserName: Chrome
29
+ browserVersion: latest
30
+ # ===============================================
31
+ # Chrome Browser Specific Capabilities (OPTIONAL)
32
+ # ===============================================
33
+ chrome:
34
+ driver: 112.0.5615.28
35
+ chromeOptions:
36
+ args:
37
+ - --start-maximized
38
+ # ===============================================
39
+ - os: Windows
40
+ osVersion: 11
41
+ browserName: Edge
42
+ browserVersion: latest
43
+ # ===============================================
44
+ # Edge Browser Specific Capabilities (OPTIONAL)
45
+ # ===============================================
46
+ edge:
47
+ enablePopups: false #<boolean> (Default: X) Set to true if you want to enable Popups
48
+ enableSidebar: false #<boolean> (Default: X) Set to true if you want to enable sidebar
49
+ # ===============================================
50
+ - os: Windows
51
+ osVersion: 10
52
+ browserName: Firefox
53
+ browserVersion: latest
54
+ # ===============================================
55
+ # Firefox Browser Specific Capabilities (OPTIONAL)
56
+ # ===============================================
57
+ firefox:
58
+ driver: 0.32.0 #Set the driver version you want to use
59
+ # ===============================================
60
+ - os: OS X
61
+ osVersion: Big Sur
62
+ browserName: Safari
63
+ browserVersion: 14.1
64
+ # ===============================================
65
+ # Safari Browser Specific Capabilities (OPTIONAL)
66
+ # ===============================================
67
+ safari:
68
+ driver: 2.45 #Set the driver version you want to use
69
+ enablePopups: false #<boolean> (Default: X) Set to true if you want to enable Popups
70
+ allowAllCookies: false #<boolean> (Default: false) Set to true if you want to allow all cookies
71
+ # ===============================================
72
+
73
+ # =============================================================================================================================
74
+ # BrowserStack Reporting
75
+ # =============================================================================================================================
76
+ #Set 'projectName' to the name of your project.
77
+ projectName: BrowserStack Samples
78
+
79
+ #Set 'projectName' to the name of your project.
80
+ buildName: browserstack build
81
+
82
+ # buildIdentifier` is a unique id to differentiate every execution that gets appended to buildName.
83
+ # Choose your buildIdentifier format from the available expressions:
84
+ # ${BUILD_NUMBER} (Default): Generates an incremental counter with every execution
85
+ # ${DATE_TIME}: Generates a Timestamp with every execution. Eg. 05-Nov-19:30
86
+ buildIdentifier: '#${BUILD_NUMBER}'
87
+
88
+ # =============================================================================================================================
89
+ # BrowserStack Local (For localhost, staging/private websites)
90
+ # =============================================================================================================================
91
+
92
+ # Set browserStackLocal to true if your website under test is not accessible publicly over the internet
93
+ browserstackLocal: true # <boolean> (Default true)
94
+ # Options to be passed to BrowserStack local in-case of advanced configurations
95
+ browserStackLocalOptions:
96
+ forceLocal: true # <boolean> (Default: false) Set to true to resolve all your traffic via BrowserStack Local tunnel.
97
+ localIdentifier: randomstring # <string> (Default: null) Needed if you need to run multiple instances of local.
98
+ proxyHost: 127.0.0.1
99
+ proxyPort: 8000
100
+ proxyUser: user
101
+ proxyPass: password
102
+ -pac-file: <pac_file_abs_path> #<string> Pass the absolute path of PAC file for proxy server related decisioning
103
+ f: /my/awesome/folder # <string> Pass the path of test HTML files on BrowserStack local.
104
+ localProxyHost: 127.0.0.1
105
+ localProxyPort: 8000
106
+ -localProxyUser: user
107
+ -localProxyPass: password
108
+ verbose: 4
109
+ -log-file: ./local.log
110
+ -exclude-hosts: ".*.ups.com .*.ams1907.com"
111
+
112
+ # =============================================================================================================================
113
+ # Debugging features
114
+ # =============================================================================================================================
115
+ debug: false # <boolean> # Set to true if you need screenshots for every selenium command ran
116
+ networkLogs: false # <boolean> Set to true to enable HAR logs capturing
117
+ consoleLogs: errors # <string> Remote browser's console debug levels to be printed (Default: errors)
118
+ # Available options are `disable`, `errors`, `warnings`, `info`, `verbose` (Default: errors)
119
+
120
+ # =============================================================================================================================
121
+ # TEST CONFIGURATION CAPABILITIES
122
+ # =============================================================================================================================
123
+ video: true
124
+ seleniumLogs: true
125
+ telemetryLogs: true
126
+ geoLocation: CN
127
+ timezone: New_York
128
+ resolution: 1024x768
129
+ idleTimeout: 30
130
+ maskCommands: setValues, getValues, setCookies, getCookies
131
+ maskBasicAuth: true
132
+ autoWait: 35
133
+ hosts: 1.2.3.4 staging.website.com
134
+ bfcache: 1
135
+ wsLocalSupport: true
136
+ disableCorsRestrictions: true
137
+ httpProxy: http://user:pwd@127.0.0.1:1234 #Add the proxy parameters in the adjacent format to use httpProxy
138
+ httpsProxy: https://user:pwd@127.0.0.1:1234 #Add the proxy parameters in the adjacent format to use httpsProxy
139
+ envFile: test.env # load custom environment
140
+ logDir: 'log'
141
+ # =============================================================================================================================
142
+ # MOBILE SPECIFIC CAPABILITIES
143
+ # =============================================================================================================================
144
+
145
+ # Set the screen orientation of mobile device.
146
+ deviceOrientation: portrait # select between portrait/landscape
147
+ # Required if you want to simulate the custom network condition.
148
+ customNetwork: 1000 #download speed (kbps), upload speed (kbps), latency (ms), packet loss (%)
149
+ # Required if you want to simulate different network conditions.
150
+ networkProfile: 2g-gprs-good #(select between multiple options)
151
+
152
+ # =============================================================================================================================
153
+ # BROWSER SPECIFIC CAPABILITIES
154
+ # =============================================================================================================================
155
+
156
+ # Browser specific capabilities have to be strictly placed with respective platform capabilites inside the platforms object
157
+
158
+ # ===============================================
159
+ # Chrome Browser Specific Capabilities
160
+ # ===============================================
161
+ # platforms:
162
+ # - os: OS X
163
+ # osVersion: Big Sur
164
+ # browserName: Chrome
165
+ # browserVersion: latest
166
+ # #Chrome specific capabilities
167
+ # chrome:
168
+ # driver: 112.0.5615.28
169
+ # chromeOptions:
170
+ # args:
171
+ # - incognito
172
+ # - --start-maximized
173
+ # perfLoggingPrefs:
174
+ # enableNetwork: false
175
+
176
+ # ===============================================
177
+ # Edge Browser Specific Capabilities
178
+ # ===============================================
179
+ # platforms:
180
+ # - os: Windows
181
+ # osVersion: 11
182
+ # browserName: Edge
183
+ # browserVersion: 111.0
184
+ # # Edge specific capabilities
185
+ # edge:
186
+ # enablePopups: false #<boolean> (Default: X) Set to true if you want to enable Popups
187
+ # enableSidebar: false #<boolean> (Default: X) Set to true if you want to enable sidebar
188
+
189
+ # ===============================================
190
+ # Safari Browser Specific Capabilities
191
+ # ===============================================
192
+ # platforms:
193
+ # - os: OS X
194
+ # osVersion: Big Sur
195
+ # browserName: Safari
196
+ # browserVersion: 14.1
197
+ # # Safari Specific Capabilities (OPTIONAL)
198
+ # safari:
199
+ # driver: 2.45 #Set the driver version you want to use
200
+ # enablePopups: false #<boolean> (Default: X) Set to true if you want to enable Popups
201
+ # allowAllCookies: false #<boolean> (Default: false) Set to true if you want to allow all cookies
202
+
203
+ # ===============================================
204
+ # Firefox Browser Specific Capabilities
205
+ # ===============================================
206
+
207
+ # platforms:
208
+ # - os: Windows
209
+ # osVersion: 10
210
+ # browserName: Firefox
211
+ # browserVersion: latest
212
+ # # Firefox specific capabilities (Optional)
213
+ # firefox:
214
+ # driver: 0.32.0 #Set the driver version you want to use
215
+
216
+ # ===============================================
217
+ # IE Browser Specific Capabilities
218
+ # ===============================================
219
+ # platforms:
220
+ # - os: Windows
221
+ # osVersion: 10
222
+ # browserName: IE
223
+ # browserVersion: 11.0
224
+ # # IE specific capabilities (OPTIONAL)
225
+ # ie:
226
+ # driver: 4.0.0
227
+ # noFlash: false #<boolean> (Default: X) Set to true if you want to enable flash
228
+ # compatibility: <value>
229
+ # arch: <value>
230
+ # enablePopups: false #<boolean> (Default: X) Set to true if you want to enable Popups
231
+ # enableSidebar: false #<boolean> (Default: X) Set to true if you want to enable sidebar
232
+ # sendKeys: true #<boolean> (Default: X) Allows to type content automatically into editable field while executing tests.
233
+
234
+ # =============================================================================================================================
235
+ # ADDITIONAL SDK SPECIFIC CONFIG
236
+ # =============================================================================================================================
237
+
238
+ # Use this to toggle verbose logging for SDK
239
+ logLevel: debug #<enum(error|warn|info|debug)> (Default: info)
240
+ testContextOptions:
241
+ skipSessionName: true #<boolean> (Default: false) Set to true if you want to skip SDK from marking session name on bstack dashboard
242
+ skipSessionStatus: true #<boolean> (Default: false) Set to true if you want to skip SDK from marking session status on bstack dashboard
243
+ # staticWebDriver: true #<boolean> (Default: true) Set to true in java to handle static initialisation of webdriver
244
+
245
+ # platforms:
246
+ # - os: Windows
247
+ # osVersion: 10
248
+ # browserName: Firefox
249
+ # browserVersion: latest
250
+ # #<object> (Default: X) Set any platform specific custom key value pairs
251
+ # customVariables:
252
+ # customKey: customValue
253
+ # #<object> (Default: X) Set additional playwright config options
254
+ ## playwrightConfigOptions:
255
+ ## use:
256
+ ## deviceName: iPhone 6
257
+ ## locale: de
258
+
259
+ # =============================================================================================================================
260
+ # PRODUCT SPECIFIC OPTIONS
261
+ # =============================================================================================================================
262
+
263
+ # ===============================================
264
+ # TEST OBSERVABILITY
265
+ # ===============================================
266
+ # Test Observability is an intelligent test reporting & debugging product. It collects data using the SDK.
267
+ # Visit observability.browserstack.com to see your test reports and insights. To disable test observability,
268
+ # specify `testObservability: false` in the key below.
269
+ # Read about what data is collected at https://www.browserstack.com/docs/test-observability/references/terms-and-conditions
270
+ testReporting: true
271
+
272
+ # ===============================================
273
+ # ACCESSIBILITY
274
+ # ===============================================
275
+ accessibility: true #<boolean> (Default: false)
276
+ #<object> (Default: X) Read more https://www.browserstack.com/docs/accessibility-automation/references/configuration-options
277
+ #accessibilityOptions:
278
+ # wcagVersion: wcag21 #<enum(wcag21AAA|wcag21A|wcag20A)> (Default: wcag21aa)
279
+ # includeIssueType:
280
+ # bestPractice: true #<boolean> (Default: false)
281
+ # needsReview: true #<boolean> (Default: true)
282
+ # platforms:
283
+ # - os: Windows
284
+ # osVersion: 10
285
+ # browserName: Chrome
286
+ # browserVersion: latest
287
+ # accessibility: true #<boolean> (Default: false) Set to true/false to override root level accessibility key behavior
288
+
289
+ # ===============================================
290
+ # PERCY OR APP PERCY
291
+ # ===============================================
292
+ percy: true #<boolean> (Default: false)
293
+ #percyCaptureMode: auto #<enum(auto|screenshot|click|testcase|manual)> (Default: auto)
294
+
295
+ # Pass custom header params
296
+ headerParams:
297
+ header_param_key1: someval
298
+ header_param_key2: someval
metadata ADDED
@@ -0,0 +1,218 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: browserstack-ruby-sdk
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - BrowserStack
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2026-01-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: fiddle
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: git
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.18'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.18'
41
+ - !ruby/object:Gem::Dependency
42
+ name: grpc
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.50'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.50'
55
+ - !ruby/object:Gem::Dependency
56
+ name: httparty
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.21'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.21'
69
+ - !ruby/object:Gem::Dependency
70
+ name: json
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.6'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.6'
83
+ - !ruby/object:Gem::Dependency
84
+ name: ostruct
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: parallel_tests
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '3.0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '3.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: selenium-webdriver
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '3.0'
118
+ - - "<"
119
+ - !ruby/object:Gem::Version
120
+ version: '5.0'
121
+ type: :runtime
122
+ prerelease: false
123
+ version_requirements: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: '3.0'
128
+ - - "<"
129
+ - !ruby/object:Gem::Version
130
+ version: '5.0'
131
+ description: A comprehensive Ruby SDK for BrowserStack that provides automation capabilities
132
+ and enhanced testing features for web/app applications.
133
+ email:
134
+ - support@browserstack.com
135
+ executables:
136
+ - browserstack-sdk
137
+ extensions: []
138
+ extra_rdoc_files: []
139
+ files:
140
+ - CHANGELOG.md
141
+ - LICENSE.txt
142
+ - README.md
143
+ - STYLE_GUIDE.md
144
+ - exe/browserstack-sdk
145
+ - generated/browserstack/sdk/v1/sdk_pb.rb
146
+ - generated/browserstack/sdk/v1/sdk_services_pb.rb
147
+ - lib/browserstack/browserstack_logger_factory.rb
148
+ - lib/browserstack/browserstack_ruby_agent.rb
149
+ - lib/browserstack/child_initializer.rb
150
+ - lib/browserstack/cli/browserstack_cli.rb
151
+ - lib/browserstack/cli/grpc_client.rb
152
+ - lib/browserstack/cli/sdk_cli_utils.rb
153
+ - lib/browserstack/command_executor.rb
154
+ - lib/browserstack/config/browserstack_config.rb
155
+ - lib/browserstack/constants.rb
156
+ - lib/browserstack/eventbus/event.rb
157
+ - lib/browserstack/eventbus/event_dispatcher.rb
158
+ - lib/browserstack/frameworks/automationFrameworks/automation_framework.rb
159
+ - lib/browserstack/frameworks/automationFrameworks/selenium_framework.rb
160
+ - lib/browserstack/frameworks/constants/automation_constants.rb
161
+ - lib/browserstack/frameworks/state/automation_framework_state.rb
162
+ - lib/browserstack/frameworks/state/hook_state.rb
163
+ - lib/browserstack/frameworks/state/test_framework_state.rb
164
+ - lib/browserstack/frameworks/testFrameworks/cucumber_framework.rb
165
+ - lib/browserstack/frameworks/testFrameworks/test_framework.rb
166
+ - lib/browserstack/instance/automation_framework_instance.rb
167
+ - lib/browserstack/instance/test_framework_instance.rb
168
+ - lib/browserstack/instance/tracked_context.rb
169
+ - lib/browserstack/instance/tracked_instance.rb
170
+ - lib/browserstack/modules/base_module.rb
171
+ - lib/browserstack/modules/web_driver_module.rb
172
+ - lib/browserstack/monitor/performance.rb
173
+ - lib/browserstack/monitor/performance_annotator.rb
174
+ - lib/browserstack/monitor/performance_constants.rb
175
+ - lib/browserstack/monitor/performance_test.rb
176
+ - lib/browserstack/monitor/sdk_integration.rb
177
+ - lib/browserstack/patches/appium_lib_core_patch.rb
178
+ - lib/browserstack/patches/cucumber_patches.rb
179
+ - lib/browserstack/patches/selenium_patches.rb
180
+ - lib/browserstack/runner.rb
181
+ - lib/browserstack/utils/api_utility_methods.rb
182
+ - lib/browserstack/utils/framework_detector.rb
183
+ - lib/browserstack/utils/http_calls.rb
184
+ - lib/browserstack/utils/util_method.rb
185
+ - lib/browserstack/version.rb
186
+ - lib/browserstack_sdk.rb
187
+ - proto/browserstack/sdk/v1/sdk.proto
188
+ - sample/browserstack_sample.yml
189
+ homepage: https://github.com/browserstack/browserstack-ruby-sdk
190
+ licenses:
191
+ - MIT
192
+ metadata:
193
+ homepage_uri: https://github.com/browserstack/browserstack-ruby-sdk
194
+ source_code_uri: https://github.com/browserstack/browserstack-ruby-sdk
195
+ changelog_uri: https://github.com/browserstack/browserstack-ruby-sdk/blob/main/CHANGELOG.md
196
+ bug_tracker_uri: https://github.com/browserstack/browserstack-ruby-sdk/issues
197
+ documentation_uri: https://github.com/browserstack/browserstack-ruby-sdk/blob/main/README.md
198
+ rubygems_mfa_required: 'true'
199
+ post_install_message:
200
+ rdoc_options: []
201
+ require_paths:
202
+ - lib
203
+ required_ruby_version: !ruby/object:Gem::Requirement
204
+ requirements:
205
+ - - ">="
206
+ - !ruby/object:Gem::Version
207
+ version: 2.7.0
208
+ required_rubygems_version: !ruby/object:Gem::Requirement
209
+ requirements:
210
+ - - ">="
211
+ - !ruby/object:Gem::Version
212
+ version: '0'
213
+ requirements: []
214
+ rubygems_version: 3.2.3
215
+ signing_key:
216
+ specification_version: 4
217
+ summary: Ruby SDK for BrowserStack automation
218
+ test_files: []