pouf 0.1.1 → 0.1.2
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/bin/pouf +1 -1
- data/lib/pouf.rb +6 -8
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e605a4981b545829d3bd08cb9e2f5b2e80af4ad
|
4
|
+
data.tar.gz: 315eeff15c05820216034de32cb7ded538f192a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5655cf8585f74c3624ac6f8ed0adcde4b2aeea0eeac8aafb11cf5206546f9f31fb6d042bb0dd9f10ad2ebf16cca5923923771e92d0b7158181dc41752df1e8d0
|
7
|
+
data.tar.gz: b944a7d0fc77a569cd985c77341c67c8e5d2e3c3e6f8789731337cbbae35ba53fe362f560a3024ecb3f7a90236489e13833eab1fc0d3f99ec58f64d205736f8b
|
data/bin/pouf
CHANGED
data/lib/pouf.rb
CHANGED
@@ -9,7 +9,7 @@ module Pouf
|
|
9
9
|
SOUNDS_DIR = File.expand_path("~/.pouf/sounds")
|
10
10
|
|
11
11
|
def version
|
12
|
-
'0.1.
|
12
|
+
'0.1.2'
|
13
13
|
end
|
14
14
|
|
15
15
|
def play_cmd
|
@@ -21,10 +21,10 @@ module Pouf
|
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
24
|
-
def play_sound filename
|
24
|
+
def play_sound filename, cmd=nil
|
25
25
|
return unless filename
|
26
26
|
|
27
|
-
cmd
|
27
|
+
cmd ||= play_cmd
|
28
28
|
|
29
29
|
if cmd
|
30
30
|
system *cmd, filename
|
@@ -70,11 +70,9 @@ module Pouf
|
|
70
70
|
FileUtils.mv(f1, f2) if f1 and f2
|
71
71
|
end
|
72
72
|
|
73
|
-
def play
|
74
|
-
|
75
|
-
|
76
|
-
play_sound fname if fname
|
77
|
-
end
|
73
|
+
def play name, cmd=nil
|
74
|
+
fname = alias2filename name
|
75
|
+
play_sound(fname, cmd) if fname
|
78
76
|
end
|
79
77
|
|
80
78
|
def rm *names
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pouf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Baptiste Fontaine
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-01-
|
11
|
+
date: 2014-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Quickly play random short sounds from the command-line
|
14
14
|
email: batifon@yahoo.fr
|
@@ -17,8 +17,8 @@ executables:
|
|
17
17
|
extensions: []
|
18
18
|
extra_rdoc_files: []
|
19
19
|
files:
|
20
|
-
- lib/pouf.rb
|
21
20
|
- bin/pouf
|
21
|
+
- lib/pouf.rb
|
22
22
|
homepage: https://github.com/bfontaine/pouf
|
23
23
|
licenses:
|
24
24
|
- MIT
|
@@ -39,7 +39,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
39
39
|
version: '0'
|
40
40
|
requirements: []
|
41
41
|
rubyforge_project:
|
42
|
-
rubygems_version: 2.
|
42
|
+
rubygems_version: 2.2.1
|
43
43
|
signing_key:
|
44
44
|
specification_version: 4
|
45
45
|
summary: Play random sounds from the command-line
|