vimjar 0.3.0

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 (51) hide show
  1. data/.gitignore +8 -0
  2. data/.rspec +2 -0
  3. data/.rvmrc +1 -0
  4. data/.travis.yml +11 -0
  5. data/Gemfile +4 -0
  6. data/Gemfile.lock +85 -0
  7. data/Guardfile +21 -0
  8. data/LICENSE +21 -0
  9. data/README.md +89 -0
  10. data/Rakefile +2 -0
  11. data/bin/vimjar +10 -0
  12. data/cucumber.yml +6 -0
  13. data/features/init.feature +37 -0
  14. data/features/install.feature +8 -0
  15. data/features/list.feature +7 -0
  16. data/features/step_definitions/command_steps.rb +21 -0
  17. data/features/step_definitions/environment_steps.rb +34 -0
  18. data/features/step_definitions/file_check_steps.rb +20 -0
  19. data/features/step_definitions/message_steps.rb +23 -0
  20. data/features/step_definitions/plugin_steps.rb +4 -0
  21. data/features/support/env.rb +22 -0
  22. data/features/support/hook.rb +8 -0
  23. data/features/support/stubs.rb +0 -0
  24. data/features/uninstall.feature +12 -0
  25. data/features/update.feature +7 -0
  26. data/lib/templates/BundleFile +1 -0
  27. data/lib/vim-jar/cli.rb +91 -0
  28. data/lib/vim-jar/config.rb +126 -0
  29. data/lib/vim-jar/installer/base.rb +9 -0
  30. data/lib/vim-jar/installer/git.rb +66 -0
  31. data/lib/vim-jar/installer.rb +7 -0
  32. data/lib/vim-jar/loader.rb +32 -0
  33. data/lib/vim-jar/pathogen/pathogen_v1.2.vim +139 -0
  34. data/lib/vim-jar/plugin/git.rb +41 -0
  35. data/lib/vim-jar/plugin.rb +23 -0
  36. data/lib/vim-jar/version.rb +5 -0
  37. data/lib/vim-jar.rb +24 -0
  38. data/script/github_crawler.rb +76 -0
  39. data/spec/spec_helper.rb +24 -0
  40. data/spec/vim-jar/config_spec.rb +126 -0
  41. data/spec/vim-jar/git-config +16 -0
  42. data/spec/vim-jar/gitmodules +6 -0
  43. data/spec/vim-jar/installer/git_spec.rb +51 -0
  44. data/spec/vim-jar/loader_spec.rb +43 -0
  45. data/spec/vim-jar/plugin/git-config +1 -0
  46. data/spec/vim-jar/plugin/git_spec.rb +41 -0
  47. data/spec/vim-jar/plugin/gitmodules +1 -0
  48. data/spec/vim-jar/plugin_spec.rb +11 -0
  49. data/spec/vim-jar_test.rb +17 -0
  50. data/vimjar.gemspec +33 -0
  51. metadata +302 -0
@@ -0,0 +1,126 @@
1
+ require 'spec_helper'
2
+
3
+ describe Vim::Jar::Config do
4
+ let(:config) { Vim::Jar::Config.instance }
5
+
6
+ context ".user_home" do
7
+ it "should return user home dir" do
8
+ config.user_home.to_s.should == ENV["VIM_JAR_USER_HOME"]
9
+ end
10
+ end
11
+
12
+ context ".vim_home" do
13
+ it "should in user_home/.vim by default" do
14
+ config.vim_home.to_s.should == config.user_home.join(".vim").to_s
15
+ end
16
+ end
17
+
18
+ context ".vimrc_path" do
19
+ it "should in user_home/.vimrc by default" do
20
+ config.vimrc_path.to_s.should == config.user_home.join(".vimrc").to_s
21
+ end
22
+ end
23
+
24
+ context ".under_git" do
25
+ before do
26
+ config.should_receive(:vim_home).and_return(Pathname.new("."))
27
+ end
28
+
29
+ it "should be true if has .git in vim_home" do
30
+ File.should_receive(:exist?).with(any_args).and_return(true)
31
+ config.instance_variable_set("@under_git", nil)
32
+ config.under_git?.should be_true
33
+ end
34
+
35
+ it "should be false if no .git in vim_home" do
36
+ File.should_receive(:exist?).with(any_args).and_return(false)
37
+ config.instance_variable_set("@under_git", nil)
38
+ config.under_git?.should be_false
39
+ end
40
+ end
41
+
42
+ context ".bundle_home" do
43
+ it "should be in .vim/bundle" do
44
+ path = Pathname.new(".")
45
+ config.should_receive(:vim_home).and_return(path)
46
+ config.bundle_home.to_s.should == path.join("bundle").to_s
47
+ end
48
+ end
49
+
50
+ context ".gitmodules_file_path" do
51
+ it "should be in .vim/.gitmodules" do
52
+ path = Pathname.new(".")
53
+ config.should_receive(:vim_home).and_return(path)
54
+
55
+ config.gitmodules_file_path.to_s.should == path.join(".gitmodules").to_s
56
+ end
57
+ end
58
+
59
+ context ".gitconfig_file_path" do
60
+ it "should be in .vim/.git/config" do
61
+ path = Pathname.new(".")
62
+ config.should_receive(:vim_home).and_return(path)
63
+ config.gitconfig_file_path.to_s.should == path.join(".git/config").to_s
64
+ end
65
+ end
66
+
67
+ context ".bundle_file_path" do
68
+ it "should be in .vim/BundleFile" do
69
+ path = Pathname.new(".")
70
+ config.should_receive(:vim_home).and_return(path)
71
+ config.bundle_file_path.to_s.should == path.join("BundleFile").to_s
72
+ end
73
+ end
74
+
75
+ context ".bundle_template_file_path" do
76
+ it "should be in lib/templates/BundleFile" do
77
+ config.bundle_template_file_path.should eq config.vim_jar_lib.join("templates", "BundleFile")
78
+ end
79
+ end
80
+
81
+
82
+ context ".check" do
83
+ it "should raise exception if folder check not pass" do
84
+ config.should_receive(:check_vim_pathes!).and_raise(Vim::Jar::InitError.new)
85
+ lambda {config.check}.should raise_error Vim::Jar::InitError
86
+ end
87
+
88
+ it "should call init_git_repo, setup_pathogen and create_bundle_home" do
89
+ config.should_receive(:check_vim_pathes!)
90
+ config.should_receive(:under_git?).and_return(false)
91
+ config.should_receive(:init_git_repo)
92
+ config.should_receive(:setup_pathogen)
93
+ config.should_receive(:create_bundle_home)
94
+ config.should_receive(:init_bundle_file)
95
+ config.check
96
+ end
97
+ end
98
+
99
+ context ".init_git_repo" do
100
+ it "should do system call for 'git init'" do
101
+ config.init_git_repo
102
+ File.exist? config.vim_home.join(".git")
103
+ end
104
+ end
105
+
106
+ context ".setup_pathogen" do
107
+ it "call install_pathogen" do
108
+ config.setup_pathogen
109
+ File.exist? config.vim_home.join(".git")
110
+ end
111
+ end
112
+
113
+ context ".create_bundle_home" do
114
+ it "should mkdir at bundle_home" do
115
+ config.create_bundle_home
116
+ File.exist? config.bundle_home
117
+ end
118
+ end
119
+
120
+ context ".init_bundle_file" do
121
+ it "should copy BundleFile template" do
122
+ config.init_bundle_file
123
+ File.read(config.bundle_file_path).should eq File.read(config.bundle_template_file_path)
124
+ end
125
+ end
126
+ end
@@ -0,0 +1,16 @@
1
+ [core]
2
+ repositoryformatversion = 0
3
+ filemode = true
4
+ bare = false
5
+ logallrefupdates = true
6
+ ignorecase = true
7
+ [remote "origin"]
8
+ fetch = +refs/heads/*:refs/remotes/origin/*
9
+ url = git@github.com:allenwei/vim-config.git
10
+ [branch "master"]
11
+ remote = origin
12
+ merge = refs/heads/master
13
+ [submodule "bundle/vim-rails"]
14
+ url = git://github.com/tpope/vim-rails.git
15
+ [submodule "bundle/VimClojure"]
16
+ url = git://github.com/vim-scripts/VimClojure.git
@@ -0,0 +1,6 @@
1
+ [submodule "bundle/vim-cucumber"]
2
+ path = bundle/vim-cucumber
3
+ url = git://github.com/tpope/vim-cucumber.git
4
+ [submodule "bundle/vim-afterimage"]
5
+ path = bundle/vim-afterimage
6
+ url = git://github.com/tpope/vim-afterimage.git
@@ -0,0 +1,51 @@
1
+ require 'spec_helper'
2
+
3
+ describe Vim::Jar::Installer::Git do
4
+
5
+ context "#uninstall_for" do
6
+ context ".remove_ref_from_gitmodules" do
7
+ before(:each) do
8
+ @gitmodules_file_path = File.expand_path(".././gitmodules", File.dirname(__FILE__))
9
+ @old_str = File.read @gitmodules_file_path
10
+ Vim::Jar::Plugin.config.stub(:gitmodules_file_path => @gitmodules_file_path)
11
+ end
12
+
13
+ after(:each) do
14
+ File.open(@gitmodules_file_path,"w+") do |f|
15
+ f.puts @old_str
16
+ end
17
+ end
18
+
19
+ it "should remove lines include plugin name" do
20
+ Vim::Jar::Installer::Git.remove_ref_from_gitmodules("vim-cucumber")
21
+ new_str = File.read @gitmodules_file_path
22
+ new_str.split("\n").should have(3).items
23
+ end
24
+ end
25
+
26
+
27
+ context ".remove_ref_from_gitmodules" do
28
+ before(:each) do
29
+ @gitconfig_file_path = File.expand_path(".././git-config", File.dirname(__FILE__))
30
+ @old_str = File.read @gitconfig_file_path
31
+ Vim::Jar::Plugin.config.stub(:gitconfig_file_path => @gitconfig_file_path)
32
+ end
33
+
34
+ after(:each) do
35
+ File.open(@gitconfig_file_path, "w+") do |f|
36
+ f.puts @old_str
37
+ end
38
+ end
39
+
40
+ it "should remove lines include plugin name" do
41
+ Vim::Jar::Installer::Git.remove_ref_from_git_config("vim-rails")
42
+ new_str = File.read @gitconfig_file_path
43
+ new_str.should match /\[core\]/
44
+ new_str.should match /\[remote \"origin\"\]/
45
+ new_str.should match /\[branch \"master\"\]/
46
+ new_str.should match /\[submodule \"bundle\/VimClojure\"\]/
47
+ new_str.should_not match /vim-rails/
48
+ end
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,43 @@
1
+ require 'spec_helper'
2
+
3
+ describe Vim::Jar::Loader do
4
+ let(:loader) { Vim::Jar::Loader.new }
5
+ context "#execute" do
6
+ it "should handle plugin" do
7
+ loader.should_receive(:read_bundle_file).and_return <<-EOF
8
+ plugin "git://github.com/tpope/vim-fugitive.git"
9
+ EOF
10
+ loader.should_receive(:plugin).with("git://github.com/tpope/vim-fugitive.git")
11
+ loader.execute
12
+ end
13
+
14
+ it "should handle theme" do
15
+ loader.should_receive(:read_bundle_file).and_return <<-EOF
16
+ theme "git://github.com/gilesbowkett/ir_black.git"
17
+ EOF
18
+ loader.should_receive(:theme).with("git://github.com/gilesbowkett/ir_black.git")
19
+ loader.execute
20
+ end
21
+ end
22
+
23
+ context "#plugin" do
24
+ it "should build plugin and install" do
25
+ Vim::Jar::Plugin::Git.any_instance.should_receive(:install)
26
+ loader.plugin("git://github.com/tpope/vim-fugitive.git")
27
+ end
28
+ end
29
+
30
+ context "#read_bundle_file" do
31
+ it "should read file from bundle_file_path" do
32
+ loader.config.init_bundle_file
33
+ loader.read_bundle_file.should eq File.read(loader.config.bundle_file_path)
34
+ end
35
+
36
+ it "should raise InstallError if BundleFile is not exist" do
37
+ File.should_receive(:exist?).with(loader.config.bundle_file_path).and_return(false)
38
+ lambda {
39
+ loader.read_bundle_file
40
+ }.should raise_error Vim::Jar::InstallError
41
+ end
42
+ end
43
+ end
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,41 @@
1
+ require 'spec_helper'
2
+
3
+ describe Vim::Jar::Plugin::Git do
4
+
5
+ let(:plugin) do
6
+ Vim::Jar::Plugin::Git.new("git://github.com/tpope/vim-cucumber.git")
7
+ end
8
+
9
+ describe "initialize" do
10
+ it "raise exception if it's not github" do
11
+ lambda {
12
+ Vim::Jar::Plugin::Git.new("git://something.com")
13
+ }.should raise_error Vim::Jar::InstallError
14
+ end
15
+
16
+ it "raise exception if it is not end with .git" do
17
+ lambda {
18
+ Vim::Jar::Plugin::Git.new("git://github.com/abc")
19
+ }.should raise_error Vim::Jar::InstallError
20
+ end
21
+
22
+ it "can parse repo name" do
23
+ p = Vim::Jar::Plugin::Git.new("git://github.com/tpope/vim-cucumber.git")
24
+ p.name.should eq "vim-cucumber"
25
+ end
26
+ end
27
+
28
+ describe "#install" do
29
+ it "should call install_to" do
30
+ plugin.should_receive(:install_to).with(plugin.url, plugin.target_path)
31
+ plugin.install
32
+ end
33
+ end
34
+
35
+ describe "#uninstall" do
36
+ it "should call uninstall_for" do
37
+ plugin.should_receive(:uninstall_for).with(plugin.name)
38
+ plugin.uninstall
39
+ end
40
+ end
41
+ end
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe Vim::Jar::Plugin do
4
+ context ".update" do
5
+ it "should run command 'git submodule update'" do
6
+ Vim::Jar::Plugin.should_receive(:system).with("git submodule update")
7
+ Vim::Jar::Plugin.update
8
+ end
9
+ end
10
+
11
+ end
@@ -0,0 +1,17 @@
1
+ require 'spec_helper'
2
+
3
+ describe Vim::Jar do
4
+ context ".config" do
5
+ it "should init config instance" do
6
+ config = Vim::Jar.config
7
+ config.should be_instance_of Vim::Jar::Config
8
+ end
9
+
10
+ it "should cache config instance" do
11
+ config = Vim::Jar.config
12
+ Vim::Jar.config.should equal config
13
+ end
14
+ end
15
+
16
+ end
17
+
data/vimjar.gemspec ADDED
@@ -0,0 +1,33 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "vim-jar/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "vimjar"
7
+ s.version = Vim::Jar::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["allen wei"]
10
+ s.email = ["digruby@gmail.com"]
11
+ s.homepage = "http://rubygems.org/gems/vim-jar"
12
+ s.summary = %q{The missing plugin manager for VIM}
13
+ s.description = %q{}
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
+ s.require_paths = ["lib"]
19
+
20
+ s.add_runtime_dependency('thor')
21
+
22
+ s.add_development_dependency('rake')
23
+ s.add_development_dependency('rspec')
24
+ s.add_development_dependency('fuubar')
25
+ s.add_development_dependency('aruba')
26
+ s.add_development_dependency('debugger')
27
+ s.add_development_dependency('cucumber')
28
+ s.add_development_dependency('growl')
29
+ s.add_development_dependency('rb-fsevent')
30
+ s.add_development_dependency('guard-rspec', "~> 1.2.0")
31
+ s.add_development_dependency('guard-cucumber', "~> 1.2.0")
32
+
33
+ end
metadata ADDED
@@ -0,0 +1,302 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vimjar
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - allen wei
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-07-21 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: thor
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: rspec
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: fuubar
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: aruba
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: debugger
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: cucumber
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ - !ruby/object:Gem::Dependency
127
+ name: growl
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ! '>='
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ - !ruby/object:Gem::Dependency
143
+ name: rb-fsevent
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ! '>='
148
+ - !ruby/object:Gem::Version
149
+ version: '0'
150
+ type: :development
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ! '>='
156
+ - !ruby/object:Gem::Version
157
+ version: '0'
158
+ - !ruby/object:Gem::Dependency
159
+ name: guard-rspec
160
+ requirement: !ruby/object:Gem::Requirement
161
+ none: false
162
+ requirements:
163
+ - - ~>
164
+ - !ruby/object:Gem::Version
165
+ version: 1.2.0
166
+ type: :development
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
170
+ requirements:
171
+ - - ~>
172
+ - !ruby/object:Gem::Version
173
+ version: 1.2.0
174
+ - !ruby/object:Gem::Dependency
175
+ name: guard-cucumber
176
+ requirement: !ruby/object:Gem::Requirement
177
+ none: false
178
+ requirements:
179
+ - - ~>
180
+ - !ruby/object:Gem::Version
181
+ version: 1.2.0
182
+ type: :development
183
+ prerelease: false
184
+ version_requirements: !ruby/object:Gem::Requirement
185
+ none: false
186
+ requirements:
187
+ - - ~>
188
+ - !ruby/object:Gem::Version
189
+ version: 1.2.0
190
+ description: ''
191
+ email:
192
+ - digruby@gmail.com
193
+ executables:
194
+ - vimjar
195
+ extensions: []
196
+ extra_rdoc_files: []
197
+ files:
198
+ - .gitignore
199
+ - .rspec
200
+ - .rvmrc
201
+ - .travis.yml
202
+ - Gemfile
203
+ - Gemfile.lock
204
+ - Guardfile
205
+ - LICENSE
206
+ - README.md
207
+ - Rakefile
208
+ - bin/vimjar
209
+ - cucumber.yml
210
+ - features/init.feature
211
+ - features/install.feature
212
+ - features/list.feature
213
+ - features/step_definitions/command_steps.rb
214
+ - features/step_definitions/environment_steps.rb
215
+ - features/step_definitions/file_check_steps.rb
216
+ - features/step_definitions/message_steps.rb
217
+ - features/step_definitions/plugin_steps.rb
218
+ - features/support/env.rb
219
+ - features/support/hook.rb
220
+ - features/support/stubs.rb
221
+ - features/uninstall.feature
222
+ - features/update.feature
223
+ - lib/templates/BundleFile
224
+ - lib/vim-jar.rb
225
+ - lib/vim-jar/cli.rb
226
+ - lib/vim-jar/config.rb
227
+ - lib/vim-jar/installer.rb
228
+ - lib/vim-jar/installer/base.rb
229
+ - lib/vim-jar/installer/git.rb
230
+ - lib/vim-jar/loader.rb
231
+ - lib/vim-jar/pathogen/pathogen_v1.2.vim
232
+ - lib/vim-jar/plugin.rb
233
+ - lib/vim-jar/plugin/git.rb
234
+ - lib/vim-jar/version.rb
235
+ - script/github_crawler.rb
236
+ - spec/spec_helper.rb
237
+ - spec/vim-jar/config_spec.rb
238
+ - spec/vim-jar/git-config
239
+ - spec/vim-jar/gitmodules
240
+ - spec/vim-jar/installer/git_spec.rb
241
+ - spec/vim-jar/loader_spec.rb
242
+ - spec/vim-jar/plugin/git-config
243
+ - spec/vim-jar/plugin/git_spec.rb
244
+ - spec/vim-jar/plugin/gitmodules
245
+ - spec/vim-jar/plugin_spec.rb
246
+ - spec/vim-jar_test.rb
247
+ - vimjar.gemspec
248
+ homepage: http://rubygems.org/gems/vim-jar
249
+ licenses: []
250
+ post_install_message:
251
+ rdoc_options: []
252
+ require_paths:
253
+ - lib
254
+ required_ruby_version: !ruby/object:Gem::Requirement
255
+ none: false
256
+ requirements:
257
+ - - ! '>='
258
+ - !ruby/object:Gem::Version
259
+ version: '0'
260
+ segments:
261
+ - 0
262
+ hash: 1710094277052269476
263
+ required_rubygems_version: !ruby/object:Gem::Requirement
264
+ none: false
265
+ requirements:
266
+ - - ! '>='
267
+ - !ruby/object:Gem::Version
268
+ version: '0'
269
+ segments:
270
+ - 0
271
+ hash: 1710094277052269476
272
+ requirements: []
273
+ rubyforge_project:
274
+ rubygems_version: 1.8.24
275
+ signing_key:
276
+ specification_version: 3
277
+ summary: The missing plugin manager for VIM
278
+ test_files:
279
+ - features/init.feature
280
+ - features/install.feature
281
+ - features/list.feature
282
+ - features/step_definitions/command_steps.rb
283
+ - features/step_definitions/environment_steps.rb
284
+ - features/step_definitions/file_check_steps.rb
285
+ - features/step_definitions/message_steps.rb
286
+ - features/step_definitions/plugin_steps.rb
287
+ - features/support/env.rb
288
+ - features/support/hook.rb
289
+ - features/support/stubs.rb
290
+ - features/uninstall.feature
291
+ - features/update.feature
292
+ - spec/spec_helper.rb
293
+ - spec/vim-jar/config_spec.rb
294
+ - spec/vim-jar/git-config
295
+ - spec/vim-jar/gitmodules
296
+ - spec/vim-jar/installer/git_spec.rb
297
+ - spec/vim-jar/loader_spec.rb
298
+ - spec/vim-jar/plugin/git-config
299
+ - spec/vim-jar/plugin/git_spec.rb
300
+ - spec/vim-jar/plugin/gitmodules
301
+ - spec/vim-jar/plugin_spec.rb
302
+ - spec/vim-jar_test.rb