vitunes 0.0.3
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/.gitignore +11 -0
- data/NOTES +216 -0
- data/README.markdown +65 -0
- data/Rakefile +69 -0
- data/bin/vitunes +9 -0
- data/bin/vitunes-help +11 -0
- data/bin/vitunes-install +9 -0
- data/iTunes.h +507 -0
- data/lib/plugin.erb +10 -0
- data/lib/vitunes/version.rb +3 -0
- data/lib/vitunes-tool-objc +0 -0
- data/lib/vitunes.rb +29 -0
- data/lib/vitunes.vim +344 -0
- data/vitunes/main.m +277 -0
- data/vitunes/vitunes-Prefix.pch +7 -0
- data/vitunes/vitunes.1 +79 -0
- data/vitunes.gemspec +26 -0
- data/vitunes.xcodeproj/project.pbxproj +233 -0
- data/vitunes.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- metadata +87 -0
data/vitunes/vitunes.1
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
.\"Modified from man(1) of FreeBSD, the NetBSD mdoc.template, and mdoc.samples.
|
2
|
+
.\"See Also:
|
3
|
+
.\"man mdoc.samples for a complete listing of options
|
4
|
+
.\"man mdoc for the short list of editing options
|
5
|
+
.\"/usr/share/misc/mdoc.template
|
6
|
+
.Dd 6/29/11 \" DATE
|
7
|
+
.Dt vitunes 1 \" Program name and manual section number
|
8
|
+
.Os Darwin
|
9
|
+
.Sh NAME \" Section Header - required - don't modify
|
10
|
+
.Nm vitunes,
|
11
|
+
.\" The following lines are read in generating the apropos(man -k) database. Use only key
|
12
|
+
.\" words here as the database is built based on the words here and in the .ND line.
|
13
|
+
.Nm Other_name_for_same_program(),
|
14
|
+
.Nm Yet another name for the same program.
|
15
|
+
.\" Use .Nm macro to designate other names for the documented program.
|
16
|
+
.Nd This line parsed for whatis database.
|
17
|
+
.Sh SYNOPSIS \" Section Header - required - don't modify
|
18
|
+
.Nm
|
19
|
+
.Op Fl abcd \" [-abcd]
|
20
|
+
.Op Fl a Ar path \" [-a path]
|
21
|
+
.Op Ar file \" [file]
|
22
|
+
.Op Ar \" [file ...]
|
23
|
+
.Ar arg0 \" Underlined argument - use .Ar anywhere to underline
|
24
|
+
arg2 ... \" Arguments
|
25
|
+
.Sh DESCRIPTION \" Section Header - required - don't modify
|
26
|
+
Use the .Nm macro to refer to your program throughout the man page like such:
|
27
|
+
.Nm
|
28
|
+
Underlining is accomplished with the .Ar macro like this:
|
29
|
+
.Ar underlined text .
|
30
|
+
.Pp \" Inserts a space
|
31
|
+
A list of items with descriptions:
|
32
|
+
.Bl -tag -width -indent \" Begins a tagged list
|
33
|
+
.It item a \" Each item preceded by .It macro
|
34
|
+
Description of item a
|
35
|
+
.It item b
|
36
|
+
Description of item b
|
37
|
+
.El \" Ends the list
|
38
|
+
.Pp
|
39
|
+
A list of flags and their descriptions:
|
40
|
+
.Bl -tag -width -indent \" Differs from above in tag removed
|
41
|
+
.It Fl a \"-a flag as a list item
|
42
|
+
Description of -a flag
|
43
|
+
.It Fl b
|
44
|
+
Description of -b flag
|
45
|
+
.El \" Ends the list
|
46
|
+
.Pp
|
47
|
+
.\" .Sh ENVIRONMENT \" May not be needed
|
48
|
+
.\" .Bl -tag -width "ENV_VAR_1" -indent \" ENV_VAR_1 is width of the string ENV_VAR_1
|
49
|
+
.\" .It Ev ENV_VAR_1
|
50
|
+
.\" Description of ENV_VAR_1
|
51
|
+
.\" .It Ev ENV_VAR_2
|
52
|
+
.\" Description of ENV_VAR_2
|
53
|
+
.\" .El
|
54
|
+
.Sh FILES \" File used or created by the topic of the man page
|
55
|
+
.Bl -tag -width "/Users/joeuser/Library/really_long_file_name" -compact
|
56
|
+
.It Pa /usr/share/file_name
|
57
|
+
FILE_1 description
|
58
|
+
.It Pa /Users/joeuser/Library/really_long_file_name
|
59
|
+
FILE_2 description
|
60
|
+
.El \" Ends the list
|
61
|
+
.\" .Sh DIAGNOSTICS \" May not be needed
|
62
|
+
.\" .Bl -diag
|
63
|
+
.\" .It Diagnostic Tag
|
64
|
+
.\" Diagnostic informtion here.
|
65
|
+
.\" .It Diagnostic Tag
|
66
|
+
.\" Diagnostic informtion here.
|
67
|
+
.\" .El
|
68
|
+
.Sh SEE ALSO
|
69
|
+
.\" List links in ascending order by section, alphabetically within a section.
|
70
|
+
.\" Please do not reference files that do not exist without filing a bug report
|
71
|
+
.Xr a 1 ,
|
72
|
+
.Xr b 1 ,
|
73
|
+
.Xr c 1 ,
|
74
|
+
.Xr a 2 ,
|
75
|
+
.Xr b 2 ,
|
76
|
+
.Xr a 3 ,
|
77
|
+
.Xr b 3
|
78
|
+
.\" .Sh BUGS \" Document known, unremedied bugs
|
79
|
+
.\" .Sh HISTORY \" Document history if command behaves in a unique manner
|
data/vitunes.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "vitunes/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "vitunes"
|
7
|
+
s.version = ViTunes::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.required_ruby_version = '>= 1.8.6'
|
10
|
+
|
11
|
+
s.authors = ["Daniel Choi"]
|
12
|
+
s.email = ["dhchoi@gmail.com"]
|
13
|
+
s.homepage = "http://danielchoi.com/software/vitunes.html"
|
14
|
+
s.summary = %q{A Vim interface to iTunes}
|
15
|
+
s.description = %q{Control iTunes with Vim}
|
16
|
+
|
17
|
+
s.rubyforge_project = "vitunes"
|
18
|
+
|
19
|
+
s.files = `git ls-files`.split("\n")
|
20
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
21
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
22
|
+
s.require_paths = ["lib"]
|
23
|
+
|
24
|
+
s.post_install_message = "Now please run vitunes-install to install the Vim plugin"
|
25
|
+
end
|
26
|
+
|
@@ -0,0 +1,233 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
DEEABA4D13BBE0490092C12B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DEEABA4C13BBE0490092C12B /* Foundation.framework */; };
|
11
|
+
DEEABA5013BBE0490092C12B /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = DEEABA4F13BBE0490092C12B /* main.m */; };
|
12
|
+
DEEABA5A13BBE0A50092C12B /* ScriptingBridge.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DEEABA5913BBE0A50092C12B /* ScriptingBridge.framework */; };
|
13
|
+
/* End PBXBuildFile section */
|
14
|
+
|
15
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
16
|
+
DEEABA4613BBE0490092C12B /* CopyFiles */ = {
|
17
|
+
isa = PBXCopyFilesBuildPhase;
|
18
|
+
buildActionMask = 2147483647;
|
19
|
+
dstPath = /usr/share/man/man1/;
|
20
|
+
dstSubfolderSpec = 0;
|
21
|
+
files = (
|
22
|
+
);
|
23
|
+
runOnlyForDeploymentPostprocessing = 1;
|
24
|
+
};
|
25
|
+
/* End PBXCopyFilesBuildPhase section */
|
26
|
+
|
27
|
+
/* Begin PBXFileReference section */
|
28
|
+
DEEABA4813BBE0490092C12B /* vitunes */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = vitunes; sourceTree = BUILT_PRODUCTS_DIR; };
|
29
|
+
DEEABA4C13BBE0490092C12B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
30
|
+
DEEABA4F13BBE0490092C12B /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
31
|
+
DEEABA5213BBE0490092C12B /* vitunes-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "vitunes-Prefix.pch"; sourceTree = "<group>"; };
|
32
|
+
DEEABA5313BBE0490092C12B /* vitunes.1 */ = {isa = PBXFileReference; lastKnownFileType = text.man; path = vitunes.1; sourceTree = "<group>"; };
|
33
|
+
DEEABA5913BBE0A50092C12B /* ScriptingBridge.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ScriptingBridge.framework; path = System/Library/Frameworks/ScriptingBridge.framework; sourceTree = SDKROOT; };
|
34
|
+
DEEABA5B13BBE0C20092C12B /* iTunes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iTunes.h; sourceTree = SOURCE_ROOT; };
|
35
|
+
/* End PBXFileReference section */
|
36
|
+
|
37
|
+
/* Begin PBXFrameworksBuildPhase section */
|
38
|
+
DEEABA4513BBE0490092C12B /* Frameworks */ = {
|
39
|
+
isa = PBXFrameworksBuildPhase;
|
40
|
+
buildActionMask = 2147483647;
|
41
|
+
files = (
|
42
|
+
DEEABA5A13BBE0A50092C12B /* ScriptingBridge.framework in Frameworks */,
|
43
|
+
DEEABA4D13BBE0490092C12B /* Foundation.framework in Frameworks */,
|
44
|
+
);
|
45
|
+
runOnlyForDeploymentPostprocessing = 0;
|
46
|
+
};
|
47
|
+
/* End PBXFrameworksBuildPhase section */
|
48
|
+
|
49
|
+
/* Begin PBXGroup section */
|
50
|
+
DEEABA3D13BBE0490092C12B = {
|
51
|
+
isa = PBXGroup;
|
52
|
+
children = (
|
53
|
+
DEEABA5913BBE0A50092C12B /* ScriptingBridge.framework */,
|
54
|
+
DEEABA4E13BBE0490092C12B /* vitunes */,
|
55
|
+
DEEABA4B13BBE0490092C12B /* Frameworks */,
|
56
|
+
DEEABA4913BBE0490092C12B /* Products */,
|
57
|
+
);
|
58
|
+
sourceTree = "<group>";
|
59
|
+
};
|
60
|
+
DEEABA4913BBE0490092C12B /* Products */ = {
|
61
|
+
isa = PBXGroup;
|
62
|
+
children = (
|
63
|
+
DEEABA4813BBE0490092C12B /* vitunes */,
|
64
|
+
);
|
65
|
+
name = Products;
|
66
|
+
sourceTree = "<group>";
|
67
|
+
};
|
68
|
+
DEEABA4B13BBE0490092C12B /* Frameworks */ = {
|
69
|
+
isa = PBXGroup;
|
70
|
+
children = (
|
71
|
+
DEEABA4C13BBE0490092C12B /* Foundation.framework */,
|
72
|
+
);
|
73
|
+
name = Frameworks;
|
74
|
+
sourceTree = "<group>";
|
75
|
+
};
|
76
|
+
DEEABA4E13BBE0490092C12B /* vitunes */ = {
|
77
|
+
isa = PBXGroup;
|
78
|
+
children = (
|
79
|
+
DEEABA5B13BBE0C20092C12B /* iTunes.h */,
|
80
|
+
DEEABA4F13BBE0490092C12B /* main.m */,
|
81
|
+
DEEABA5313BBE0490092C12B /* vitunes.1 */,
|
82
|
+
DEEABA5113BBE0490092C12B /* Supporting Files */,
|
83
|
+
);
|
84
|
+
path = vitunes;
|
85
|
+
sourceTree = "<group>";
|
86
|
+
};
|
87
|
+
DEEABA5113BBE0490092C12B /* Supporting Files */ = {
|
88
|
+
isa = PBXGroup;
|
89
|
+
children = (
|
90
|
+
DEEABA5213BBE0490092C12B /* vitunes-Prefix.pch */,
|
91
|
+
);
|
92
|
+
name = "Supporting Files";
|
93
|
+
sourceTree = "<group>";
|
94
|
+
};
|
95
|
+
/* End PBXGroup section */
|
96
|
+
|
97
|
+
/* Begin PBXNativeTarget section */
|
98
|
+
DEEABA4713BBE0490092C12B /* vitunes */ = {
|
99
|
+
isa = PBXNativeTarget;
|
100
|
+
buildConfigurationList = DEEABA5613BBE0490092C12B /* Build configuration list for PBXNativeTarget "vitunes" */;
|
101
|
+
buildPhases = (
|
102
|
+
DEEABA4413BBE0490092C12B /* Sources */,
|
103
|
+
DEEABA4513BBE0490092C12B /* Frameworks */,
|
104
|
+
DEEABA4613BBE0490092C12B /* CopyFiles */,
|
105
|
+
);
|
106
|
+
buildRules = (
|
107
|
+
);
|
108
|
+
dependencies = (
|
109
|
+
);
|
110
|
+
name = vitunes;
|
111
|
+
productName = vitunes;
|
112
|
+
productReference = DEEABA4813BBE0490092C12B /* vitunes */;
|
113
|
+
productType = "com.apple.product-type.tool";
|
114
|
+
};
|
115
|
+
/* End PBXNativeTarget section */
|
116
|
+
|
117
|
+
/* Begin PBXProject section */
|
118
|
+
DEEABA3F13BBE0490092C12B /* Project object */ = {
|
119
|
+
isa = PBXProject;
|
120
|
+
attributes = {
|
121
|
+
ORGANIZATIONNAME = "Software by Daniel Choi";
|
122
|
+
};
|
123
|
+
buildConfigurationList = DEEABA4213BBE0490092C12B /* Build configuration list for PBXProject "vitunes" */;
|
124
|
+
compatibilityVersion = "Xcode 3.2";
|
125
|
+
developmentRegion = English;
|
126
|
+
hasScannedForEncodings = 0;
|
127
|
+
knownRegions = (
|
128
|
+
en,
|
129
|
+
);
|
130
|
+
mainGroup = DEEABA3D13BBE0490092C12B;
|
131
|
+
productRefGroup = DEEABA4913BBE0490092C12B /* Products */;
|
132
|
+
projectDirPath = "";
|
133
|
+
projectRoot = "";
|
134
|
+
targets = (
|
135
|
+
DEEABA4713BBE0490092C12B /* vitunes */,
|
136
|
+
);
|
137
|
+
};
|
138
|
+
/* End PBXProject section */
|
139
|
+
|
140
|
+
/* Begin PBXSourcesBuildPhase section */
|
141
|
+
DEEABA4413BBE0490092C12B /* Sources */ = {
|
142
|
+
isa = PBXSourcesBuildPhase;
|
143
|
+
buildActionMask = 2147483647;
|
144
|
+
files = (
|
145
|
+
DEEABA5013BBE0490092C12B /* main.m in Sources */,
|
146
|
+
);
|
147
|
+
runOnlyForDeploymentPostprocessing = 0;
|
148
|
+
};
|
149
|
+
/* End PBXSourcesBuildPhase section */
|
150
|
+
|
151
|
+
/* Begin XCBuildConfiguration section */
|
152
|
+
DEEABA5413BBE0490092C12B /* Debug */ = {
|
153
|
+
isa = XCBuildConfiguration;
|
154
|
+
buildSettings = {
|
155
|
+
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
156
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
157
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
158
|
+
GCC_PREPROCESSOR_DEFINITIONS = DEBUG;
|
159
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
160
|
+
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
161
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
162
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
163
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
164
|
+
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
165
|
+
ONLY_ACTIVE_ARCH = YES;
|
166
|
+
SDKROOT = macosx;
|
167
|
+
};
|
168
|
+
name = Debug;
|
169
|
+
};
|
170
|
+
DEEABA5513BBE0490092C12B /* Release */ = {
|
171
|
+
isa = XCBuildConfiguration;
|
172
|
+
buildSettings = {
|
173
|
+
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
174
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
175
|
+
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
176
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
177
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
178
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
179
|
+
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
180
|
+
SDKROOT = macosx;
|
181
|
+
};
|
182
|
+
name = Release;
|
183
|
+
};
|
184
|
+
DEEABA5713BBE0490092C12B /* Debug */ = {
|
185
|
+
isa = XCBuildConfiguration;
|
186
|
+
buildSettings = {
|
187
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
188
|
+
COPY_PHASE_STRIP = NO;
|
189
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
190
|
+
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
191
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
192
|
+
GCC_PREFIX_HEADER = "vitunes/vitunes-Prefix.pch";
|
193
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
194
|
+
};
|
195
|
+
name = Debug;
|
196
|
+
};
|
197
|
+
DEEABA5813BBE0490092C12B /* Release */ = {
|
198
|
+
isa = XCBuildConfiguration;
|
199
|
+
buildSettings = {
|
200
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
201
|
+
COPY_PHASE_STRIP = YES;
|
202
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
203
|
+
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
204
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
205
|
+
GCC_PREFIX_HEADER = "vitunes/vitunes-Prefix.pch";
|
206
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
207
|
+
};
|
208
|
+
name = Release;
|
209
|
+
};
|
210
|
+
/* End XCBuildConfiguration section */
|
211
|
+
|
212
|
+
/* Begin XCConfigurationList section */
|
213
|
+
DEEABA4213BBE0490092C12B /* Build configuration list for PBXProject "vitunes" */ = {
|
214
|
+
isa = XCConfigurationList;
|
215
|
+
buildConfigurations = (
|
216
|
+
DEEABA5413BBE0490092C12B /* Debug */,
|
217
|
+
DEEABA5513BBE0490092C12B /* Release */,
|
218
|
+
);
|
219
|
+
defaultConfigurationIsVisible = 0;
|
220
|
+
defaultConfigurationName = Release;
|
221
|
+
};
|
222
|
+
DEEABA5613BBE0490092C12B /* Build configuration list for PBXNativeTarget "vitunes" */ = {
|
223
|
+
isa = XCConfigurationList;
|
224
|
+
buildConfigurations = (
|
225
|
+
DEEABA5713BBE0490092C12B /* Debug */,
|
226
|
+
DEEABA5813BBE0490092C12B /* Release */,
|
227
|
+
);
|
228
|
+
defaultConfigurationIsVisible = 0;
|
229
|
+
};
|
230
|
+
/* End XCConfigurationList section */
|
231
|
+
};
|
232
|
+
rootObject = DEEABA3F13BBE0490092C12B /* Project object */;
|
233
|
+
}
|
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: vitunes
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 3
|
9
|
+
version: 0.0.3
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Daniel Choi
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2011-07-01 00:00:00 -04:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: Control iTunes with Vim
|
22
|
+
email:
|
23
|
+
- dhchoi@gmail.com
|
24
|
+
executables:
|
25
|
+
- vitunes
|
26
|
+
- vitunes-help
|
27
|
+
- vitunes-install
|
28
|
+
extensions: []
|
29
|
+
|
30
|
+
extra_rdoc_files: []
|
31
|
+
|
32
|
+
files:
|
33
|
+
- .gitignore
|
34
|
+
- NOTES
|
35
|
+
- README.markdown
|
36
|
+
- Rakefile
|
37
|
+
- bin/vitunes
|
38
|
+
- bin/vitunes-help
|
39
|
+
- bin/vitunes-install
|
40
|
+
- iTunes.h
|
41
|
+
- lib/plugin.erb
|
42
|
+
- lib/vitunes-tool-objc
|
43
|
+
- lib/vitunes.rb
|
44
|
+
- lib/vitunes.vim
|
45
|
+
- lib/vitunes/version.rb
|
46
|
+
- vitunes.gemspec
|
47
|
+
- vitunes.xcodeproj/project.pbxproj
|
48
|
+
- vitunes.xcodeproj/project.xcworkspace/contents.xcworkspacedata
|
49
|
+
- vitunes/main.m
|
50
|
+
- vitunes/vitunes-Prefix.pch
|
51
|
+
- vitunes/vitunes.1
|
52
|
+
has_rdoc: true
|
53
|
+
homepage: http://danielchoi.com/software/vitunes.html
|
54
|
+
licenses: []
|
55
|
+
|
56
|
+
post_install_message: Now please run vitunes-install to install the Vim plugin
|
57
|
+
rdoc_options: []
|
58
|
+
|
59
|
+
require_paths:
|
60
|
+
- lib
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
segments:
|
67
|
+
- 1
|
68
|
+
- 8
|
69
|
+
- 6
|
70
|
+
version: 1.8.6
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
segments:
|
77
|
+
- 0
|
78
|
+
version: "0"
|
79
|
+
requirements: []
|
80
|
+
|
81
|
+
rubyforge_project: vitunes
|
82
|
+
rubygems_version: 1.3.7
|
83
|
+
signing_key:
|
84
|
+
specification_version: 3
|
85
|
+
summary: A Vim interface to iTunes
|
86
|
+
test_files: []
|
87
|
+
|