vitunes 0.0.3 → 0.0.4
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/README.markdown +28 -0
- data/Rakefile +3 -3
- data/lib/vitunes/version.rb +1 -1
- metadata +3 -13
data/README.markdown
CHANGED
@@ -2,6 +2,17 @@
|
|
2
2
|
|
3
3
|
ViTunes lets you control and navigate iTunes from the comfort of Vim.
|
4
4
|
|
5
|
+
<a href="images-vitunes/bowie.png" rel="lightbox[screens]"><img src="images-vitunes/bowie-sm.png" /></a>
|
6
|
+
<a href="images-vitunes/select-artist.png" rel="lightbox[screens]"><img src="images-vitunes/select-artist-sm.png" /></a>
|
7
|
+
<a href="images-vitunes/select-playlist.png" rel="lightbox[screens]"><img src="images-vitunes/select-playlist-sm.png" /></a>
|
8
|
+
|
9
|
+
Benefits:
|
10
|
+
|
11
|
+
* control iTunes without leaving Vim, where the work happens
|
12
|
+
* avoid using the mouse or trackpad; keystrokes get you there faster
|
13
|
+
* control iTunes running on a remote computer
|
14
|
+
* let multiple people control one instance of iTunes over ssh
|
15
|
+
|
5
16
|
## Prerequisites
|
6
17
|
|
7
18
|
* Ruby 1.8.6 or higher (developed on Ruby 1.9.2)
|
@@ -12,6 +23,8 @@ ViTunes lets you control and navigate iTunes from the comfort of Vim.
|
|
12
23
|
|
13
24
|
gem install vitunes
|
14
25
|
|
26
|
+
Then
|
27
|
+
|
15
28
|
vitunes-install
|
16
29
|
|
17
30
|
`vitunes-install` installs a Vim plugin into your ~/.vim/plugin
|
@@ -63,3 +76,18 @@ Press `ENTER` or `ESC` to exit drop down selection mode.
|
|
63
76
|
To copy tracks, put the cursor on a track or select a range of tracks,
|
64
77
|
and then hit `,c` to select a playlist to copy them to. The tracks will be
|
65
78
|
added to the end of the playlist.
|
79
|
+
|
80
|
+
## How to contact the developer
|
81
|
+
|
82
|
+
My name is Daniel Choi. I specialize in Ruby, MySQL, PostgreSQl, and iOS
|
83
|
+
development. I am based in Cambridge, Massachusetts, USA, and my little
|
84
|
+
software company is called Kaja Software.
|
85
|
+
|
86
|
+
* Company Email: info@kajasoftware.com
|
87
|
+
* Twitter: [@danchoi][twitter]
|
88
|
+
* Personal Email: dhchoi@gmail.com
|
89
|
+
* My Homepage: <http://danielchoi.com/software>
|
90
|
+
|
91
|
+
[twitter]:http://twitter.com/#!/danchoi
|
92
|
+
|
93
|
+
|
data/Rakefile
CHANGED
@@ -32,15 +32,15 @@ task :web => :build_webpage do
|
|
32
32
|
`rsync -avz out/stylesheets zoe2@instantwatcher.com:~/danielchoi.com/public/software/`
|
33
33
|
`rsync -avz out/lightbox2 zoe2@instantwatcher.com:~/danielchoi.com/public/software/`
|
34
34
|
end
|
35
|
-
|
35
|
+
#`open http://danielchoi.com/software/vitunes.html`
|
36
36
|
end
|
37
37
|
|
38
38
|
desc "build webpage"
|
39
39
|
task :build_webpage do
|
40
40
|
`cp README.markdown ../project-webpages/src/vitunes.README.markdown`
|
41
41
|
Dir.chdir "../project-webpages" do
|
42
|
-
puts `ruby gen.rb vitunes #{
|
43
|
-
|
42
|
+
puts `ruby gen.rb vitunes #{ViTunes::VERSION}`
|
43
|
+
`open out/vitunes.html`
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
data/lib/vitunes/version.rb
CHANGED
metadata
CHANGED
@@ -1,12 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vitunes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
|
6
|
-
- 0
|
7
|
-
- 0
|
8
|
-
- 3
|
9
|
-
version: 0.0.3
|
4
|
+
prerelease:
|
5
|
+
version: 0.0.4
|
10
6
|
platform: ruby
|
11
7
|
authors:
|
12
8
|
- Daniel Choi
|
@@ -63,23 +59,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
63
59
|
requirements:
|
64
60
|
- - ">="
|
65
61
|
- !ruby/object:Gem::Version
|
66
|
-
segments:
|
67
|
-
- 1
|
68
|
-
- 8
|
69
|
-
- 6
|
70
62
|
version: 1.8.6
|
71
63
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
64
|
none: false
|
73
65
|
requirements:
|
74
66
|
- - ">="
|
75
67
|
- !ruby/object:Gem::Version
|
76
|
-
segments:
|
77
|
-
- 0
|
78
68
|
version: "0"
|
79
69
|
requirements: []
|
80
70
|
|
81
71
|
rubyforge_project: vitunes
|
82
|
-
rubygems_version: 1.
|
72
|
+
rubygems_version: 1.6.1
|
83
73
|
signing_key:
|
84
74
|
specification_version: 3
|
85
75
|
summary: A Vim interface to iTunes
|