vimmate 0.8.1 → 0.9.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.
- data/README +4 -5
- data/VERSION +1 -0
- data/bin/vimmate +11 -53
- data/config/environment.rb +15 -14
- data/controllers/config_controller.rb +91 -0
- data/controllers/file_filter_controller.rb +1 -2
- data/controllers/vim_mate_controller.rb +1 -2
- data/lib/active_window/application.rb +26 -40
- data/lib/active_window/controller.rb +1 -2
- data/lib/active_window/filtered_active_tree_store.rb +28 -8
- data/lib/active_window.rb +14 -6
- data/lib/vim.rb +9 -0
- data/lib/vim_mate/app.rb +56 -0
- data/lib/vim_mate/plugins/inotify/init.rb +2 -2
- data/lib/vim_mate/plugins.rb +2 -2
- data/lib/vim_mate/vim_widget.rb +3 -1
- data/lib/vim_mate.rb +12 -0
- data/tasks/gem.rake +31 -0
- data/views/{vim_mate.glade → vim_mate.ui} +118 -141
- metadata +81 -16
- data/lib/try.rb +0 -9
- data/vimmate.gemspec +0 -138
metadata
CHANGED
@@ -1,19 +1,73 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vimmate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 59
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 9
|
9
|
+
- 0
|
10
|
+
version: 0.9.0
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
13
|
+
- Guillaume Benny
|
7
14
|
- Niklas Hofer
|
8
15
|
- Stefan Bethge
|
9
16
|
autorequire:
|
10
17
|
bindir: bin
|
11
18
|
cert_chain: []
|
12
19
|
|
13
|
-
date:
|
20
|
+
date: 2010-12-15 00:00:00 +01:00
|
14
21
|
default_executable: vimmate
|
15
|
-
dependencies:
|
16
|
-
|
22
|
+
dependencies:
|
23
|
+
- !ruby/object:Gem::Dependency
|
24
|
+
name: gtk2
|
25
|
+
prerelease: false
|
26
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
28
|
+
requirements:
|
29
|
+
- - ">="
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
hash: 381
|
32
|
+
segments:
|
33
|
+
- 0
|
34
|
+
- 90
|
35
|
+
- 5
|
36
|
+
version: 0.90.5
|
37
|
+
type: :runtime
|
38
|
+
version_requirements: *id001
|
39
|
+
- !ruby/object:Gem::Dependency
|
40
|
+
name: i18n
|
41
|
+
prerelease: false
|
42
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
hash: 11
|
48
|
+
segments:
|
49
|
+
- 0
|
50
|
+
- 5
|
51
|
+
- 0
|
52
|
+
version: 0.5.0
|
53
|
+
type: :runtime
|
54
|
+
version_requirements: *id002
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: activesupport
|
57
|
+
prerelease: false
|
58
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
hash: 1
|
64
|
+
segments:
|
65
|
+
- 3
|
66
|
+
- 0
|
67
|
+
- 3
|
68
|
+
version: 3.0.3
|
69
|
+
type: :runtime
|
70
|
+
version_requirements: *id003
|
17
71
|
description: "\n VimMate is a graphical add-on to Vim with IDE-like features: it does more\n than the plain Vim while still being lightweight. Even with the additional\n features, it stays out of the way for it's main task: editing files with Vim.\n VimMate adds functionality to Vim by embedding Vim GTK GUI (gVim) within\n VimMate.\n "
|
18
72
|
email: niklas+vimmate@lanpartei.de
|
19
73
|
executables:
|
@@ -22,6 +76,7 @@ extensions: []
|
|
22
76
|
|
23
77
|
extra_rdoc_files:
|
24
78
|
- README
|
79
|
+
- TODO
|
25
80
|
files:
|
26
81
|
- .autotest
|
27
82
|
- CHANGELOG
|
@@ -29,8 +84,10 @@ files:
|
|
29
84
|
- README
|
30
85
|
- Rakefile
|
31
86
|
- TODO
|
87
|
+
- VERSION
|
32
88
|
- bin/vimmate
|
33
89
|
- config/environment.rb
|
90
|
+
- controllers/config_controller.rb
|
34
91
|
- controllers/file_filter_controller.rb
|
35
92
|
- controllers/file_popup_menu_controller.rb
|
36
93
|
- controllers/vim_controller.rb
|
@@ -72,11 +129,13 @@ files:
|
|
72
129
|
- lib/gtk_thread_helper.rb
|
73
130
|
- lib/listed_directory.rb
|
74
131
|
- lib/listed_file.rb
|
75
|
-
- lib/
|
132
|
+
- lib/vim.rb
|
76
133
|
- lib/vim/buffers.rb
|
77
134
|
- lib/vim/integration.rb
|
78
135
|
- lib/vim/netbeans.rb
|
79
136
|
- lib/vim/source.vim
|
137
|
+
- lib/vim_mate.rb
|
138
|
+
- lib/vim_mate/app.rb
|
80
139
|
- lib/vim_mate/config.rb
|
81
140
|
- lib/vim_mate/dummy_window.rb
|
82
141
|
- lib/vim_mate/files_menu.rb
|
@@ -105,42 +164,48 @@ files:
|
|
105
164
|
- spec/nice_singleton_spec.rb
|
106
165
|
- spec/spec.opts
|
107
166
|
- spec/spec_helper.rb
|
108
|
-
-
|
109
|
-
-
|
167
|
+
- tasks/gem.rake
|
168
|
+
- views/vim_mate.ui
|
110
169
|
has_rdoc: true
|
111
170
|
homepage: http://github.com/niklas/vimmate/
|
112
171
|
licenses: []
|
113
172
|
|
114
173
|
post_install_message:
|
115
|
-
rdoc_options:
|
116
|
-
|
174
|
+
rdoc_options: []
|
175
|
+
|
117
176
|
require_paths:
|
118
177
|
- lib
|
119
178
|
required_ruby_version: !ruby/object:Gem::Requirement
|
179
|
+
none: false
|
120
180
|
requirements:
|
121
181
|
- - ">="
|
122
182
|
- !ruby/object:Gem::Version
|
183
|
+
hash: 3
|
184
|
+
segments:
|
185
|
+
- 0
|
123
186
|
version: "0"
|
124
|
-
version:
|
125
187
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
188
|
+
none: false
|
126
189
|
requirements:
|
127
190
|
- - ">="
|
128
191
|
- !ruby/object:Gem::Version
|
192
|
+
hash: 3
|
193
|
+
segments:
|
194
|
+
- 0
|
129
195
|
version: "0"
|
130
|
-
version:
|
131
196
|
requirements: []
|
132
197
|
|
133
198
|
rubyforge_project:
|
134
|
-
rubygems_version: 1.3.
|
199
|
+
rubygems_version: 1.3.7
|
135
200
|
signing_key:
|
136
201
|
specification_version: 3
|
137
202
|
summary: VimMate is a graphical add-on to Vim with IDE-like features.
|
138
203
|
test_files:
|
139
|
-
- spec/spec_helper.rb
|
140
|
-
- spec/nice_singleton_spec.rb
|
141
|
-
- spec/active_window/controller_spec.rb
|
142
204
|
- spec/active_window/active_column_spec.rb
|
143
205
|
- spec/active_window/active_tree_store_spec.rb
|
206
|
+
- spec/active_window/controller_spec.rb
|
207
|
+
- spec/lib/file_tree_store_spec.rb
|
144
208
|
- spec/lib/listed_directory_spec.rb
|
145
209
|
- spec/lib/listed_file_spec.rb
|
146
|
-
- spec/
|
210
|
+
- spec/nice_singleton_spec.rb
|
211
|
+
- spec/spec_helper.rb
|
data/lib/try.rb
DELETED
data/vimmate.gemspec
DELETED
@@ -1,138 +0,0 @@
|
|
1
|
-
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
-
# -*- encoding: utf-8 -*-
|
5
|
-
|
6
|
-
Gem::Specification.new do |s|
|
7
|
-
s.name = %q{vimmate}
|
8
|
-
s.version = "0.8.1"
|
9
|
-
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = ["Niklas Hofer", "Stefan Bethge"]
|
12
|
-
s.date = %q{2009-11-14}
|
13
|
-
s.default_executable = %q{vimmate}
|
14
|
-
s.description = %q{
|
15
|
-
VimMate is a graphical add-on to Vim with IDE-like features: it does more
|
16
|
-
than the plain Vim while still being lightweight. Even with the additional
|
17
|
-
features, it stays out of the way for it's main task: editing files with Vim.
|
18
|
-
VimMate adds functionality to Vim by embedding Vim GTK GUI (gVim) within
|
19
|
-
VimMate.
|
20
|
-
}
|
21
|
-
s.email = %q{niklas+vimmate@lanpartei.de}
|
22
|
-
s.executables = ["vimmate"]
|
23
|
-
s.extra_rdoc_files = [
|
24
|
-
"README"
|
25
|
-
]
|
26
|
-
s.files = [
|
27
|
-
".autotest",
|
28
|
-
"CHANGELOG",
|
29
|
-
"COPYING",
|
30
|
-
"README",
|
31
|
-
"Rakefile",
|
32
|
-
"TODO",
|
33
|
-
"bin/vimmate",
|
34
|
-
"config/environment.rb",
|
35
|
-
"controllers/file_filter_controller.rb",
|
36
|
-
"controllers/file_popup_menu_controller.rb",
|
37
|
-
"controllers/vim_controller.rb",
|
38
|
-
"controllers/vim_mate_controller.rb",
|
39
|
-
"images/file.png",
|
40
|
-
"images/file_green.png",
|
41
|
-
"images/file_orange.png",
|
42
|
-
"images/file_red.png",
|
43
|
-
"images/folder.png",
|
44
|
-
"images/folder_green.png",
|
45
|
-
"images/folder_orange.png",
|
46
|
-
"images/folder_red.png",
|
47
|
-
"images/processing.png",
|
48
|
-
"images/svn_added.png",
|
49
|
-
"images/svn_conflict.png",
|
50
|
-
"images/svn_deleted.png",
|
51
|
-
"images/svn_locked.png",
|
52
|
-
"images/svn_modified.png",
|
53
|
-
"images/svn_normal.png",
|
54
|
-
"images/svn_readonly.png",
|
55
|
-
"images/vimmate16.png",
|
56
|
-
"images/vimmate32.png",
|
57
|
-
"images/vimmate48.png",
|
58
|
-
"lib/active_window.rb",
|
59
|
-
"lib/active_window/active_column.rb",
|
60
|
-
"lib/active_window/active_tree_store.rb",
|
61
|
-
"lib/active_window/active_tree_store/columns.rb",
|
62
|
-
"lib/active_window/active_tree_store/extentions.rb",
|
63
|
-
"lib/active_window/active_tree_store/index.rb",
|
64
|
-
"lib/active_window/application.rb",
|
65
|
-
"lib/active_window/controller.rb",
|
66
|
-
"lib/active_window/dot_file.rb",
|
67
|
-
"lib/active_window/filtered_active_tree_store.rb",
|
68
|
-
"lib/active_window/listed_item.rb",
|
69
|
-
"lib/active_window/signal.rb",
|
70
|
-
"lib/config_window.rb",
|
71
|
-
"lib/file_tree_store.rb",
|
72
|
-
"lib/filtered_file_tree_store.rb",
|
73
|
-
"lib/gtk_thread_helper.rb",
|
74
|
-
"lib/listed_directory.rb",
|
75
|
-
"lib/listed_file.rb",
|
76
|
-
"lib/try.rb",
|
77
|
-
"lib/vim/buffers.rb",
|
78
|
-
"lib/vim/integration.rb",
|
79
|
-
"lib/vim/netbeans.rb",
|
80
|
-
"lib/vim/source.vim",
|
81
|
-
"lib/vim_mate/config.rb",
|
82
|
-
"lib/vim_mate/dummy_window.rb",
|
83
|
-
"lib/vim_mate/files_menu.rb",
|
84
|
-
"lib/vim_mate/icons.rb",
|
85
|
-
"lib/vim_mate/nice_singleton.rb",
|
86
|
-
"lib/vim_mate/plugins.rb",
|
87
|
-
"lib/vim_mate/plugins/inotify/init.rb",
|
88
|
-
"lib/vim_mate/plugins/inotify/lib/INotify.rb",
|
89
|
-
"lib/vim_mate/plugins/inotify/lib/directory.rb",
|
90
|
-
"lib/vim_mate/plugins/subversion/init.rb",
|
91
|
-
"lib/vim_mate/plugins/subversion/lib/file.rb",
|
92
|
-
"lib/vim_mate/plugins/subversion/lib/menu.rb",
|
93
|
-
"lib/vim_mate/plugins/subversion/lib/subversion.rb",
|
94
|
-
"lib/vim_mate/requirer.rb",
|
95
|
-
"lib/vim_mate/search_window.rb",
|
96
|
-
"lib/vim_mate/tags_window.rb",
|
97
|
-
"lib/vim_mate/terminals_window.rb",
|
98
|
-
"lib/vim_mate/version.rb",
|
99
|
-
"lib/vim_mate/vim_widget.rb",
|
100
|
-
"spec/active_window/active_column_spec.rb",
|
101
|
-
"spec/active_window/active_tree_store_spec.rb",
|
102
|
-
"spec/active_window/controller_spec.rb",
|
103
|
-
"spec/lib/file_tree_store_spec.rb",
|
104
|
-
"spec/lib/listed_directory_spec.rb",
|
105
|
-
"spec/lib/listed_file_spec.rb",
|
106
|
-
"spec/nice_singleton_spec.rb",
|
107
|
-
"spec/spec.opts",
|
108
|
-
"spec/spec_helper.rb",
|
109
|
-
"views/vim_mate.glade",
|
110
|
-
"vimmate.gemspec"
|
111
|
-
]
|
112
|
-
s.homepage = %q{http://github.com/niklas/vimmate/}
|
113
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
114
|
-
s.require_paths = ["lib"]
|
115
|
-
s.rubygems_version = %q{1.3.5}
|
116
|
-
s.summary = %q{VimMate is a graphical add-on to Vim with IDE-like features.}
|
117
|
-
s.test_files = [
|
118
|
-
"spec/spec_helper.rb",
|
119
|
-
"spec/nice_singleton_spec.rb",
|
120
|
-
"spec/active_window/controller_spec.rb",
|
121
|
-
"spec/active_window/active_column_spec.rb",
|
122
|
-
"spec/active_window/active_tree_store_spec.rb",
|
123
|
-
"spec/lib/listed_directory_spec.rb",
|
124
|
-
"spec/lib/listed_file_spec.rb",
|
125
|
-
"spec/lib/file_tree_store_spec.rb"
|
126
|
-
]
|
127
|
-
|
128
|
-
if s.respond_to? :specification_version then
|
129
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
130
|
-
s.specification_version = 3
|
131
|
-
|
132
|
-
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
133
|
-
else
|
134
|
-
end
|
135
|
-
else
|
136
|
-
end
|
137
|
-
end
|
138
|
-
|