clipboard 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +5 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +12 -12
- data/LICENSE +1 -1
- data/README.rdoc +19 -20
- data/VERSION +1 -1
- data/lib/clipboard.rb +3 -1
- data/lib/clipboard/file.rb +1 -1
- data/lib/clipboard/linux.rb +3 -4
- data/spec/clipboard_spec.rb +3 -1
- metadata +29 -14
- data/Rakefile.compiled.rbc +0 -894
data/CHANGELOG.rdoc
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,21 +1,21 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
clipboard (1.0.
|
4
|
+
clipboard (1.0.2)
|
5
5
|
|
6
6
|
GEM
|
7
|
-
remote:
|
7
|
+
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
diff-lcs (1.
|
10
|
-
rake (0.
|
11
|
-
rspec (2.
|
12
|
-
rspec-core (~> 2.
|
13
|
-
rspec-expectations (~> 2.
|
14
|
-
rspec-mocks (~> 2.
|
15
|
-
rspec-core (2.
|
16
|
-
rspec-expectations (2.
|
17
|
-
diff-lcs (
|
18
|
-
rspec-mocks (2.
|
9
|
+
diff-lcs (1.2.4)
|
10
|
+
rake (10.0.4)
|
11
|
+
rspec (2.13.0)
|
12
|
+
rspec-core (~> 2.13.0)
|
13
|
+
rspec-expectations (~> 2.13.0)
|
14
|
+
rspec-mocks (~> 2.13.0)
|
15
|
+
rspec-core (2.13.1)
|
16
|
+
rspec-expectations (2.13.0)
|
17
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
18
|
+
rspec-mocks (2.13.1)
|
19
19
|
|
20
20
|
PLATFORMS
|
21
21
|
ruby
|
data/LICENSE
CHANGED
data/README.rdoc
CHANGED
@@ -1,45 +1,44 @@
|
|
1
|
-
= clipboard
|
1
|
+
= clipboard {<img src="https://travis-ci.org/janlelis/clipboard.png" />}[https://travis-ci.org/janlelis/clipboard]
|
2
2
|
Access the clipboard and do not care if the OS is Linux, MacOS or Windows.
|
3
3
|
|
4
4
|
=== Usage
|
5
|
-
|
5
|
+
* <tt>Clipboard.copy</tt>
|
6
|
+
* <tt>Clipboard.paste</tt>
|
7
|
+
* <tt>Clipboard.clear</tt>
|
6
8
|
|
7
|
-
|
9
|
+
== Remarks
|
8
10
|
|
9
|
-
|
10
|
-
|
11
|
-
Have fun ;)
|
12
|
-
|
13
|
-
==== Multiple clipboards
|
14
|
-
On Linux, you can choose, from which clipboard you want to +paste+, default is CLIPBOARD.
|
11
|
+
==== Multiple Clipboards
|
12
|
+
On Linux, you can choose from which clipboard you want to +paste+ by supplying an argumument, the default is CLIPBOARD.
|
15
13
|
|
16
14
|
+copy+ copies to all clipboards in Clipboard::CLIPBOARDS.
|
17
15
|
|
18
|
-
====
|
19
|
-
|
16
|
+
==== ffi Dependency
|
17
|
+
This gem depends on the ffi gem to support the Windows clipboard. However, since ffi is not plain Ruby, it cannot be installed in every Ruby environment and therefore, ffi is not a hard dependency of this gem. To ensure Windows compatibility, you can put the ffi gem in your Gemfile.
|
18
|
+
|
19
|
+
==== Windows Encoding
|
20
|
+
If you paste with 1.9, the clipboard encoding will be translated to your <tt>Encoding.default_external</tt>.
|
20
21
|
|
21
22
|
If you paste with 1.8, it will fallback to CP850 encoding.
|
22
23
|
Copying with 1.8 will fallback to the +clip+ utility, which is installed by default since Vista
|
23
24
|
|
24
|
-
==== SSH
|
25
|
-
To
|
25
|
+
==== SSH
|
26
|
+
To use the clipboard through ssh, you need to install <tt>xauth</tt> on your server and connect via <tt>ssh -X</tt> or <tt>ssh -Y</tt>. However, some server settings restrict that feature, so don't rely on it, untested.
|
26
27
|
|
27
|
-
==== Java
|
28
|
+
==== Java
|
28
29
|
There is a java implementation included (<tt>Clipboard::Java</tt>) as an option for JRuby. However, on Linux, it always operates (only) on the CLIPBOARD clipboard.
|
29
30
|
|
30
|
-
=== Non-gem
|
31
|
+
=== Non-gem Requirements
|
31
32
|
* *Linux*: +xclip+ or +xsel+, you can install it on debian/ubuntu with <tt>sudo apt-get install xclip</tt>
|
32
33
|
|
33
|
-
===
|
34
|
-
* Don't depend on +xclip+/+xsel+
|
35
|
-
|
36
|
-
...if there is enough demand or motivation for me °_°
|
34
|
+
=== TODO
|
35
|
+
* Don't depend on +xclip+/+xsel+ (no plans to implement it, though)
|
37
36
|
|
38
37
|
=== blip
|
39
38
|
Want to access the clipboard form the command line? Try {blip}[http://rubygems.org/gems/blip]!
|
40
39
|
|
41
40
|
=== Copyright
|
42
|
-
Copyright (c) 2010-
|
41
|
+
Copyright (c) 2010-2013 Jan Lelis <http://happycode.org> released under the MIT license
|
43
42
|
|
44
43
|
Contributions by and thanks to
|
45
44
|
* Michael Grosser
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.2
|
data/lib/clipboard.rb
CHANGED
data/lib/clipboard/file.rb
CHANGED
data/lib/clipboard/linux.rb
CHANGED
@@ -8,17 +8,16 @@ module Clipboard::Linux
|
|
8
8
|
CLIPBOARDS = %w[clipboard primary secondary]
|
9
9
|
|
10
10
|
# check which backend to use
|
11
|
-
if
|
11
|
+
if system('which xclip >/dev/null 2>&1')
|
12
12
|
WriteCommand = 'xclip'
|
13
13
|
ReadCommand = 'xclip -o'
|
14
14
|
Selection = proc{|x| "-selection #{x}"}
|
15
|
-
elsif
|
15
|
+
elsif system('which xsel >/dev/null 2>&1')
|
16
16
|
WriteCommand = 'xsel'
|
17
17
|
ReadCommand = 'xsel -o'
|
18
18
|
Selection = {'clipboard' => '-b', 'primary' => '-p', 'secondary' => '-s'}
|
19
19
|
else
|
20
|
-
raise Clipboard::ClipboardLoadError, "clipboard
|
21
|
-
"Could not find required program xclip (or xsel)\n" \
|
20
|
+
raise Clipboard::ClipboardLoadError, "clipboard: Could not find required program xclip or xsel\n" \
|
22
21
|
"On debian/ubuntu, you can install it with: sudo apt-get install xclip"
|
23
22
|
end
|
24
23
|
|
data/spec/clipboard_spec.rb
CHANGED
@@ -72,7 +72,9 @@ describe Clipboard do
|
|
72
72
|
end
|
73
73
|
|
74
74
|
it "does not warn on normal detection" do
|
75
|
-
|
75
|
+
if system('which xclip >/dev/null 2>&1') || system('which xsel >/dev/null 2>&1')
|
76
|
+
$stderr.should_not_receive(:puts)
|
77
|
+
end
|
76
78
|
Clipboard.implementation
|
77
79
|
end
|
78
80
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clipboard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-04-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
16
|
-
requirement:
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,15 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements:
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
25
30
|
- !ruby/object:Gem::Dependency
|
26
31
|
name: rspec
|
27
|
-
requirement:
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
28
33
|
none: false
|
29
34
|
requirements:
|
30
35
|
- - ! '>='
|
@@ -32,7 +37,12 @@ dependencies:
|
|
32
37
|
version: '2'
|
33
38
|
type: :development
|
34
39
|
prerelease: false
|
35
|
-
version_requirements:
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '2'
|
36
46
|
description: Easy access to the clipboard on Linux, MacOS and Windows (Clipboard.copy
|
37
47
|
& Clipboard.paste).
|
38
48
|
email: mail@janlelis.de
|
@@ -41,20 +51,19 @@ extensions: []
|
|
41
51
|
extra_rdoc_files: []
|
42
52
|
files:
|
43
53
|
- lib/clipboard.rb
|
54
|
+
- lib/clipboard/linux.rb
|
44
55
|
- lib/clipboard/file.rb
|
45
|
-
- lib/clipboard/java.rb
|
46
|
-
- lib/clipboard/windows.rb
|
47
56
|
- lib/clipboard/mac.rb
|
48
|
-
- lib/clipboard/
|
57
|
+
- lib/clipboard/windows.rb
|
58
|
+
- lib/clipboard/java.rb
|
49
59
|
- spec/clipboard_spec.rb
|
50
60
|
- spec/spec_helper.rb
|
51
|
-
- Rakefile
|
61
|
+
- Rakefile
|
52
62
|
- Gemfile
|
53
|
-
-
|
63
|
+
- LICENSE
|
54
64
|
- Gemfile.lock
|
55
65
|
- README.rdoc
|
56
|
-
-
|
57
|
-
- Rakefile
|
66
|
+
- VERSION
|
58
67
|
- CHANGELOG.rdoc
|
59
68
|
- clipboard.gemspec
|
60
69
|
- .gemtest
|
@@ -73,18 +82,24 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
73
82
|
- - ! '>='
|
74
83
|
- !ruby/object:Gem::Version
|
75
84
|
version: '0'
|
85
|
+
segments:
|
86
|
+
- 0
|
87
|
+
hash: 3553231034075913776
|
76
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
89
|
none: false
|
78
90
|
requirements:
|
79
91
|
- - ! '>='
|
80
92
|
- !ruby/object:Gem::Version
|
81
93
|
version: '0'
|
94
|
+
segments:
|
95
|
+
- 0
|
96
|
+
hash: 3553231034075913776
|
82
97
|
requirements:
|
83
98
|
- ! 'On Linux (or other X), you need xclip. You can install it on debian/ubuntu with:
|
84
99
|
sudo apt-get install xclip'
|
85
100
|
- On Windows, you need the ffi gem.
|
86
101
|
rubyforge_project:
|
87
|
-
rubygems_version: 1.8.
|
102
|
+
rubygems_version: 1.8.25
|
88
103
|
signing_key:
|
89
104
|
specification_version: 3
|
90
105
|
summary: Easy access to the clipboard on Linux, MacOS and Windows.
|
data/Rakefile.compiled.rbc
DELETED
@@ -1,894 +0,0 @@
|
|
1
|
-
!RBIX
|
2
|
-
7127507030653618483
|
3
|
-
x
|
4
|
-
M
|
5
|
-
1
|
6
|
-
n
|
7
|
-
n
|
8
|
-
x
|
9
|
-
10
|
10
|
-
__script__
|
11
|
-
i
|
12
|
-
206
|
13
|
-
5
|
14
|
-
7
|
15
|
-
0
|
16
|
-
64
|
17
|
-
47
|
18
|
-
49
|
19
|
-
1
|
20
|
-
1
|
21
|
-
15
|
22
|
-
5
|
23
|
-
7
|
24
|
-
2
|
25
|
-
64
|
26
|
-
47
|
27
|
-
49
|
28
|
-
1
|
29
|
-
1
|
30
|
-
15
|
31
|
-
5
|
32
|
-
7
|
33
|
-
3
|
34
|
-
64
|
35
|
-
47
|
36
|
-
49
|
37
|
-
1
|
38
|
-
1
|
39
|
-
15
|
40
|
-
5
|
41
|
-
44
|
42
|
-
43
|
43
|
-
4
|
44
|
-
79
|
45
|
-
49
|
46
|
-
5
|
47
|
-
1
|
48
|
-
13
|
49
|
-
7
|
50
|
-
6
|
51
|
-
7
|
52
|
-
7
|
53
|
-
49
|
54
|
-
8
|
55
|
-
2
|
56
|
-
15
|
57
|
-
47
|
58
|
-
49
|
59
|
-
9
|
60
|
-
1
|
61
|
-
15
|
62
|
-
5
|
63
|
-
44
|
64
|
-
43
|
65
|
-
4
|
66
|
-
79
|
67
|
-
49
|
68
|
-
5
|
69
|
-
1
|
70
|
-
13
|
71
|
-
7
|
72
|
-
10
|
73
|
-
7
|
74
|
-
7
|
75
|
-
49
|
76
|
-
8
|
77
|
-
2
|
78
|
-
15
|
79
|
-
47
|
80
|
-
49
|
81
|
-
9
|
82
|
-
1
|
83
|
-
15
|
84
|
-
45
|
85
|
-
11
|
86
|
-
12
|
87
|
-
43
|
88
|
-
13
|
89
|
-
43
|
90
|
-
14
|
91
|
-
7
|
92
|
-
7
|
93
|
-
56
|
94
|
-
15
|
95
|
-
50
|
96
|
-
16
|
97
|
-
1
|
98
|
-
15
|
99
|
-
99
|
100
|
-
7
|
101
|
-
17
|
102
|
-
7
|
103
|
-
18
|
104
|
-
65
|
105
|
-
67
|
106
|
-
49
|
107
|
-
19
|
108
|
-
0
|
109
|
-
49
|
110
|
-
20
|
111
|
-
4
|
112
|
-
15
|
113
|
-
5
|
114
|
-
7
|
115
|
-
21
|
116
|
-
64
|
117
|
-
47
|
118
|
-
49
|
119
|
-
22
|
120
|
-
1
|
121
|
-
15
|
122
|
-
5
|
123
|
-
44
|
124
|
-
43
|
125
|
-
4
|
126
|
-
79
|
127
|
-
49
|
128
|
-
5
|
129
|
-
1
|
130
|
-
13
|
131
|
-
7
|
132
|
-
23
|
133
|
-
7
|
134
|
-
17
|
135
|
-
49
|
136
|
-
8
|
137
|
-
2
|
138
|
-
15
|
139
|
-
56
|
140
|
-
24
|
141
|
-
47
|
142
|
-
50
|
143
|
-
9
|
144
|
-
1
|
145
|
-
15
|
146
|
-
5
|
147
|
-
7
|
148
|
-
25
|
149
|
-
64
|
150
|
-
47
|
151
|
-
49
|
152
|
-
22
|
153
|
-
1
|
154
|
-
15
|
155
|
-
5
|
156
|
-
44
|
157
|
-
43
|
158
|
-
4
|
159
|
-
79
|
160
|
-
49
|
161
|
-
5
|
162
|
-
1
|
163
|
-
13
|
164
|
-
7
|
165
|
-
26
|
166
|
-
7
|
167
|
-
23
|
168
|
-
49
|
169
|
-
8
|
170
|
-
2
|
171
|
-
15
|
172
|
-
56
|
173
|
-
27
|
174
|
-
47
|
175
|
-
50
|
176
|
-
9
|
177
|
-
1
|
178
|
-
15
|
179
|
-
5
|
180
|
-
7
|
181
|
-
28
|
182
|
-
64
|
183
|
-
47
|
184
|
-
49
|
185
|
-
22
|
186
|
-
1
|
187
|
-
15
|
188
|
-
5
|
189
|
-
7
|
190
|
-
29
|
191
|
-
56
|
192
|
-
30
|
193
|
-
47
|
194
|
-
50
|
195
|
-
9
|
196
|
-
1
|
197
|
-
15
|
198
|
-
5
|
199
|
-
7
|
200
|
-
31
|
201
|
-
64
|
202
|
-
47
|
203
|
-
49
|
204
|
-
22
|
205
|
-
1
|
206
|
-
15
|
207
|
-
5
|
208
|
-
7
|
209
|
-
17
|
210
|
-
56
|
211
|
-
32
|
212
|
-
47
|
213
|
-
50
|
214
|
-
9
|
215
|
-
1
|
216
|
-
15
|
217
|
-
2
|
218
|
-
11
|
219
|
-
I
|
220
|
-
5
|
221
|
-
I
|
222
|
-
0
|
223
|
-
I
|
224
|
-
0
|
225
|
-
I
|
226
|
-
0
|
227
|
-
n
|
228
|
-
p
|
229
|
-
33
|
230
|
-
s
|
231
|
-
4
|
232
|
-
rake
|
233
|
-
x
|
234
|
-
7
|
235
|
-
require
|
236
|
-
s
|
237
|
-
9
|
238
|
-
fileutils
|
239
|
-
s
|
240
|
-
20
|
241
|
-
rspec/core/rake_task
|
242
|
-
x
|
243
|
-
4
|
244
|
-
Hash
|
245
|
-
x
|
246
|
-
16
|
247
|
-
new_from_literal
|
248
|
-
x
|
249
|
-
4
|
250
|
-
test
|
251
|
-
x
|
252
|
-
4
|
253
|
-
spec
|
254
|
-
x
|
255
|
-
3
|
256
|
-
[]=
|
257
|
-
x
|
258
|
-
4
|
259
|
-
task
|
260
|
-
x
|
261
|
-
7
|
262
|
-
default
|
263
|
-
x
|
264
|
-
5
|
265
|
-
RSpec
|
266
|
-
n
|
267
|
-
x
|
268
|
-
4
|
269
|
-
Core
|
270
|
-
x
|
271
|
-
8
|
272
|
-
RakeTask
|
273
|
-
M
|
274
|
-
1
|
275
|
-
p
|
276
|
-
2
|
277
|
-
x
|
278
|
-
9
|
279
|
-
for_block
|
280
|
-
t
|
281
|
-
n
|
282
|
-
x
|
283
|
-
9
|
284
|
-
__block__
|
285
|
-
i
|
286
|
-
17
|
287
|
-
57
|
288
|
-
19
|
289
|
-
0
|
290
|
-
15
|
291
|
-
20
|
292
|
-
0
|
293
|
-
7
|
294
|
-
0
|
295
|
-
64
|
296
|
-
13
|
297
|
-
18
|
298
|
-
2
|
299
|
-
49
|
300
|
-
1
|
301
|
-
1
|
302
|
-
15
|
303
|
-
11
|
304
|
-
I
|
305
|
-
5
|
306
|
-
I
|
307
|
-
1
|
308
|
-
I
|
309
|
-
1
|
310
|
-
I
|
311
|
-
1
|
312
|
-
n
|
313
|
-
p
|
314
|
-
2
|
315
|
-
s
|
316
|
-
19
|
317
|
-
--backtrace --color
|
318
|
-
x
|
319
|
-
11
|
320
|
-
rspec_opts=
|
321
|
-
p
|
322
|
-
5
|
323
|
-
I
|
324
|
-
0
|
325
|
-
I
|
326
|
-
7
|
327
|
-
I
|
328
|
-
4
|
329
|
-
I
|
330
|
-
8
|
331
|
-
I
|
332
|
-
11
|
333
|
-
x
|
334
|
-
30
|
335
|
-
/home/dan/a/clipboard/Rakefile
|
336
|
-
p
|
337
|
-
1
|
338
|
-
x
|
339
|
-
1
|
340
|
-
t
|
341
|
-
x
|
342
|
-
3
|
343
|
-
new
|
344
|
-
x
|
345
|
-
7
|
346
|
-
gemspec
|
347
|
-
M
|
348
|
-
1
|
349
|
-
n
|
350
|
-
n
|
351
|
-
x
|
352
|
-
7
|
353
|
-
gemspec
|
354
|
-
i
|
355
|
-
29
|
356
|
-
39
|
357
|
-
0
|
358
|
-
13
|
359
|
-
10
|
360
|
-
28
|
361
|
-
15
|
362
|
-
5
|
363
|
-
45
|
364
|
-
1
|
365
|
-
2
|
366
|
-
7
|
367
|
-
3
|
368
|
-
64
|
369
|
-
49
|
370
|
-
4
|
371
|
-
1
|
372
|
-
5
|
373
|
-
48
|
374
|
-
5
|
375
|
-
7
|
376
|
-
3
|
377
|
-
64
|
378
|
-
47
|
379
|
-
49
|
380
|
-
6
|
381
|
-
3
|
382
|
-
38
|
383
|
-
0
|
384
|
-
11
|
385
|
-
I
|
386
|
-
4
|
387
|
-
I
|
388
|
-
0
|
389
|
-
I
|
390
|
-
0
|
391
|
-
I
|
392
|
-
0
|
393
|
-
n
|
394
|
-
p
|
395
|
-
7
|
396
|
-
x
|
397
|
-
8
|
398
|
-
@gemspec
|
399
|
-
x
|
400
|
-
4
|
401
|
-
File
|
402
|
-
n
|
403
|
-
s
|
404
|
-
17
|
405
|
-
clipboard.gemspec
|
406
|
-
x
|
407
|
-
4
|
408
|
-
read
|
409
|
-
x
|
410
|
-
7
|
411
|
-
binding
|
412
|
-
x
|
413
|
-
4
|
414
|
-
eval
|
415
|
-
p
|
416
|
-
5
|
417
|
-
I
|
418
|
-
-1
|
419
|
-
I
|
420
|
-
b
|
421
|
-
I
|
422
|
-
0
|
423
|
-
I
|
424
|
-
c
|
425
|
-
I
|
426
|
-
1d
|
427
|
-
x
|
428
|
-
30
|
429
|
-
/home/dan/a/clipboard/Rakefile
|
430
|
-
p
|
431
|
-
0
|
432
|
-
x
|
433
|
-
17
|
434
|
-
method_visibility
|
435
|
-
x
|
436
|
-
15
|
437
|
-
add_defn_method
|
438
|
-
s
|
439
|
-
13
|
440
|
-
Build the gem
|
441
|
-
x
|
442
|
-
4
|
443
|
-
desc
|
444
|
-
x
|
445
|
-
3
|
446
|
-
gem
|
447
|
-
M
|
448
|
-
1
|
449
|
-
p
|
450
|
-
2
|
451
|
-
x
|
452
|
-
9
|
453
|
-
for_block
|
454
|
-
t
|
455
|
-
n
|
456
|
-
x
|
457
|
-
9
|
458
|
-
__block__
|
459
|
-
i
|
460
|
-
53
|
461
|
-
5
|
462
|
-
7
|
463
|
-
0
|
464
|
-
64
|
465
|
-
47
|
466
|
-
49
|
467
|
-
1
|
468
|
-
1
|
469
|
-
15
|
470
|
-
45
|
471
|
-
2
|
472
|
-
3
|
473
|
-
7
|
474
|
-
4
|
475
|
-
64
|
476
|
-
49
|
477
|
-
5
|
478
|
-
1
|
479
|
-
15
|
480
|
-
45
|
481
|
-
2
|
482
|
-
6
|
483
|
-
5
|
484
|
-
48
|
485
|
-
7
|
486
|
-
49
|
487
|
-
8
|
488
|
-
0
|
489
|
-
47
|
490
|
-
101
|
491
|
-
9
|
492
|
-
7
|
493
|
-
10
|
494
|
-
5
|
495
|
-
48
|
496
|
-
7
|
497
|
-
49
|
498
|
-
11
|
499
|
-
0
|
500
|
-
47
|
501
|
-
101
|
502
|
-
9
|
503
|
-
7
|
504
|
-
12
|
505
|
-
63
|
506
|
-
4
|
507
|
-
7
|
508
|
-
4
|
509
|
-
64
|
510
|
-
49
|
511
|
-
13
|
512
|
-
2
|
513
|
-
11
|
514
|
-
I
|
515
|
-
6
|
516
|
-
I
|
517
|
-
0
|
518
|
-
I
|
519
|
-
0
|
520
|
-
I
|
521
|
-
0
|
522
|
-
I
|
523
|
-
-2
|
524
|
-
p
|
525
|
-
14
|
526
|
-
s
|
527
|
-
27
|
528
|
-
gem build clipboard.gemspec
|
529
|
-
x
|
530
|
-
2
|
531
|
-
sh
|
532
|
-
x
|
533
|
-
9
|
534
|
-
FileUtils
|
535
|
-
n
|
536
|
-
s
|
537
|
-
3
|
538
|
-
pkg
|
539
|
-
x
|
540
|
-
7
|
541
|
-
mkdir_p
|
542
|
-
n
|
543
|
-
x
|
544
|
-
7
|
545
|
-
gemspec
|
546
|
-
x
|
547
|
-
4
|
548
|
-
name
|
549
|
-
x
|
550
|
-
4
|
551
|
-
to_s
|
552
|
-
s
|
553
|
-
1
|
554
|
-
-
|
555
|
-
x
|
556
|
-
7
|
557
|
-
version
|
558
|
-
s
|
559
|
-
4
|
560
|
-
.gem
|
561
|
-
x
|
562
|
-
2
|
563
|
-
mv
|
564
|
-
p
|
565
|
-
7
|
566
|
-
I
|
567
|
-
0
|
568
|
-
I
|
569
|
-
11
|
570
|
-
I
|
571
|
-
9
|
572
|
-
I
|
573
|
-
12
|
574
|
-
I
|
575
|
-
13
|
576
|
-
I
|
577
|
-
13
|
578
|
-
I
|
579
|
-
35
|
580
|
-
x
|
581
|
-
30
|
582
|
-
/home/dan/a/clipboard/Rakefile
|
583
|
-
p
|
584
|
-
0
|
585
|
-
s
|
586
|
-
38
|
587
|
-
Install the gem locally (without docs)
|
588
|
-
x
|
589
|
-
7
|
590
|
-
install
|
591
|
-
M
|
592
|
-
1
|
593
|
-
p
|
594
|
-
2
|
595
|
-
x
|
596
|
-
9
|
597
|
-
for_block
|
598
|
-
t
|
599
|
-
n
|
600
|
-
x
|
601
|
-
9
|
602
|
-
__block__
|
603
|
-
i
|
604
|
-
32
|
605
|
-
5
|
606
|
-
7
|
607
|
-
0
|
608
|
-
5
|
609
|
-
48
|
610
|
-
1
|
611
|
-
49
|
612
|
-
2
|
613
|
-
0
|
614
|
-
47
|
615
|
-
101
|
616
|
-
3
|
617
|
-
7
|
618
|
-
4
|
619
|
-
5
|
620
|
-
48
|
621
|
-
1
|
622
|
-
49
|
623
|
-
5
|
624
|
-
0
|
625
|
-
47
|
626
|
-
101
|
627
|
-
3
|
628
|
-
7
|
629
|
-
6
|
630
|
-
63
|
631
|
-
5
|
632
|
-
47
|
633
|
-
49
|
634
|
-
7
|
635
|
-
1
|
636
|
-
11
|
637
|
-
I
|
638
|
-
7
|
639
|
-
I
|
640
|
-
0
|
641
|
-
I
|
642
|
-
0
|
643
|
-
I
|
644
|
-
0
|
645
|
-
I
|
646
|
-
-2
|
647
|
-
p
|
648
|
-
8
|
649
|
-
s
|
650
|
-
16
|
651
|
-
gem install pkg/
|
652
|
-
x
|
653
|
-
7
|
654
|
-
gemspec
|
655
|
-
x
|
656
|
-
4
|
657
|
-
name
|
658
|
-
x
|
659
|
-
4
|
660
|
-
to_s
|
661
|
-
s
|
662
|
-
1
|
663
|
-
-
|
664
|
-
x
|
665
|
-
7
|
666
|
-
version
|
667
|
-
s
|
668
|
-
18
|
669
|
-
--no-rdoc --no-ri
|
670
|
-
x
|
671
|
-
2
|
672
|
-
sh
|
673
|
-
p
|
674
|
-
3
|
675
|
-
I
|
676
|
-
0
|
677
|
-
I
|
678
|
-
18
|
679
|
-
I
|
680
|
-
20
|
681
|
-
x
|
682
|
-
30
|
683
|
-
/home/dan/a/clipboard/Rakefile
|
684
|
-
p
|
685
|
-
0
|
686
|
-
s
|
687
|
-
20
|
688
|
-
Generate the gemspec
|
689
|
-
x
|
690
|
-
8
|
691
|
-
generate
|
692
|
-
M
|
693
|
-
1
|
694
|
-
p
|
695
|
-
2
|
696
|
-
x
|
697
|
-
9
|
698
|
-
for_block
|
699
|
-
t
|
700
|
-
n
|
701
|
-
x
|
702
|
-
9
|
703
|
-
__block__
|
704
|
-
i
|
705
|
-
12
|
706
|
-
5
|
707
|
-
5
|
708
|
-
48
|
709
|
-
0
|
710
|
-
49
|
711
|
-
1
|
712
|
-
0
|
713
|
-
47
|
714
|
-
49
|
715
|
-
2
|
716
|
-
1
|
717
|
-
11
|
718
|
-
I
|
719
|
-
3
|
720
|
-
I
|
721
|
-
0
|
722
|
-
I
|
723
|
-
0
|
724
|
-
I
|
725
|
-
0
|
726
|
-
I
|
727
|
-
-2
|
728
|
-
p
|
729
|
-
3
|
730
|
-
x
|
731
|
-
7
|
732
|
-
gemspec
|
733
|
-
x
|
734
|
-
7
|
735
|
-
to_ruby
|
736
|
-
x
|
737
|
-
4
|
738
|
-
puts
|
739
|
-
p
|
740
|
-
3
|
741
|
-
I
|
742
|
-
0
|
743
|
-
I
|
744
|
-
1d
|
745
|
-
I
|
746
|
-
c
|
747
|
-
x
|
748
|
-
30
|
749
|
-
/home/dan/a/clipboard/Rakefile
|
750
|
-
p
|
751
|
-
0
|
752
|
-
s
|
753
|
-
20
|
754
|
-
Validate the gemspec
|
755
|
-
M
|
756
|
-
1
|
757
|
-
p
|
758
|
-
2
|
759
|
-
x
|
760
|
-
9
|
761
|
-
for_block
|
762
|
-
t
|
763
|
-
n
|
764
|
-
x
|
765
|
-
9
|
766
|
-
__block__
|
767
|
-
i
|
768
|
-
16
|
769
|
-
5
|
770
|
-
7
|
771
|
-
0
|
772
|
-
64
|
773
|
-
47
|
774
|
-
49
|
775
|
-
1
|
776
|
-
1
|
777
|
-
15
|
778
|
-
5
|
779
|
-
48
|
780
|
-
2
|
781
|
-
49
|
782
|
-
3
|
783
|
-
0
|
784
|
-
11
|
785
|
-
I
|
786
|
-
3
|
787
|
-
I
|
788
|
-
0
|
789
|
-
I
|
790
|
-
0
|
791
|
-
I
|
792
|
-
0
|
793
|
-
I
|
794
|
-
-2
|
795
|
-
p
|
796
|
-
4
|
797
|
-
s
|
798
|
-
25
|
799
|
-
rubygems/user_interaction
|
800
|
-
x
|
801
|
-
7
|
802
|
-
require
|
803
|
-
x
|
804
|
-
7
|
805
|
-
gemspec
|
806
|
-
x
|
807
|
-
8
|
808
|
-
validate
|
809
|
-
p
|
810
|
-
5
|
811
|
-
I
|
812
|
-
0
|
813
|
-
I
|
814
|
-
22
|
815
|
-
I
|
816
|
-
9
|
817
|
-
I
|
818
|
-
23
|
819
|
-
I
|
820
|
-
10
|
821
|
-
x
|
822
|
-
30
|
823
|
-
/home/dan/a/clipboard/Rakefile
|
824
|
-
p
|
825
|
-
0
|
826
|
-
p
|
827
|
-
31
|
828
|
-
I
|
829
|
-
0
|
830
|
-
I
|
831
|
-
1
|
832
|
-
I
|
833
|
-
9
|
834
|
-
I
|
835
|
-
2
|
836
|
-
I
|
837
|
-
12
|
838
|
-
I
|
839
|
-
3
|
840
|
-
I
|
841
|
-
1b
|
842
|
-
I
|
843
|
-
5
|
844
|
-
I
|
845
|
-
31
|
846
|
-
I
|
847
|
-
6
|
848
|
-
I
|
849
|
-
47
|
850
|
-
I
|
851
|
-
7
|
852
|
-
I
|
853
|
-
56
|
854
|
-
I
|
855
|
-
b
|
856
|
-
I
|
857
|
-
64
|
858
|
-
I
|
859
|
-
f
|
860
|
-
I
|
861
|
-
6d
|
862
|
-
I
|
863
|
-
10
|
864
|
-
I
|
865
|
-
85
|
866
|
-
I
|
867
|
-
16
|
868
|
-
I
|
869
|
-
8e
|
870
|
-
I
|
871
|
-
17
|
872
|
-
I
|
873
|
-
a6
|
874
|
-
I
|
875
|
-
1b
|
876
|
-
I
|
877
|
-
af
|
878
|
-
I
|
879
|
-
1c
|
880
|
-
I
|
881
|
-
b9
|
882
|
-
I
|
883
|
-
20
|
884
|
-
I
|
885
|
-
c2
|
886
|
-
I
|
887
|
-
21
|
888
|
-
I
|
889
|
-
ce
|
890
|
-
x
|
891
|
-
30
|
892
|
-
/home/dan/a/clipboard/Rakefile
|
893
|
-
p
|
894
|
-
0
|