launchy 3.1.0 → 3.1.1
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/HISTORY.md +3 -0
- data/launchy.gemspec +3 -3
- data/lib/launchy/applications/browser.rb +4 -2
- data/lib/launchy/version.rb +1 -1
- 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: 147fa0dafa116ae097364aab290ffdb2f508ff44b87019dc266aeaccf1963ab7
|
4
|
+
data.tar.gz: aad595ea32b9a1b1027c0650fd23b1a19865dda3f60c76890e6b0bb1be9e6c0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8193061c42405778b539067521999e9ff2776c0317ba8fae47ce300d901e55473abccad60486b93952e101a32c15a8d462205880c1ceaf7a1a6fe04833b6404
|
7
|
+
data.tar.gz: 57b74c3a254e4437b04b4baa367abb384e733bef508f8f746a22c13997ce13b063208fe6c5c9b16bb8e6963aad2d59367d1aea1188e3326c7aaac69f1e53cae9
|
data/HISTORY.md
CHANGED
@@ -1,4 +1,7 @@
|
|
1
1
|
# Launchy Changelog
|
2
|
+
## Version 3.1.1 - 2025-02-21
|
3
|
+
* Fix the quoted parameter for windows launching - <http://github.com/copiousfreetime/launchy/issues/164>
|
4
|
+
|
2
5
|
## Version 3.1.0 - 2025-01-23
|
3
6
|
* Fix the argv array when passing to ChildProcess on windows - <http://github.com/copiousfreetime/launchy/issues/159>
|
4
7
|
* Update the ruby test matrix for 3.4
|
data/launchy.gemspec
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
# DO NOT EDIT - This file is automatically generated
|
2
2
|
# Make changes to Manifest.txt and/or Rakefile and regenerate
|
3
3
|
# -*- encoding: utf-8 -*-
|
4
|
-
# stub: launchy 3.1.
|
4
|
+
# stub: launchy 3.1.1 ruby lib
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "launchy".freeze
|
8
|
-
s.version = "3.1.
|
8
|
+
s.version = "3.1.1".freeze
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
11
11
|
s.metadata = { "bug_tracker_uri" => "http://github.com/copiousfreetime/launchy/issues", "changelog_uri" => "http://github.com/copiousfreetime/launchy/blob/master/HISTORY.md", "homepage_uri" => "http://github.com/copiousfreetime/launchy", "source_code_uri" => "http://github.com/copiousfreetime/launchy" } if s.respond_to? :metadata=
|
12
12
|
s.require_paths = ["lib".freeze]
|
13
13
|
s.authors = ["Jeremy Hinegardner".freeze]
|
14
14
|
s.bindir = "exe".freeze
|
15
|
-
s.date = "2025-
|
15
|
+
s.date = "2025-02-21"
|
16
16
|
s.description = "Launchy is helper class for launching cross-platform applications in a fire and forget manner. There are application concepts (browser, email client, etc) that are common across all platforms, and they may be launched differently on each platform. Launchy is here to make a common approach to launching external applications from within ruby programs.".freeze
|
17
17
|
s.email = "jeremy@copiousfreetime.org".freeze
|
18
18
|
s.executables = ["launchy".freeze]
|
@@ -16,12 +16,14 @@ module Launchy
|
|
16
16
|
true if File.exist?(uri.path)
|
17
17
|
end
|
18
18
|
|
19
|
+
# The escaped \\ is necessary so that when shellsplit is done later,
|
20
|
+
# the "launchy", with quotes, goes through to the commandline, since that
|
19
21
|
def windows_app_list
|
20
|
-
['start "launchy" /b']
|
22
|
+
['start \\"launchy\\" /b']
|
21
23
|
end
|
22
24
|
|
23
25
|
def cygwin_app_list
|
24
|
-
['cmd /C start "launchy" /b']
|
26
|
+
['cmd /C start \\"launchy\\" /b']
|
25
27
|
end
|
26
28
|
|
27
29
|
# hardcode this to open?
|
data/lib/launchy/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: launchy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeremy Hinegardner
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-02-21 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: addressable
|