Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased] - yyyy-mm-dd

## [1.4.1] - 2023-02-06
## [1.4.2] - 2023-06-06

### Fixed
Stop API in case of multiple instances on same machine
### Changed
Update download links
4 changes: 2 additions & 2 deletions browserstack-local.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.name = 'browserstack-local'
s.version = '1.4.1'
s.date = '2023-02-06'
s.version = '1.4.2'
s.date = '2023-06-06'
s.summary = "BrowserStack Local"
s.description = "Ruby bindings for BrowserStack Local"
s.authors = ["BrowserStack"]
Expand Down
10 changes: 5 additions & 5 deletions lib/browserstack/localbinary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ def initialize
@http_path = case host_os
when /mswin|msys|mingw|cygwin|bccwin|wince|emc/
@windows = true
"https://bstack-local-prod.s3.amazonaws.com/BrowserStackLocal.exe"
"https://www.browserstack.com/local-testing/downloads/binaries/BrowserStackLocal.exe"
when /darwin|mac os/
"https://bstack-local-prod.s3.amazonaws.com/BrowserStackLocal-darwin-x64"
"https://www.browserstack.com/local-testing/downloads/binaries/BrowserStackLocal-darwin-x64"
when /linux-musl/
"https://bstack-local-prod.s3.amazonaws.com/BrowserStackLocal-alpine"
"https://www.browserstack.com/local-testing/downloads/binaries/BrowserStackLocal-alpine"
when /linux/
if 1.size == 8
"https://bstack-local-prod.s3.amazonaws.com/BrowserStackLocal-linux-x64"
"https://www.browserstack.com/local-testing/downloads/binaries/BrowserStackLocal-linux-x64"
else
"https://bstack-local-prod.s3.amazonaws.com/BrowserStackLocal-linux-ia32"
"https://www.browserstack.com/local-testing/downloads/binaries/BrowserStackLocal-linux-ia32"
end
end

Expand Down