ruco 0.2.8 → 0.2.9
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/Gemfile.lock +3 -3
- data/Readme.md +0 -1
- data/VERSION +1 -1
- data/lib/ruco/application.rb +1 -0
- data/ruco.gemspec +8 -36
- metadata +50 -103
data/Gemfile.lock
CHANGED
|
@@ -4,14 +4,14 @@ GEM
|
|
|
4
4
|
clipboard (0.9.8)
|
|
5
5
|
diff-lcs (1.1.2)
|
|
6
6
|
git (1.2.5)
|
|
7
|
-
jeweler (1.
|
|
8
|
-
bundler (~> 1.0
|
|
7
|
+
jeweler (1.6.4)
|
|
8
|
+
bundler (~> 1.0)
|
|
9
9
|
git (>= 1.2.5)
|
|
10
10
|
rake
|
|
11
11
|
language_sniffer (1.0.0)
|
|
12
12
|
oniguruma (1.1.0)
|
|
13
13
|
plist (3.1.0)
|
|
14
|
-
rake (0.9.2)
|
|
14
|
+
rake (0.9.2.2)
|
|
15
15
|
rspec (2.6.0)
|
|
16
16
|
rspec-core (~> 2.6.0)
|
|
17
17
|
rspec-expectations (~> 2.6.0)
|
data/Readme.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.9
|
data/lib/ruco/application.rb
CHANGED
data/ruco.gemspec
CHANGED
|
@@ -4,14 +4,13 @@
|
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
|
-
s.name =
|
|
8
|
-
s.version = "0.2.
|
|
7
|
+
s.name = "ruco"
|
|
8
|
+
s.version = "0.2.9"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Michael Grosser"]
|
|
12
|
-
s.date =
|
|
13
|
-
s.
|
|
14
|
-
s.email = %q{michael@grosser.it}
|
|
12
|
+
s.date = "2011-12-25"
|
|
13
|
+
s.email = "michael@grosser.it"
|
|
15
14
|
s.executables = ["ruco"]
|
|
16
15
|
s.files = [
|
|
17
16
|
".travis.yml",
|
|
@@ -78,38 +77,11 @@ Gem::Specification.new do |s|
|
|
|
78
77
|
"spec/ruco_spec.rb",
|
|
79
78
|
"spec/spec_helper.rb"
|
|
80
79
|
]
|
|
81
|
-
s.homepage =
|
|
82
|
-
s.post_install_message =
|
|
83
|
-
Mac: shift/ctrl + arrow-keys only work in iterm (not Terminal.app)
|
|
84
|
-
Ubuntu: sudo apt-get install xclip # to use the clipboard
|
|
85
|
-
|
|
86
|
-
}
|
|
80
|
+
s.homepage = "http://github.com/grosser/ruco"
|
|
81
|
+
s.post_install_message = "\n Mac: shift/ctrl + arrow-keys only work in iterm (not Terminal.app)\n Ubuntu: sudo apt-get install xclip # to use the clipboard\n\n"
|
|
87
82
|
s.require_paths = ["lib"]
|
|
88
|
-
s.rubygems_version =
|
|
89
|
-
s.summary =
|
|
90
|
-
s.test_files = [
|
|
91
|
-
"spec/ruco/application_spec.rb",
|
|
92
|
-
"spec/ruco/array_processor_spec.rb",
|
|
93
|
-
"spec/ruco/command_bar_spec.rb",
|
|
94
|
-
"spec/ruco/core_ext/array_spec.rb",
|
|
95
|
-
"spec/ruco/core_ext/range_spec.rb",
|
|
96
|
-
"spec/ruco/core_ext/string_spec.rb",
|
|
97
|
-
"spec/ruco/editor_spec.rb",
|
|
98
|
-
"spec/ruco/file_store_spec.rb",
|
|
99
|
-
"spec/ruco/form_spec.rb",
|
|
100
|
-
"spec/ruco/history_spec.rb",
|
|
101
|
-
"spec/ruco/keyboard_spec.rb",
|
|
102
|
-
"spec/ruco/option_accessor_spec.rb",
|
|
103
|
-
"spec/ruco/screen_spec.rb",
|
|
104
|
-
"spec/ruco/status_bar_spec.rb",
|
|
105
|
-
"spec/ruco/style_map_spec.rb",
|
|
106
|
-
"spec/ruco/syntax_parser_spec.rb",
|
|
107
|
-
"spec/ruco/text_area_spec.rb",
|
|
108
|
-
"spec/ruco/tm_theme_spec.rb",
|
|
109
|
-
"spec/ruco/window_spec.rb",
|
|
110
|
-
"spec/ruco_spec.rb",
|
|
111
|
-
"spec/spec_helper.rb"
|
|
112
|
-
]
|
|
83
|
+
s.rubygems_version = "1.8.10"
|
|
84
|
+
s.summary = "Commandline editor written in ruby"
|
|
113
85
|
|
|
114
86
|
if s.respond_to? :specification_version then
|
|
115
87
|
s.specification_version = 3
|
metadata
CHANGED
|
@@ -1,78 +1,56 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruco
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.2.9
|
|
5
5
|
prerelease:
|
|
6
|
-
segments:
|
|
7
|
-
- 0
|
|
8
|
-
- 2
|
|
9
|
-
- 8
|
|
10
|
-
version: 0.2.8
|
|
11
6
|
platform: ruby
|
|
12
|
-
authors:
|
|
7
|
+
authors:
|
|
13
8
|
- Michael Grosser
|
|
14
9
|
autorequire:
|
|
15
10
|
bindir: bin
|
|
16
11
|
cert_chain: []
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
type: :runtime
|
|
23
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
|
12
|
+
date: 2011-12-25 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: clipboard
|
|
16
|
+
requirement: &74939510 !ruby/object:Gem::Requirement
|
|
24
17
|
none: false
|
|
25
|
-
requirements:
|
|
26
|
-
- -
|
|
27
|
-
- !ruby/object:Gem::Version
|
|
28
|
-
hash: 43
|
|
29
|
-
segments:
|
|
30
|
-
- 0
|
|
31
|
-
- 9
|
|
32
|
-
- 8
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
33
21
|
version: 0.9.8
|
|
34
|
-
name: clipboard
|
|
35
|
-
version_requirements: *id001
|
|
36
|
-
prerelease: false
|
|
37
|
-
- !ruby/object:Gem::Dependency
|
|
38
22
|
type: :runtime
|
|
39
|
-
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: *74939510
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: textpow1x
|
|
27
|
+
requirement: &74939220 !ruby/object:Gem::Requirement
|
|
40
28
|
none: false
|
|
41
|
-
requirements:
|
|
42
|
-
- -
|
|
43
|
-
- !ruby/object:Gem::Version
|
|
44
|
-
hash: 23
|
|
45
|
-
segments:
|
|
46
|
-
- 1
|
|
47
|
-
- 2
|
|
48
|
-
- 4
|
|
29
|
+
requirements:
|
|
30
|
+
- - ! '>='
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
49
32
|
version: 1.2.4
|
|
50
|
-
name: textpow1x
|
|
51
|
-
version_requirements: *id002
|
|
52
|
-
prerelease: false
|
|
53
|
-
- !ruby/object:Gem::Dependency
|
|
54
33
|
type: :runtime
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
- - ">="
|
|
59
|
-
- !ruby/object:Gem::Version
|
|
60
|
-
hash: 3
|
|
61
|
-
segments:
|
|
62
|
-
- 0
|
|
63
|
-
version: "0"
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: *74939220
|
|
36
|
+
- !ruby/object:Gem::Dependency
|
|
64
37
|
name: language_sniffer
|
|
65
|
-
|
|
38
|
+
requirement: &74938940 !ruby/object:Gem::Requirement
|
|
39
|
+
none: false
|
|
40
|
+
requirements:
|
|
41
|
+
- - ! '>='
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: '0'
|
|
44
|
+
type: :runtime
|
|
66
45
|
prerelease: false
|
|
46
|
+
version_requirements: *74938940
|
|
67
47
|
description:
|
|
68
48
|
email: michael@grosser.it
|
|
69
|
-
executables:
|
|
49
|
+
executables:
|
|
70
50
|
- ruco
|
|
71
51
|
extensions: []
|
|
72
|
-
|
|
73
52
|
extra_rdoc_files: []
|
|
74
|
-
|
|
75
|
-
files:
|
|
53
|
+
files:
|
|
76
54
|
- .travis.yml
|
|
77
55
|
- Gemfile
|
|
78
56
|
- Gemfile.lock
|
|
@@ -136,63 +114,32 @@ files:
|
|
|
136
114
|
- spec/ruco/window_spec.rb
|
|
137
115
|
- spec/ruco_spec.rb
|
|
138
116
|
- spec/spec_helper.rb
|
|
139
|
-
has_rdoc: true
|
|
140
117
|
homepage: http://github.com/grosser/ruco
|
|
141
118
|
licenses: []
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
Mac: shift/ctrl + arrow-keys only work in iterm (not Terminal.app)
|
|
146
|
-
Ubuntu: sudo apt-get install xclip # to use the clipboard
|
|
147
|
-
|
|
119
|
+
post_install_message: ! "\n Mac: shift/ctrl + arrow-keys only work in iterm (not
|
|
120
|
+
Terminal.app)\n Ubuntu: sudo apt-get install xclip # to use the clipboard\n\n"
|
|
148
121
|
rdoc_options: []
|
|
149
|
-
|
|
150
|
-
require_paths:
|
|
122
|
+
require_paths:
|
|
151
123
|
- lib
|
|
152
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
124
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
153
125
|
none: false
|
|
154
|
-
requirements:
|
|
155
|
-
- -
|
|
156
|
-
- !ruby/object:Gem::Version
|
|
157
|
-
|
|
158
|
-
segments:
|
|
126
|
+
requirements:
|
|
127
|
+
- - ! '>='
|
|
128
|
+
- !ruby/object:Gem::Version
|
|
129
|
+
version: '0'
|
|
130
|
+
segments:
|
|
159
131
|
- 0
|
|
160
|
-
|
|
161
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
132
|
+
hash: 738215133
|
|
133
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
162
134
|
none: false
|
|
163
|
-
requirements:
|
|
164
|
-
- -
|
|
165
|
-
- !ruby/object:Gem::Version
|
|
166
|
-
|
|
167
|
-
segments:
|
|
168
|
-
- 0
|
|
169
|
-
version: "0"
|
|
135
|
+
requirements:
|
|
136
|
+
- - ! '>='
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: '0'
|
|
170
139
|
requirements: []
|
|
171
|
-
|
|
172
140
|
rubyforge_project:
|
|
173
|
-
rubygems_version: 1.
|
|
141
|
+
rubygems_version: 1.8.10
|
|
174
142
|
signing_key:
|
|
175
143
|
specification_version: 3
|
|
176
144
|
summary: Commandline editor written in ruby
|
|
177
|
-
test_files:
|
|
178
|
-
- spec/ruco/application_spec.rb
|
|
179
|
-
- spec/ruco/array_processor_spec.rb
|
|
180
|
-
- spec/ruco/command_bar_spec.rb
|
|
181
|
-
- spec/ruco/core_ext/array_spec.rb
|
|
182
|
-
- spec/ruco/core_ext/range_spec.rb
|
|
183
|
-
- spec/ruco/core_ext/string_spec.rb
|
|
184
|
-
- spec/ruco/editor_spec.rb
|
|
185
|
-
- spec/ruco/file_store_spec.rb
|
|
186
|
-
- spec/ruco/form_spec.rb
|
|
187
|
-
- spec/ruco/history_spec.rb
|
|
188
|
-
- spec/ruco/keyboard_spec.rb
|
|
189
|
-
- spec/ruco/option_accessor_spec.rb
|
|
190
|
-
- spec/ruco/screen_spec.rb
|
|
191
|
-
- spec/ruco/status_bar_spec.rb
|
|
192
|
-
- spec/ruco/style_map_spec.rb
|
|
193
|
-
- spec/ruco/syntax_parser_spec.rb
|
|
194
|
-
- spec/ruco/text_area_spec.rb
|
|
195
|
-
- spec/ruco/tm_theme_spec.rb
|
|
196
|
-
- spec/ruco/window_spec.rb
|
|
197
|
-
- spec/ruco_spec.rb
|
|
198
|
-
- spec/spec_helper.rb
|
|
145
|
+
test_files: []
|