ruber 0.0.9 → 0.0.10

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 (73) hide show
  1. data/CHANGES +42 -1
  2. data/lib/ruber/application/application.rb +25 -5
  3. data/lib/ruber/application/plugin.yaml +2 -10
  4. data/lib/ruber/component_manager.rb +2 -2
  5. data/lib/ruber/document_project.rb +5 -3
  6. data/lib/ruber/editor/document.rb +5 -4
  7. data/lib/ruber/editor/ktexteditor_wrapper.rb +1 -1
  8. data/lib/ruber/exception_widgets.rb +1 -1
  9. data/lib/ruber/main_window/main_window.rb +4 -3
  10. data/lib/ruber/main_window/main_window_actions.rb +2 -2
  11. data/lib/ruber/main_window/main_window_internal.rb +1 -1
  12. data/lib/ruber/output_widget.rb +17 -5
  13. data/lib/ruber/project.rb +34 -3
  14. data/lib/ruber/project_dir_scanner.rb +171 -0
  15. data/lib/ruber/settings_container.rb +7 -7
  16. data/lib/ruber/settings_dialog.rb +24 -24
  17. data/lib/ruber/version.rb +1 -1
  18. data/lib/ruber/world/environment.rb +1 -0
  19. data/lib/ruber/world/plugin.yaml +7 -2
  20. data/lib/ruber/{application → world}/project_files_widget.rb +0 -0
  21. data/lib/ruber/{application → world}/ui/project_files_rule_chooser_widget.rb +2 -2
  22. data/lib/ruber/{application → world}/ui/project_files_rule_chooser_widget.ui +0 -0
  23. data/lib/ruber/{application → world}/ui/project_files_widget.rb +2 -2
  24. data/lib/ruber/{application → world}/ui/project_files_widget.ui +0 -0
  25. data/plugins/auto_end/auto_end.rb +21 -18
  26. data/plugins/autosave/autosave.rb +1 -1
  27. data/plugins/find_in_files/find_in_files.rb +1 -1
  28. data/plugins/irb/irb.png +0 -0
  29. data/plugins/irb/irb.rb +142 -0
  30. data/plugins/irb/irb.svg +240 -0
  31. data/plugins/irb/irb_controller.rb +541 -0
  32. data/plugins/irb/irbrc.rb +21 -0
  33. data/plugins/irb/plugin.yaml +19 -0
  34. data/plugins/irb/ui/irb_config_widget.rb +151 -0
  35. data/plugins/irb/ui/irb_config_widget.ui +123 -0
  36. data/plugins/irb/ui/irb_tool_widget.rb +97 -0
  37. data/plugins/irb/ui/irb_tool_widget.ui +86 -0
  38. data/plugins/project_browser/project_browser.rb +1 -1
  39. data/plugins/rspec/plugin.yaml +6 -3
  40. data/plugins/rspec/rspec.rb +172 -473
  41. data/plugins/rspec/tool_widget.rb +462 -0
  42. data/plugins/rspec/ui/rspec_project_widget.rb +58 -38
  43. data/plugins/rspec/ui/rspec_project_widget.ui +68 -64
  44. data/plugins/ruberri/class_formatter.rb +126 -0
  45. data/plugins/ruberri/method_formatter.rb +90 -0
  46. data/plugins/ruberri/plugin.yaml +13 -0
  47. data/plugins/ruberri/ruberri.rb +226 -0
  48. data/plugins/ruberri/search.rb +111 -0
  49. data/plugins/ruberri/ui/tool_widget.rb +73 -0
  50. data/plugins/ruberri/ui/tool_widget.ui +49 -0
  51. data/plugins/ruby_runner/ruby_runner.rb +2 -2
  52. data/plugins/ruby_syntax_checker/plugin.yaml +11 -0
  53. data/plugins/ruby_syntax_checker/ruby_syntax_checker.rb +147 -0
  54. data/plugins/syntax_checker/plugin.yaml +10 -6
  55. data/plugins/syntax_checker/syntax_checker.rb +216 -520
  56. data/plugins/syntax_checker/ui/config_widget.rb +61 -0
  57. data/plugins/syntax_checker/ui/config_widget.ui +44 -0
  58. data/plugins/yaml_syntax_checker/plugin.yaml +11 -0
  59. data/plugins/yaml_syntax_checker/yaml_syntax_checker.rb +62 -0
  60. data/ruber.desktop +0 -0
  61. data/spec/auto_end_spec.rb +224 -186
  62. data/spec/document_project_spec.rb +9 -1
  63. data/spec/document_spec.rb +9 -0
  64. data/spec/environment_spec.rb +12 -0
  65. data/spec/output_widget_spec.rb +69 -2
  66. data/spec/project_dir_scanner_spec.rb +195 -0
  67. data/spec/project_spec.rb +43 -73
  68. data/spec/ruby_syntax_checker_spec.rb +361 -0
  69. data/spec/syntax_checker_spec.rb +1132 -0
  70. data/spec/yaml_syntax_checker_spec.rb +130 -0
  71. metadata +232 -225
  72. data/lib/ruber/application/project_files_list.rb +0 -320
  73. data/spec/project_files_list_spec.rb +0 -411
@@ -0,0 +1,130 @@
1
+ require 'spec/framework'
2
+ require 'spec/common'
3
+
4
+ require 'tempfile'
5
+
6
+ require 'plugins/yaml_syntax_checker/yaml_syntax_checker'
7
+
8
+ describe Ruber::YAMLSyntaxChecker::Plugin do
9
+
10
+ before :all do
11
+ Ruber[:components].load_plugin 'plugins/syntax_checker'
12
+ end
13
+
14
+ before do
15
+ Ruber[:components].load_plugin 'plugins/yaml_syntax_checker'
16
+ end
17
+
18
+ after do
19
+ Ruber[:components].unload_plugin :yaml_syntax_checker if Ruber[:yaml_syntax_checker]
20
+ end
21
+
22
+ after :all do
23
+ Ruber[:components].unload_plugin :syntax_checker
24
+ end
25
+
26
+ describe 'when created' do
27
+
28
+ before do
29
+ @file = Tempfile.open ['', '.yaml']
30
+ end
31
+
32
+ after do
33
+ @file.close
34
+ end
35
+
36
+ it 'registers a syntax checker of class Ruber::YAMLSyntaxChecker::Checker for files ending in .yaml with the syntax checker' do
37
+ checker = Ruber::YAMLSyntaxChecker::Checker.new
38
+ flexmock(Ruber::YAMLSyntaxChecker::Checker).should_receive(:new).once.with(Ruber::Document).and_return checker
39
+ doc = Ruber[:world].document @file.path
40
+ end
41
+
42
+ end
43
+
44
+ describe 'when unloaded' do
45
+
46
+ before do
47
+ @file = Tempfile.open ['', '.yaml']
48
+ end
49
+
50
+ after do
51
+ @file.close
52
+ end
53
+
54
+ it 'removes the Ruber::YAMLSyntaxChecker::Checker syntax checker' do
55
+ Ruber[:components].unload_plugin :yaml_syntax_checker
56
+ flexmock(Ruber::YAMLSyntaxChecker::Checker).should_receive(:new).never
57
+ doc = Ruber[:world].document @file.path
58
+ end
59
+
60
+ end
61
+
62
+ end
63
+
64
+ describe Ruber::YAMLSyntaxChecker::Checker do
65
+
66
+ before :all do
67
+ Ruber[:components].load_plugin 'plugins/syntax_checker'
68
+ end
69
+
70
+ after :all do
71
+ Ruber[:components].unload_plugin :syntax_checker
72
+ end
73
+
74
+ describe '#check_syntax' do
75
+
76
+ before do
77
+ @checker = Ruber::YAMLSyntaxChecker::Checker.new
78
+ end
79
+
80
+ context 'when the first argument is valid YAML' do
81
+
82
+ it 'returns nil' do
83
+ str = <<-EOS
84
+ - x
85
+ - y
86
+ - z:
87
+ a
88
+ - w:
89
+ b
90
+ EOS
91
+ @checker.check_syntax(str, true).should be_nil
92
+ end
93
+
94
+ end
95
+
96
+ context 'when the first argument is not valid YAML' do
97
+
98
+ it 'returns an array of Ruber::YAMLSyntaxChecker::SyntaxError with the line and column of the error' do
99
+ str = <<-EOS
100
+ - x
101
+ - y
102
+ - {
103
+ EOS
104
+ exp = [Ruber::YAMLSyntaxChecker::SyntaxError.new(3, 0, 'Syntax error', 'Syntax error')]
105
+ @checker.check_syntax(str, true).should == exp
106
+ end
107
+
108
+ it 'reports 0 as line number if the line number is less than 0' do
109
+ flexmock(YAML).should_receive(:parse).once.and_raise(ArgumentError, 'Syntax error on line -1, col 2')
110
+ exp = [Ruber::YAMLSyntaxChecker::SyntaxError.new(0, 2, 'Syntax error', 'Syntax error')]
111
+ @checker.check_syntax('', true).should == exp
112
+ end
113
+
114
+ it 'reports 0 as column number if the column number is less than 0' do
115
+ flexmock(YAML).should_receive(:parse).once.and_raise(ArgumentError, 'Syntax error on line 3, col -2')
116
+ exp = [Ruber::YAMLSyntaxChecker::SyntaxError.new(3, 0, 'Syntax error', 'Syntax error')]
117
+ @checker.check_syntax('', true).should == exp
118
+ end
119
+
120
+
121
+ it 'returns an empty array if it can\'t parse the error message' do
122
+ flexmock(YAML).should_receive(:parse).once.and_raise(ArgumentError, 'xyz')
123
+ @checker.check_syntax('', true).should == []
124
+ end
125
+
126
+ end
127
+
128
+ end
129
+
130
+ end
metadata CHANGED
@@ -1,317 +1,324 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: ruber
3
- version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 0
7
- - 0
8
- - 9
9
- version: 0.0.9
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.10
5
+ prerelease:
10
6
  platform: ruby
11
- authors:
7
+ authors:
12
8
  - Stefano Crocco
13
9
  autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
-
17
- date: 2011-05-30 00:00:00 +02:00
18
- default_executable:
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
12
+ date: 2011-10-21 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
21
15
  name: facets
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &17614680 !ruby/object:Gem::Requirement
24
17
  none: false
25
- requirements:
26
- - - ">="
27
- - !ruby/object:Gem::Version
28
- segments:
29
- - 2
30
- - 7
31
- version: "2.7"
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '2.7'
32
22
  type: :runtime
33
- version_requirements: *id001
34
- - !ruby/object:Gem::Dependency
35
- name: dictionary
36
23
  prerelease: false
37
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: *17614680
25
+ - !ruby/object:Gem::Dependency
26
+ name: dictionary
27
+ requirement: &17613140 !ruby/object:Gem::Requirement
38
28
  none: false
39
- requirements:
40
- - - ">="
41
- - !ruby/object:Gem::Version
42
- segments:
43
- - 0
44
- version: "0"
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
45
33
  type: :runtime
46
- version_requirements: *id002
47
- - !ruby/object:Gem::Dependency
48
- name: rak
49
34
  prerelease: false
50
- requirement: &id003 !ruby/object:Gem::Requirement
35
+ version_requirements: *17613140
36
+ - !ruby/object:Gem::Dependency
37
+ name: rak
38
+ requirement: &17577060 !ruby/object:Gem::Requirement
51
39
  none: false
52
- requirements:
53
- - - ">="
54
- - !ruby/object:Gem::Version
55
- segments:
56
- - 0
57
- version: "0"
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
58
44
  type: :runtime
59
- version_requirements: *id003
60
- - !ruby/object:Gem::Dependency
61
- name: outsider
62
45
  prerelease: false
63
- requirement: &id004 !ruby/object:Gem::Requirement
46
+ version_requirements: *17577060
47
+ - !ruby/object:Gem::Dependency
48
+ name: outsider
49
+ requirement: &17576440 !ruby/object:Gem::Requirement
64
50
  none: false
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- segments:
69
- - 0
70
- version: "0"
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
71
55
  type: :runtime
72
- version_requirements: *id004
73
- description: " Ruber is a Ruby editor for KDE 4 written in pure ruby, making use of the\n excellent ruby bindings for KDE 4 (korundum).\n \n Ruber is plugin-based, meaning that almost all its functionality is provided\n by plugins. This has two important consequences:\n 1) A user can write plugins having availlable all the features availlable to \n the Ruber developers. In other words, there's not a plugin-specifi API\n 2) Users can write plugins which replace some of the core functionality of\n Ruber. For example, a user can create a plugin which replaces the default\n plugin to run ruby programs\n"
56
+ prerelease: false
57
+ version_requirements: *17576440
58
+ description: ! " Ruber is a Ruby editor for KDE 4 written in pure ruby, making use
59
+ of the\n excellent ruby bindings for KDE 4 (korundum).\n \n Ruber is plugin-based,
60
+ meaning that almost all its functionality is provided\n by plugins. This has two
61
+ important consequences:\n 1) A user can write plugins having availlable all the
62
+ features availlable to \n the Ruber developers. In other words, there's not a plugin-specifi
63
+ API\n 2) Users can write plugins which replace some of the core functionality of\n
64
+ \ Ruber. For example, a user can create a plugin which replaces the default\n plugin
65
+ to run ruby programs\n"
74
66
  email: stefano.crocco@alice.it
75
- executables:
67
+ executables:
76
68
  - ruber
77
69
  extensions: []
78
-
79
70
  extra_rdoc_files: []
80
-
81
- files:
82
- - lib/ruber/kde_config_option_backend.rb
71
+ files:
72
+ - lib/ruber/project_backend.rb
73
+ - lib/ruber/component_manager.rb
74
+ - lib/ruber/exception_widgets.rb
83
75
  - lib/ruber/qt_sugar.rb
84
- - lib/ruber/world/ui/workspace_settings_widget.rb
85
- - lib/ruber/world/ui/workspace_settings_widget.ui
86
- - lib/ruber/world/plugin.yaml
87
- - lib/ruber/world/document_list.rb
88
- - lib/ruber/world/hint_solver.rb
89
- - lib/ruber/world/world.rb
90
- - lib/ruber/world/document_factory.rb
91
- - lib/ruber/world/environment.rb
92
- - lib/ruber/world/project_factory.rb
93
- - lib/ruber/world/project_list.rb
94
- - lib/ruber/main_window/ui/new_project_widget.rb
95
- - lib/ruber/main_window/ui/new_project_widget.ui
96
- - lib/ruber/main_window/ui/output_color_widget.rb
76
+ - lib/ruber/plugin.rb
77
+ - lib/ruber/version.rb
78
+ - lib/ruber/settings_dialog.rb
79
+ - lib/ruber/projects/ui/project_files_rule_chooser_widget.rb
80
+ - lib/ruber/projects/ui/project_files_widget.rb
81
+ - lib/ruber/project_dir_scanner.rb
82
+ - lib/ruber/kde_sugar.rb
83
+ - lib/ruber/application/plugin.yaml
84
+ - lib/ruber/application/application.rb
85
+ - lib/ruber/main_window/plugin.yaml
86
+ - lib/ruber/main_window/workspace.rb
87
+ - lib/ruber/main_window/save_modified_files_dlg.rb
88
+ - lib/ruber/main_window/choose_plugins_dlg.rb
89
+ - lib/ruber/main_window/output_color_widget.rb
90
+ - lib/ruber/main_window/main_window_actions.rb
91
+ - lib/ruber/main_window/main_window.rb
92
+ - lib/ruber/main_window/status_bar.rb
93
+ - lib/ruber/main_window/ui/open_file_in_project_dlg.ui
94
+ - lib/ruber/main_window/ui/main_window_settings_widget.rb
95
+ - lib/ruber/main_window/ui/choose_plugins_widget.ui
97
96
  - lib/ruber/main_window/ui/output_color_widget.ui
97
+ - lib/ruber/main_window/ui/output_color_widget.rb
98
98
  - lib/ruber/main_window/ui/choose_plugins_widget.rb
99
- - lib/ruber/main_window/ui/choose_plugins_widget.ui
100
- - lib/ruber/main_window/ui/open_file_in_project_dlg.rb
101
- - lib/ruber/main_window/ui/open_file_in_project_dlg.ui
102
99
  - lib/ruber/main_window/ui/workspace_settings_widget.rb
103
- - lib/ruber/main_window/ui/main_window_settings_widget.rb
100
+ - lib/ruber/main_window/ui/new_project_widget.ui
104
101
  - lib/ruber/main_window/ui/main_window_settings_widget.ui
102
+ - lib/ruber/main_window/ui/new_project_widget.rb
103
+ - lib/ruber/main_window/ui/open_file_in_project_dlg.rb
105
104
  - lib/ruber/main_window/main_window_internal.rb
106
- - lib/ruber/main_window/plugin.yaml
107
- - lib/ruber/main_window/workspace.rb
108
- - lib/ruber/main_window/status_bar.rb
109
- - lib/ruber/main_window/main_window.rb
110
- - lib/ruber/main_window/main_window_actions.rb
111
- - lib/ruber/main_window/output_color_widget.rb
112
- - lib/ruber/main_window/save_modified_files_dlg.rb
113
105
  - lib/ruber/main_window/workspace.png
114
106
  - lib/ruber/main_window/open_file_in_project_dlg.rb
115
- - lib/ruber/main_window/choose_plugins_dlg.rb
116
- - lib/ruber/application/ui/project_files_widget.rb
117
- - lib/ruber/application/ui/project_files_widget.ui
118
- - lib/ruber/application/ui/project_files_rule_chooser_widget.rb
119
- - lib/ruber/application/ui/project_files_rule_chooser_widget.ui
120
- - lib/ruber/application/plugin.yaml
121
- - lib/ruber/application/project_files_list.rb
122
- - lib/ruber/application/project_files_widget.rb
123
- - lib/ruber/application/application.rb
124
- - lib/ruber/exception_widgets.rb
107
+ - lib/ruber/utils.rb
108
+ - lib/ruber/external_program_plugin.rb
109
+ - lib/ruber/settings_dialog_manager.rb
125
110
  - lib/ruber/gui_states_handler.rb
126
- - lib/ruber/project_backend.rb
127
- - lib/ruber/ktexteditor_sugar.rb
128
- - lib/ruber/plugin_specification.rb
111
+ - lib/ruber/kde_config_option_backend.rb
112
+ - lib/ruber/settings_container.rb
129
113
  - lib/ruber/output_widget.rb
130
- - lib/ruber/settings_dialog.rb
114
+ - lib/ruber/yaml_option_backend.rb
115
+ - lib/ruber/plugin_specification_reader.rb
116
+ - lib/ruber/plugin_specification.rb
117
+ - lib/ruber/world/plugin.yaml
118
+ - lib/ruber/world/hint_solver.rb
119
+ - lib/ruber/world/project_list.rb
120
+ - lib/ruber/world/environment.rb
121
+ - lib/ruber/world/world.rb
122
+ - lib/ruber/world/project_factory.rb
123
+ - lib/ruber/world/ui/project_files_rule_chooser_widget.rb
124
+ - lib/ruber/world/ui/project_files_rule_chooser_widget.ui
125
+ - lib/ruber/world/ui/workspace_settings_widget.ui
126
+ - lib/ruber/world/ui/project_files_widget.ui
127
+ - lib/ruber/world/ui/workspace_settings_widget.rb
128
+ - lib/ruber/world/ui/project_files_widget.rb
129
+ - lib/ruber/world/document_factory.rb
130
+ - lib/ruber/world/project_files_widget.rb
131
+ - lib/ruber/world/document_list.rb
132
+ - lib/ruber/filtered_output_widget.rb
133
+ - lib/ruber/pane.rb
131
134
  - lib/ruber/config/plugin.yaml
132
135
  - lib/ruber/config/config.rb
133
- - lib/ruber/settings_dialog_manager.rb
136
+ - lib/ruber/project.rb
137
+ - lib/ruber/editor/document.rb
134
138
  - lib/ruber/editor/ktexteditor_wrapper.rb
135
139
  - lib/ruber/editor/editor_view.rb
136
- - lib/ruber/editor/document.rb
137
- - lib/ruber/component_manager.rb
138
- - lib/ruber/plugin_specification_reader.rb
139
140
  - lib/ruber/plugin_like.rb
140
141
  - lib/ruber/document_project.rb
141
- - lib/ruber/yaml_option_backend.rb
142
- - lib/ruber/project.rb
143
- - lib/ruber/external_program_plugin.rb
144
- - lib/ruber/kde_sugar.rb
145
- - lib/ruber/filtered_output_widget.rb
146
- - lib/ruber/pane.rb
147
- - lib/ruber/projects/ui/project_files_widget.rb
148
- - lib/ruber/projects/ui/project_files_rule_chooser_widget.rb
149
- - lib/ruber/settings_container.rb
150
- - lib/ruber/version.rb
151
- - lib/ruber/plugin.rb
152
- - lib/ruber/utils.rb
153
- - plugins/rake/ui/choose_task_widget.rb
154
- - plugins/rake/ui/choose_task_widget.ui
155
- - plugins/rake/ui/project_widget.rb
156
- - plugins/rake/ui/project_widget.ui
157
- - plugins/rake/ui/add_quick_task_widget.rb
158
- - plugins/rake/ui/add_quick_task_widget.ui
159
- - plugins/rake/ui/config_widget.rb
160
- - plugins/rake/ui/config_widget.ui
161
- - plugins/rake/rake.rb
162
- - plugins/rake/plugin.yaml
163
- - plugins/rake/rakeui.rc
164
- - plugins/rake/rake.png
165
- - plugins/rake/rake_extension.rb
166
- - plugins/rake/rake_widgets.rb
167
- - plugins/command/ui/tool_widget.rb
168
- - plugins/command/ui/tool_widget.ui
142
+ - lib/ruber/ktexteditor_sugar.rb
143
+ - plugins/yaml_syntax_checker/plugin.yaml
144
+ - plugins/yaml_syntax_checker/yaml_syntax_checker.rb
169
145
  - plugins/command/plugin.yaml
170
146
  - plugins/command/command.png
171
147
  - plugins/command/command.rb
172
148
  - plugins/command/output.rb
173
- - plugins/rspec/ui/rspec_project_widget.rb
174
- - plugins/rspec/ui/rspec_project_widget.ui
175
- - plugins/rspec/ui/config_widget.rb
176
- - plugins/rspec/ui/config_widget.ui
149
+ - plugins/command/ui/tool_widget.rb
150
+ - plugins/command/ui/tool_widget.ui
151
+ - plugins/autosave/plugin.yaml
152
+ - plugins/autosave/ui/autosave_config_widget.rb
153
+ - plugins/autosave/ui/autosave_config_widget.ui
154
+ - plugins/autosave/autosave.rb
177
155
  - plugins/rspec/plugin.yaml
178
- - plugins/rspec/rspec.rb
179
- - plugins/rspec/rspec.png
156
+ - plugins/rspec/tool_widget.rb
180
157
  - plugins/rspec/rspec.svg
158
+ - plugins/rspec/rspec.png
181
159
  - plugins/rspec/rspecui.rc
160
+ - plugins/rspec/ui/rspec_project_widget.rb
161
+ - plugins/rspec/ui/config_widget.ui
162
+ - plugins/rspec/ui/rspec_project_widget.ui
163
+ - plugins/rspec/ui/config_widget.rb
182
164
  - plugins/rspec/ruber_rspec_formatter.rb
183
- - plugins/state/ui/config_widget.rb
184
- - plugins/state/ui/config_widget.ui
165
+ - plugins/rspec/rspec.rb
166
+ - plugins/ruby_syntax_checker/plugin.yaml
167
+ - plugins/ruby_syntax_checker/ruby_syntax_checker.rb
185
168
  - plugins/state/plugin.yaml
186
169
  - plugins/state/state.rb
187
- - plugins/find_in_files/ui/config_widget.rb
188
- - plugins/find_in_files/ui/config_widget.ui
170
+ - plugins/state/ui/config_widget.ui
171
+ - plugins/state/ui/config_widget.rb
172
+ - plugins/ruby_runner/ruby_interpretersui.rc
173
+ - plugins/ruby_runner/plugin.yaml
174
+ - plugins/ruby_runner/config_widget.rb
175
+ - plugins/ruby_runner/ruby.png
176
+ - plugins/ruby_runner/project_widget.rb
177
+ - plugins/ruby_runner/ui/project_widget.ui
178
+ - plugins/ruby_runner/ui/config_widget.ui
179
+ - plugins/ruby_runner/ui/config_widget.rb
180
+ - plugins/ruby_runner/ui/ruby_runnner_plugin_option_widget.ui
181
+ - plugins/ruby_runner/ui/project_widget.rb
182
+ - plugins/ruby_runner/ui/ruby_runnner_plugin_option_widget.rb
183
+ - plugins/ruby_runner/ruby_runner.rb
184
+ - plugins/auto_end/plugin.yaml
185
+ - plugins/auto_end/auto_end.rb
186
+ - plugins/irb/plugin.yaml
187
+ - plugins/irb/irbrc.rb
188
+ - plugins/irb/irb.svg
189
+ - plugins/irb/irb.rb
190
+ - plugins/irb/ui/irb_tool_widget.ui
191
+ - plugins/irb/ui/irb_config_widget.ui
192
+ - plugins/irb/ui/irb_tool_widget.rb
193
+ - plugins/irb/ui/irb_config_widget.rb
194
+ - plugins/irb/irb_controller.rb
195
+ - plugins/irb/irb.png
196
+ - plugins/ruby_development/plugin.yaml
197
+ - plugins/ruby_development/ruby_developmentui.rc
198
+ - plugins/ruby_development/ui/project_widget.ui
199
+ - plugins/ruby_development/ui/config_widget.ui
200
+ - plugins/ruby_development/ui/config_widget.rb
201
+ - plugins/ruby_development/ui/project_widget.rb
202
+ - plugins/ruby_development/ruby_development.rb
203
+ - plugins/ruby_development/ruby_development.png
204
+ - plugins/rake/plugin.yaml
205
+ - plugins/rake/rake.rb
206
+ - plugins/rake/rakeui.rc
207
+ - plugins/rake/rake.png
208
+ - plugins/rake/rake_extension.rb
209
+ - plugins/rake/rake_widgets.rb
210
+ - plugins/rake/ui/project_widget.ui
211
+ - plugins/rake/ui/choose_task_widget.rb
212
+ - plugins/rake/ui/config_widget.ui
213
+ - plugins/rake/ui/add_quick_task_widget.rb
214
+ - plugins/rake/ui/config_widget.rb
215
+ - plugins/rake/ui/choose_task_widget.ui
216
+ - plugins/rake/ui/project_widget.rb
217
+ - plugins/rake/ui/add_quick_task_widget.ui
218
+ - plugins/find_in_files/plugin.yaml
219
+ - plugins/find_in_files/find_in_files_dlg.rb
189
220
  - plugins/find_in_files/ui/find_in_files_widget.rb
221
+ - plugins/find_in_files/ui/config_widget.ui
222
+ - plugins/find_in_files/ui/config_widget.rb
190
223
  - plugins/find_in_files/ui/find_in_files_widget.ui
191
- - plugins/find_in_files/plugin.yaml
192
224
  - plugins/find_in_files/find_in_files.rb
193
225
  - plugins/find_in_files/find_in_files_widgets.rb
194
- - plugins/find_in_files/find_in_files_dlg.rb
195
226
  - plugins/find_in_files/find_in_files_ui.rc
196
- - plugins/auto_end/plugin.yaml
197
- - plugins/auto_end/auto_end.rb
198
- - plugins/autosave/ui/autosave_config_widget.rb
199
- - plugins/autosave/ui/autosave_config_widget.ui
200
- - plugins/autosave/autosave.rb
201
- - plugins/autosave/plugin.yaml
202
- - plugins/ruby_runner/ui/ruby_runnner_plugin_option_widget.rb
203
- - plugins/ruby_runner/ui/ruby_runnner_plugin_option_widget.ui
204
- - plugins/ruby_runner/ui/project_widget.rb
205
- - plugins/ruby_runner/ui/project_widget.ui
206
- - plugins/ruby_runner/ui/config_widget.rb
207
- - plugins/ruby_runner/ui/config_widget.ui
208
- - plugins/ruby_runner/plugin.yaml
209
- - plugins/ruby_runner/ruby_runner.rb
210
- - plugins/ruby_runner/ruby.png
211
- - plugins/ruby_runner/project_widget.rb
212
- - plugins/ruby_runner/config_widget.rb
213
- - plugins/ruby_runner/ruby_interpretersui.rc
214
227
  - plugins/project_browser/plugin.yaml
215
228
  - plugins/project_browser/project_browser.rb
229
+ - plugins/ruberri/plugin.yaml
230
+ - plugins/ruberri/class_formatter.rb
231
+ - plugins/ruberri/method_formatter.rb
232
+ - plugins/ruberri/search.rb
233
+ - plugins/ruberri/ruberri.rb
234
+ - plugins/ruberri/ui/tool_widget.rb
235
+ - plugins/ruberri/ui/tool_widget.ui
216
236
  - plugins/syntax_checker/plugin.yaml
217
237
  - plugins/syntax_checker/syntax_checker.rb
218
- - plugins/ruby_development/ui/project_widget.rb
219
- - plugins/ruby_development/ui/project_widget.ui
220
- - plugins/ruby_development/ui/config_widget.rb
221
- - plugins/ruby_development/ui/config_widget.ui
222
- - plugins/ruby_development/plugin.yaml
223
- - plugins/ruby_development/ruby_development.png
224
- - plugins/ruby_development/ruby_development.rb
225
- - plugins/ruby_development/ruby_developmentui.rc
226
- - spec/settings_dialog_manager_spec.rb
227
- - spec/project_list_spec.rb
228
- - spec/editor_view_spec.rb
229
- - spec/project_backend_spec.rb
230
- - spec/common.rb
231
- - spec/external_program_plugin_spec.rb
232
- - spec/qt_sugar_spec.rb
233
- - spec/utils_spec.rb
234
- - spec/document_spec.rb
235
- - spec/workspace_spec.rb
236
- - spec/framework.rb
237
- - spec/ktexteditor_wrapper_spec.rb
238
- - spec/hint_solver_spec.rb
239
- - spec/environment_spec.rb
240
- - spec/document_factory_spec.rb
241
- - spec/kde_config_option_backend_spec.rb
242
- - spec/auto_end_spec.rb
243
- - spec/filtered_output_widget_spec.rb
244
- - spec/settings_container_spec.rb
245
- - spec/world_spec.rb
246
- - spec/project_files_list_spec.rb
247
- - spec/document_project_spec.rb
248
- - spec/ktexteditor_sugar_spec.rb
249
- - spec/plugin_spec.rb
238
+ - plugins/syntax_checker/ui/config_widget.ui
239
+ - plugins/syntax_checker/ui/config_widget.rb
240
+ - spec/pane_spec.rb
250
241
  - spec/document_list_spec.rb
251
- - spec/project_factory_spec.rb
252
- - spec/component_manager_spec.rb
253
- - spec/annotation_model_spec.rb
242
+ - spec/environment_spec.rb
243
+ - spec/project_spec.rb
254
244
  - spec/kde_sugar_spec.rb
255
245
  - spec/settings_dialog_spec.rb
246
+ - spec/document_factory_spec.rb
247
+ - spec/auto_end_spec.rb
248
+ - spec/ktexteditor_wrapper_spec.rb
249
+ - spec/qt_sugar_spec.rb
256
250
  - spec/output_widget_spec.rb
257
- - spec/view_manager_spec.rb
258
- - spec/state_spec.rb
251
+ - spec/hint_solver_spec.rb
252
+ - spec/ktexteditor_sugar_spec.rb
259
253
  - spec/plugin_specification_reader_spec.rb
254
+ - spec/world_spec.rb
260
255
  - spec/plugin_specification_spec.rb
261
- - spec/yaml_option_backend_spec.rb
262
- - spec/pane_spec.rb
263
256
  - spec/gui_states_handler_spec.rb
264
- - spec/project_spec.rb
257
+ - spec/project_dir_scanner_spec.rb
258
+ - spec/external_program_plugin_spec.rb
259
+ - spec/yaml_syntax_checker_spec.rb
260
+ - spec/yaml_option_backend_spec.rb
261
+ - spec/framework.rb
262
+ - spec/document_spec.rb
263
+ - spec/state_spec.rb
264
+ - spec/utils_spec.rb
265
+ - spec/workspace_spec.rb
266
+ - spec/ruby_syntax_checker_spec.rb
267
+ - spec/annotation_model_spec.rb
268
+ - spec/plugin_spec.rb
269
+ - spec/kde_config_option_backend_spec.rb
270
+ - spec/syntax_checker_spec.rb
271
+ - spec/project_backend_spec.rb
272
+ - spec/settings_dialog_manager_spec.rb
273
+ - spec/project_list_spec.rb
274
+ - spec/document_project_spec.rb
275
+ - spec/project_factory_spec.rb
276
+ - spec/common.rb
277
+ - spec/editor_view_spec.rb
278
+ - spec/filtered_output_widget_spec.rb
279
+ - spec/view_manager_spec.rb
280
+ - spec/component_manager_spec.rb
281
+ - spec/settings_container_spec.rb
282
+ - data/share/icons/pin.png
283
+ - data/share/icons/ruber-old.pgn
265
284
  - data/share/apps/ruber/core_components.yaml
266
285
  - data/share/apps/ruber/ruberui.rc
267
- - data/share/icons/ruber-old.pgn
268
- - data/share/icons/pin.png
269
286
  - data/share/pixmaps/ruby.png
270
287
  - ruber.desktop
271
288
  - outsider_files
272
- - icons/ruber-8.png
273
289
  - icons/ruber-16.png
274
290
  - icons/ruber-32.png
275
291
  - icons/ruber-48.png
292
+ - icons/ruber-8.png
276
293
  - COPYING
277
294
  - INSTALL
278
295
  - LICENSE
279
296
  - CHANGES
280
297
  - bin/ruber
281
- has_rdoc: true
282
298
  homepage: http://stcrocco.github.com/ruber
283
299
  licenses: []
284
-
285
300
  post_install_message:
286
301
  rdoc_options: []
287
-
288
- require_paths:
302
+ require_paths:
289
303
  - lib
290
- required_ruby_version: !ruby/object:Gem::Requirement
304
+ required_ruby_version: !ruby/object:Gem::Requirement
291
305
  none: false
292
- requirements:
293
- - - ">="
294
- - !ruby/object:Gem::Version
295
- segments:
296
- - 1
297
- - 8
298
- - 7
306
+ requirements:
307
+ - - ! '>='
308
+ - !ruby/object:Gem::Version
299
309
  version: 1.8.7
300
- required_rubygems_version: !ruby/object:Gem::Requirement
310
+ required_rubygems_version: !ruby/object:Gem::Requirement
301
311
  none: false
302
- requirements:
303
- - - ">="
304
- - !ruby/object:Gem::Version
305
- segments:
306
- - 0
307
- version: "0"
308
- requirements:
312
+ requirements:
313
+ - - ! '>='
314
+ - !ruby/object:Gem::Version
315
+ version: '0'
316
+ requirements:
309
317
  - KDE 4.5
310
318
  - korundum4
311
319
  rubyforge_project:
312
- rubygems_version: 1.3.7
320
+ rubygems_version: 1.8.7
313
321
  signing_key:
314
322
  specification_version: 3
315
323
  summary: A plugin-based Ruby editor for KDE 4 written in Ruby
316
324
  test_files: []
317
-