launchy 2.1.1-java → 2.1.2-java
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.
- data/HISTORY.rdoc +4 -0
- data/lib/launchy/descendant_tracker.rb +1 -1
- data/lib/launchy/detect/host_os.rb +1 -0
- data/lib/launchy/version.rb +1 -1
- data/spec/cli_spec.rb +1 -1
- data/spec/detect/runner_spec.rb +1 -0
- metadata +2 -2
data/HISTORY.rdoc
CHANGED
@@ -40,7 +40,7 @@ module Launchy
|
|
40
40
|
# and passing all the rest of the parameters to that method in
|
41
41
|
# each child
|
42
42
|
def find_child( method, *args )
|
43
|
-
|
43
|
+
children.find do |child|
|
44
44
|
Launchy.log "Checking if class #{child} is the one for #{method}(#{args.join(', ')})}"
|
45
45
|
child.send( method, *args )
|
46
46
|
end
|
data/lib/launchy/version.rb
CHANGED
data/spec/cli_spec.rb
CHANGED
@@ -53,7 +53,7 @@ describe Launchy::Cli do
|
|
53
53
|
|
54
54
|
it "prints the command on stdout when using --dry-run" do
|
55
55
|
argv = %w[ --debug --dry-run http://github.com/copiousfreetime/launchy ]
|
56
|
-
|
56
|
+
Launchy::Cli.new.good_run( argv, {} )
|
57
57
|
$stdout.string.must_match %r[github.com]
|
58
58
|
end
|
59
59
|
|
data/spec/detect/runner_spec.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: launchy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 2.1.
|
5
|
+
version: 2.1.2
|
6
6
|
platform: java
|
7
7
|
authors:
|
8
8
|
- Jeremy Hinegardner
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2012-
|
13
|
+
date: 2012-08-06 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: addressable
|