launchy 3.1.0 → 3.1.1

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: 6e3f75181b9759e27633c635831f12d7a76d32d84575bdfa775b0b85c24df956
4
- data.tar.gz: 4c98c3f1edcc8bede59149a86b21b4a961cf2cd6c74a19e677031c70d62c7457
3
+ metadata.gz: 147fa0dafa116ae097364aab290ffdb2f508ff44b87019dc266aeaccf1963ab7
4
+ data.tar.gz: aad595ea32b9a1b1027c0650fd23b1a19865dda3f60c76890e6b0bb1be9e6c0d
5
5
  SHA512:
6
- metadata.gz: 987ee0556a3a4f6c4d72e2b697452b1e492fb83a7c6a0712face9e3db8aea81e45fdf1770592370f6fa79a64874ce110e227c6f20955b9970c546e2a7df2a314
7
- data.tar.gz: '09dba86e441a8b3555ac00168b0540da8e6ae60e38650a46360135a5850db3f258cfe08d17ceed1ae392d2897fe6b49cea29fea3d251b4832c3067f420ded45a'
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 - <https://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 - <https://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.0 ruby lib
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.0".freeze
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" => "https://github.com/copiousfreetime/launchy/issues", "changelog_uri" => "https://github.com/copiousfreetime/launchy/blob/master/HISTORY.md", "homepage_uri" => "https://github.com/copiousfreetime/launchy", "source_code_uri" => "https://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-01-23"
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?
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Launchy
4
- VERSION = "3.1.0"
4
+ VERSION = "3.1.1"
5
5
 
6
6
  # Internal: Version number of Launchy
7
7
  module Version
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.0
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-01-24 00:00:00.000000000 Z
10
+ date: 2025-02-21 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: addressable