launchy 2.4.1 → 2.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- ZTBlZTMzMGZlMDNmM2Y5MDk3MzVmZWMzNjIwMGI5MjdiYWE1NmVlNA==
5
- data.tar.gz: !binary |-
6
- MWQ0Mjc2MzA2Mjg4MDNhNzY5YjQ1M2RjZTNhNTlhYTJkZDM3MzZhYQ==
2
+ SHA1:
3
+ metadata.gz: 4530a3fed3180fecebf8e400b827aaba7d1c8883
4
+ data.tar.gz: 30794e878be1936e25e6ed1a79fb6562e3c0ec27
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- NzBmYTIwODEzYzMyNGZhMjY3Y2E1YzU4NWE1MTkxMTA4Nzg0ZWE1MzhlZTRh
10
- NDhhYjdhNzQ5NDY0YzgzMjIwZGZiMWEyZTRjNGE0NjkyM2FmMGUyMmUyN2Jh
11
- NDQ0NDVmNmE1N2U1ZTQ3MmY3YmEyYjM4OWYxMjYxNDQyMzU5OTk=
12
- data.tar.gz: !binary |-
13
- OTA3NTI4MTE1NGVjZmFlMDJjOWJjOWYzYjgxYWUxNzA2M2NiNDU1YzI3NWM1
14
- N2MzYzFkNjdhMmVlZjE4ZjA0YTg0MDAxODQ4NjQwODZhODliODAwM2I3Mjhl
15
- MDg5NWI5MzBhNGNhNGQ2NTRkZGY2ZDlhOGFlZWI1MzFiYWVkNDY=
6
+ metadata.gz: c593fcebac3fb96b80d5583bf10d738fbf26c5a51ae573224da63e0a7e37b719b0e17947175a2a2b8e76cb82ddda4a588accbb4e3c7bed98f817df957138c79b
7
+ data.tar.gz: 7f6df9bae967f77b7f4a8e0b645107e6ee22a667775c5a4b9dd20ca2788c6409fd7de7b5635dc77be3b0b2a07a592d74b55efc40288dea2b27531619bc701d07
@@ -45,6 +45,7 @@ easiest way to contribute.
45
45
  * [Miquel Rodríguez Telep](https://github.com/mrtorrent)
46
46
  * [Chris Schmich](https://github.com/schmich)
47
47
  * [Gioele Barabucci](https://github.com/gioele)
48
+ * [Colin Noel Bell](https://github.com/colbell)
48
49
 
49
50
  [GitHub Account]: https://github.com/signup/free "GitHub Signup"
50
51
  [GitHub Issues]: https://github.com/copiousfreetime/launchy/issues "Launchy Issues"
data/HISTORY.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Launchy Changelog
2
2
 
3
+ ## Version 2.4.2 - 2013-11-28
4
+ * Fix kde issue - <https://github.com/copiousfreetime/launchy/issues/72> - colbell
5
+
3
6
  ## Version 2.4.1 - 2013-11-26
4
7
  * Abstract out the argv of the commandline - <https://github.com/copiousfreetime/launchy/issues/71>
5
8
 
@@ -36,7 +36,7 @@ module Launchy::Detect
36
36
  end
37
37
 
38
38
  def self.browser
39
- ::Launchy::Argv.new( %w[ kvmclient openURL ] )
39
+ ::Launchy::Argv.new( %w[ kfmclient openURL ] )
40
40
  end
41
41
  end
42
42
 
@@ -37,7 +37,7 @@ module Launchy::Detect
37
37
  # and in that case system shell escaping rules are not done.
38
38
  #
39
39
  def shell_commands( cmd, args )
40
- cmdline = [ cmd.shellsplit ]
40
+ cmdline = [ cmd.to_s.shellsplit ]
41
41
  cmdline << args.flatten.collect{ |a| a.to_s }
42
42
  return commandline_normalize( cmdline )
43
43
  end
@@ -1,5 +1,5 @@
1
1
  module Launchy
2
- VERSION = "2.4.1"
2
+ VERSION = "2.4.2"
3
3
 
4
4
  module Version
5
5
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: launchy
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.1
4
+ version: 2.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Hinegardner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-26 00:00:00.000000000 Z
11
+ date: 2013-11-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -132,12 +132,12 @@ require_paths:
132
132
  - lib
133
133
  required_ruby_version: !ruby/object:Gem::Requirement
134
134
  requirements:
135
- - - ! '>='
135
+ - - '>='
136
136
  - !ruby/object:Gem::Version
137
137
  version: '0'
138
138
  required_rubygems_version: !ruby/object:Gem::Requirement
139
139
  requirements:
140
- - - ! '>='
140
+ - - '>='
141
141
  - !ruby/object:Gem::Version
142
142
  version: '0'
143
143
  requirements: []