vim-jar 0.0.2 → 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.
Files changed (91) hide show
  1. data/Gemfile.lock +4 -1
  2. data/bin/vim-jar +1 -57
  3. data/bundler/ruby/1.8/bin/rake2thor +19 -0
  4. data/bundler/ruby/1.8/bin/thor +19 -0
  5. data/bundler/ruby/1.8/gems/thor-0.14.6/CHANGELOG.rdoc +103 -0
  6. data/bundler/ruby/1.8/gems/thor-0.14.6/LICENSE +20 -0
  7. data/bundler/ruby/1.8/gems/thor-0.14.6/README.md +307 -0
  8. data/bundler/ruby/1.8/gems/thor-0.14.6/Thorfile +24 -0
  9. data/bundler/ruby/1.8/gems/thor-0.14.6/bin/rake2thor +86 -0
  10. data/bundler/ruby/1.8/gems/thor-0.14.6/bin/thor +6 -0
  11. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions/create_file.rb +105 -0
  12. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions/create_link.rb +57 -0
  13. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions/directory.rb +93 -0
  14. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions/empty_directory.rb +134 -0
  15. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions/file_manipulation.rb +270 -0
  16. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions/inject_into_file.rb +109 -0
  17. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions.rb +314 -0
  18. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/base.rb +579 -0
  19. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/core_ext/file_binary_read.rb +9 -0
  20. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/core_ext/hash_with_indifferent_access.rb +75 -0
  21. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/core_ext/ordered_hash.rb +100 -0
  22. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/error.rb +30 -0
  23. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/group.rb +273 -0
  24. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/invocation.rb +168 -0
  25. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/parser/argument.rb +67 -0
  26. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/parser/arguments.rb +161 -0
  27. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/parser/option.rb +120 -0
  28. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/parser/options.rb +173 -0
  29. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/parser.rb +4 -0
  30. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/rake_compat.rb +66 -0
  31. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/runner.rb +309 -0
  32. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/shell/basic.rb +290 -0
  33. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/shell/color.rb +108 -0
  34. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/shell/html.rb +121 -0
  35. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/shell.rb +88 -0
  36. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/task.rb +114 -0
  37. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/util.rb +229 -0
  38. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/version.rb +3 -0
  39. data/bundler/ruby/1.8/gems/thor-0.14.6/lib/thor.rb +334 -0
  40. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/actions/create_file_spec.rb +170 -0
  41. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/actions/directory_spec.rb +136 -0
  42. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/actions/empty_directory_spec.rb +98 -0
  43. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/actions/file_manipulation_spec.rb +310 -0
  44. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/actions/inject_into_file_spec.rb +135 -0
  45. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/actions_spec.rb +322 -0
  46. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/base_spec.rb +269 -0
  47. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/core_ext/hash_with_indifferent_access_spec.rb +43 -0
  48. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/core_ext/ordered_hash_spec.rb +115 -0
  49. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/application.rb +2 -0
  50. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/bundle/execute.rb +6 -0
  51. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/bundle/main.thor +1 -0
  52. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/doc/%file_name%.rb.tt +1 -0
  53. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/doc/README +3 -0
  54. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/doc/block_helper.rb +3 -0
  55. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/doc/components/.empty_directory +0 -0
  56. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/doc/config.rb +1 -0
  57. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/group.thor +114 -0
  58. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/invoke.thor +112 -0
  59. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/path with spaces +0 -0
  60. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/script.thor +184 -0
  61. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/task.thor +10 -0
  62. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/group_spec.rb +178 -0
  63. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/invocation_spec.rb +100 -0
  64. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/parser/argument_spec.rb +47 -0
  65. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/parser/arguments_spec.rb +64 -0
  66. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/parser/option_spec.rb +202 -0
  67. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/parser/options_spec.rb +319 -0
  68. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/rake_compat_spec.rb +68 -0
  69. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/register_spec.rb +92 -0
  70. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/runner_spec.rb +210 -0
  71. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/shell/basic_spec.rb +223 -0
  72. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/shell/color_spec.rb +41 -0
  73. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/shell/html_spec.rb +27 -0
  74. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/shell_spec.rb +47 -0
  75. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/spec_helper.rb +54 -0
  76. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/task_spec.rb +69 -0
  77. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/thor_spec.rb +334 -0
  78. data/bundler/ruby/1.8/gems/thor-0.14.6/spec/util_spec.rb +163 -0
  79. data/bundler/ruby/1.8/specifications/thor-0.14.6.gemspec +48 -0
  80. data/lib/vim-jar/cli.rb +84 -67
  81. data/lib/vim-jar/config.rb +9 -0
  82. data/lib/vim-jar/installer/git.rb +8 -7
  83. data/lib/vim-jar/plugin.rb +61 -18
  84. data/lib/vim-jar/version.rb +1 -1
  85. data/lib/vim-jar.rb +1 -0
  86. data/spec/vim-jar/config_spec.rb +17 -0
  87. data/spec/vim-jar/git-config +16 -0
  88. data/spec/vim-jar/gitmodules +6 -0
  89. data/spec/vim-jar/plugin_spec.rb +46 -0
  90. data/vim-jar.gemspec +1 -0
  91. metadata +104 -9
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vim-jar
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - allen wei
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-11-29 00:00:00 +08:00
18
+ date: 2010-11-30 00:00:00 +08:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -33,7 +33,7 @@ dependencies:
33
33
  type: :runtime
34
34
  version_requirements: *id001
35
35
  - !ruby/object:Gem::Dependency
36
- name: rspec
36
+ name: thor
37
37
  prerelease: false
38
38
  requirement: &id002 !ruby/object:Gem::Requirement
39
39
  none: false
@@ -44,10 +44,10 @@ dependencies:
44
44
  segments:
45
45
  - 0
46
46
  version: "0"
47
- type: :development
47
+ type: :runtime
48
48
  version_requirements: *id002
49
49
  - !ruby/object:Gem::Dependency
50
- name: rr
50
+ name: rspec
51
51
  prerelease: false
52
52
  requirement: &id003 !ruby/object:Gem::Requirement
53
53
  none: false
@@ -61,7 +61,7 @@ dependencies:
61
61
  type: :development
62
62
  version_requirements: *id003
63
63
  - !ruby/object:Gem::Dependency
64
- name: fuubar
64
+ name: rr
65
65
  prerelease: false
66
66
  requirement: &id004 !ruby/object:Gem::Requirement
67
67
  none: false
@@ -75,7 +75,7 @@ dependencies:
75
75
  type: :development
76
76
  version_requirements: *id004
77
77
  - !ruby/object:Gem::Dependency
78
- name: ruby-debug
78
+ name: fuubar
79
79
  prerelease: false
80
80
  requirement: &id005 !ruby/object:Gem::Requirement
81
81
  none: false
@@ -88,6 +88,20 @@ dependencies:
88
88
  version: "0"
89
89
  type: :development
90
90
  version_requirements: *id005
91
+ - !ruby/object:Gem::Dependency
92
+ name: ruby-debug
93
+ prerelease: false
94
+ requirement: &id006 !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ hash: 3
100
+ segments:
101
+ - 0
102
+ version: "0"
103
+ type: :development
104
+ version_requirements: *id006
91
105
  description: ""
92
106
  email:
93
107
  - digruby@gmail.com
@@ -114,8 +128,10 @@ files:
114
128
  - bundler/ruby/1.8/bin/multigem
115
129
  - bundler/ruby/1.8/bin/multiruby
116
130
  - bundler/ruby/1.8/bin/multiruby_setup
131
+ - bundler/ruby/1.8/bin/rake2thor
117
132
  - bundler/ruby/1.8/bin/rdebug
118
133
  - bundler/ruby/1.8/bin/rspec
134
+ - bundler/ruby/1.8/bin/thor
119
135
  - bundler/ruby/1.8/bin/unit_diff
120
136
  - bundler/ruby/1.8/bin/vim-jar
121
137
  - bundler/ruby/1.8/bin/zentest
@@ -1098,6 +1114,80 @@ files:
1098
1114
  - bundler/ruby/1.8/gems/ruby-progressbar-0.0.9/RUBY_LICENSE
1099
1115
  - bundler/ruby/1.8/gems/ruby-progressbar-0.0.9/lib/progressbar.rb
1100
1116
  - bundler/ruby/1.8/gems/ruby-progressbar-0.0.9/test.rb
1117
+ - bundler/ruby/1.8/gems/thor-0.14.6/CHANGELOG.rdoc
1118
+ - bundler/ruby/1.8/gems/thor-0.14.6/LICENSE
1119
+ - bundler/ruby/1.8/gems/thor-0.14.6/README.md
1120
+ - bundler/ruby/1.8/gems/thor-0.14.6/Thorfile
1121
+ - bundler/ruby/1.8/gems/thor-0.14.6/bin/rake2thor
1122
+ - bundler/ruby/1.8/gems/thor-0.14.6/bin/thor
1123
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor.rb
1124
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions.rb
1125
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions/create_file.rb
1126
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions/create_link.rb
1127
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions/directory.rb
1128
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions/empty_directory.rb
1129
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions/file_manipulation.rb
1130
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/actions/inject_into_file.rb
1131
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/base.rb
1132
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/core_ext/file_binary_read.rb
1133
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/core_ext/hash_with_indifferent_access.rb
1134
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/core_ext/ordered_hash.rb
1135
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/error.rb
1136
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/group.rb
1137
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/invocation.rb
1138
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/parser.rb
1139
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/parser/argument.rb
1140
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/parser/arguments.rb
1141
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/parser/option.rb
1142
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/parser/options.rb
1143
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/rake_compat.rb
1144
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/runner.rb
1145
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/shell.rb
1146
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/shell/basic.rb
1147
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/shell/color.rb
1148
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/shell/html.rb
1149
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/task.rb
1150
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/util.rb
1151
+ - bundler/ruby/1.8/gems/thor-0.14.6/lib/thor/version.rb
1152
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/actions/create_file_spec.rb
1153
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/actions/directory_spec.rb
1154
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/actions/empty_directory_spec.rb
1155
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/actions/file_manipulation_spec.rb
1156
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/actions/inject_into_file_spec.rb
1157
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/actions_spec.rb
1158
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/base_spec.rb
1159
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/core_ext/hash_with_indifferent_access_spec.rb
1160
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/core_ext/ordered_hash_spec.rb
1161
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/application.rb
1162
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/bundle/execute.rb
1163
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/bundle/main.thor
1164
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/doc/%file_name%.rb.tt
1165
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/doc/README
1166
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/doc/block_helper.rb
1167
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/doc/components/.empty_directory
1168
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/doc/config.rb
1169
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/group.thor
1170
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/invoke.thor
1171
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/path with spaces
1172
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/script.thor
1173
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/fixtures/task.thor
1174
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/group_spec.rb
1175
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/invocation_spec.rb
1176
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/parser/argument_spec.rb
1177
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/parser/arguments_spec.rb
1178
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/parser/option_spec.rb
1179
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/parser/options_spec.rb
1180
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/rake_compat_spec.rb
1181
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/register_spec.rb
1182
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/runner_spec.rb
1183
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/shell/basic_spec.rb
1184
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/shell/color_spec.rb
1185
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/shell/html_spec.rb
1186
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/shell_spec.rb
1187
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/spec_helper.rb
1188
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/task_spec.rb
1189
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/thor_spec.rb
1190
+ - bundler/ruby/1.8/gems/thor-0.14.6/spec/util_spec.rb
1101
1191
  - bundler/ruby/1.8/specifications/RubyInline-3.8.6.gemspec
1102
1192
  - bundler/ruby/1.8/specifications/ZenTest-4.4.0.gemspec
1103
1193
  - bundler/ruby/1.8/specifications/columnize-0.3.2.gemspec
@@ -1116,6 +1206,7 @@ files:
1116
1206
  - bundler/ruby/1.8/specifications/ruby-debug-0.10.4.gemspec
1117
1207
  - bundler/ruby/1.8/specifications/ruby-debug-base-0.10.4.gemspec
1118
1208
  - bundler/ruby/1.8/specifications/ruby-progressbar-0.0.9.gemspec
1209
+ - bundler/ruby/1.8/specifications/thor-0.14.6.gemspec
1119
1210
  - lib/vim-jar.rb
1120
1211
  - lib/vim-jar/cli.rb
1121
1212
  - lib/vim-jar/config.rb
@@ -1131,6 +1222,8 @@ files:
1131
1222
  - script/github_crawler.rb
1132
1223
  - spec/spec_helper.rb
1133
1224
  - spec/vim-jar/config_spec.rb
1225
+ - spec/vim-jar/git-config
1226
+ - spec/vim-jar/gitmodules
1134
1227
  - spec/vim-jar/importer/github_spec.rb
1135
1228
  - spec/vim-jar/importer/pages/vim-rails-github.html
1136
1229
  - spec/vim-jar/importer_spec.rb
@@ -1176,6 +1269,8 @@ summary: The missing plugin manager for VIM
1176
1269
  test_files:
1177
1270
  - spec/spec_helper.rb
1178
1271
  - spec/vim-jar/config_spec.rb
1272
+ - spec/vim-jar/git-config
1273
+ - spec/vim-jar/gitmodules
1179
1274
  - spec/vim-jar/importer/github_spec.rb
1180
1275
  - spec/vim-jar/importer/pages/vim-rails-github.html
1181
1276
  - spec/vim-jar/importer_spec.rb