mpc 0.7 → 0.8

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.
Files changed (2) hide show
  1. data/lib/mpc.rb +2 -2
  2. metadata +3 -3
data/lib/mpc.rb CHANGED
@@ -84,11 +84,11 @@ class Mpc
84
84
  end
85
85
 
86
86
  def volume_up
87
- setvol(volume.to_i + 20)
87
+ set_volume(volume.to_i + 20)
88
88
  end
89
89
 
90
90
  def volume_down
91
- setvol(volume.to_i - 20)
91
+ set_volume(volume.to_i - 20)
92
92
  end
93
93
 
94
94
  def seek(time, song = nil)
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mpc
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 7
9
- version: "0.7"
8
+ - 8
9
+ version: "0.8"
10
10
  platform: ruby
11
11
  authors:
12
12
  - "Micha\xC5\x82 Krzy\xC5\xBCanowski"