clipboard 0.9.9 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,6 @@
1
+ == 1.0.0
2
+ * Add basic java clipboard support
3
+
1
4
  == 0.9.9
2
5
  * Allow Ocra packing
3
6
 
data/Gemfile.lock CHANGED
@@ -1,24 +1,23 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- clipboard (0.9.9)
4
+ clipboard (1.0.0)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
8
8
  specs:
9
- diff-lcs (1.1.2)
10
- rake (0.8.7)
11
- rspec (2.4.0)
12
- rspec-core (~> 2.4.0)
13
- rspec-expectations (~> 2.4.0)
14
- rspec-mocks (~> 2.4.0)
15
- rspec-core (2.4.0)
16
- rspec-expectations (2.4.0)
9
+ diff-lcs (1.1.3)
10
+ rake (0.9.2.2)
11
+ rspec (2.8.0)
12
+ rspec-core (~> 2.8.0)
13
+ rspec-expectations (~> 2.8.0)
14
+ rspec-mocks (~> 2.8.0)
15
+ rspec-core (2.8.0)
16
+ rspec-expectations (2.8.0)
17
17
  diff-lcs (~> 1.1.2)
18
- rspec-mocks (2.4.0)
18
+ rspec-mocks (2.8.0)
19
19
 
20
20
  PLATFORMS
21
- java
22
21
  ruby
23
22
 
24
23
  DEPENDENCIES
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010-2011 Jan Lelis
1
+ Copyright (c) 2010-2012 Jan Lelis
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.rdoc CHANGED
@@ -1,5 +1,5 @@
1
1
  = clipboard
2
- Access the clipboard and do not care if the OS is Linux, MacOS or Windows.
2
+ Access the clipboard and do not care if the OS is Linux, MacOS or Windows. http://travis-ci.org/janlelis/clipboard.png
3
3
 
4
4
  === Usage
5
5
  You have <tt>Clipboard.copy</tt>,
@@ -24,20 +24,22 @@ Copying with 1.8 will fallback to the +clip+ utility, which is installed by defa
24
24
  ==== SSH note
25
25
  To you 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>.
26
26
 
27
+ ==== Java note
28
+ 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
+
27
30
  === Non-gem requirements
28
31
  * *Linux*: +xclip+ or +xsel+, you can install it on debian/ubuntu with <tt>sudo apt-get install xclip</tt>
29
32
 
30
33
  === Todo
31
34
  * Don't depend on +xclip+/+xsel+
32
- * Maybe a java implementation
33
35
 
34
36
  ...if there is enough demand or motivation for me °_°
35
37
 
36
38
  === blip
37
- Want to access the clipboard form the commandline? Try {blip}[http://rubygems.org/gems/blip]!
39
+ Want to access the clipboard form the command line? Try {blip}[http://rubygems.org/gems/blip]!
38
40
 
39
41
  === Copyright
40
- Copyright (c) 2010-2011 Jan Lelis, http://rbjl.net, released under the MIT license
42
+ Copyright (c) 2010-2012 Jan Lelis, http://rbjl.net, released under the MIT license
41
43
 
42
44
  Contributions by and thanks to
43
45
  * Michael Grosser
data/Rakefile CHANGED
@@ -1,10 +1,9 @@
1
1
  require 'rake'
2
- require 'rake/rdoctask'
3
2
  require 'fileutils'
3
+ require "rspec/core/rake_task"
4
4
 
5
5
  task :test => :spec
6
6
  task :default => :spec
7
- require "rspec/core/rake_task"
8
7
  RSpec::Core::RakeTask.new(:spec) do |t|
9
8
  t.rspec_opts = '--backtrace --color'
10
9
  end
@@ -36,11 +35,3 @@ task :gemspec do
36
35
  gemspec.validate
37
36
  end
38
37
 
39
- Rake::RDocTask.new do |rdoc|
40
- version = File.exist?('VERSION') ? File.read('VERSION').chomp : ""
41
-
42
- rdoc.rdoc_dir = 'doc'
43
- rdoc.title = "clipboard #{version}"
44
- rdoc.rdoc_files.include('README*')
45
- rdoc.rdoc_files.include('lib/**/*.rb')
46
- end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.9
1
+ 1.0.0
data/clipboard.gemspec CHANGED
@@ -6,13 +6,11 @@ Gem::Specification.new do |s|
6
6
  s.version = File.read('VERSION').chomp
7
7
 
8
8
  s.authors = ["Jan Lelis"]
9
- s.date = '2011-06-23'
10
- s.summary = 'Access the clipboard on Linux, MacOS and Windows.'
11
- s.description = 'Access the clipboard on Linux, MacOS and Windows (Clipboard.copy & Clipboard.paste).'
9
+ s.summary = 'Easy access to the clipboard on Linux, MacOS and Windows.'
10
+ s.description = 'Easy access to the clipboard on Linux, MacOS and Windows (Clipboard.copy & Clipboard.paste).'
12
11
  s.email = 'mail@janlelis.de'
13
12
  s.homepage = %q{http://github.com/janlelis/clipboard}
14
- s.required_rubygems_version = ">= 1.3.6"
15
- s.requirements = ["On Linux (or other X), you need xclip. You can install it on debian/ubuntu with sudo apt-get install xclip"]
13
+ s.requirements = ["On Linux (or other X), you need xclip. You can install it on debian/ubuntu with: sudo apt-get install xclip"]
16
14
  s.requirements += ["On Windows, you need the ffi gem."]
17
15
  s.files = Dir.glob(%w[{lib,spec}/**/*.rb [A-Z]* [A-Z]*.rdoc]) + %w{clipboard.gemspec .gemtest}
18
16
  s.add_development_dependency 'rake'
data/lib/clipboard.rb CHANGED
@@ -9,6 +9,7 @@ module Clipboard
9
9
  unless defined? Ocra # see gh#9
10
10
  autoload :Linux, 'clipboard/linux'
11
11
  autoload :Mac, 'clipboard/mac'
12
+ autoload :Java, 'clipboard/java'
12
13
  end
13
14
  autoload :Windows, 'clipboard/windows'
14
15
  autoload :File, 'clipboard/file'
@@ -0,0 +1,24 @@
1
+ module Clipboard; end
2
+
3
+ # Basic java clipboard access (jruby). No fun to use on X.
4
+ module Clipboard::Java
5
+ extend self
6
+
7
+ FLAVOR = ::Java::JavaAwtDatatransfer::DataFlavor.stringFlavor
8
+
9
+ def copy(text)
10
+ selection_string = ::Java::JavaAwtDatatransfer::StringSelection.new text
11
+ ::Java::JavaAwt::Toolkit.default_toolkit.system_clipboard.set_contents selection_string, nil
12
+ paste
13
+ end
14
+
15
+ def paste(_ = nil)
16
+ ::Java::JavaAwt::Toolkit.default_toolkit.system_clipboard.get_data(FLAVOR)
17
+ rescue
18
+ ''
19
+ end
20
+
21
+ def clear
22
+ copy ''
23
+ end
24
+ end
metadata CHANGED
@@ -1,92 +1,90 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: clipboard
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
4
5
  prerelease:
5
- version: 0.9.9
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Jan Lelis
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2011-06-23 00:00:00 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
12
+ date: 2012-01-09 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
16
15
  name: rake
17
- prerelease: false
18
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &10866260 !ruby/object:Gem::Requirement
19
17
  none: false
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
23
- version: "0"
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
24
22
  type: :development
25
- version_requirements: *id001
26
- - !ruby/object:Gem::Dependency
27
- name: rspec
28
23
  prerelease: false
29
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: *10866260
25
+ - !ruby/object:Gem::Dependency
26
+ name: rspec
27
+ requirement: &10881640 !ruby/object:Gem::Requirement
30
28
  none: false
31
- requirements:
32
- - - ">="
33
- - !ruby/object:Gem::Version
34
- version: "2"
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '2'
35
33
  type: :development
36
- version_requirements: *id002
37
- description: Access the clipboard on Linux, MacOS and Windows (Clipboard.copy & Clipboard.paste).
34
+ prerelease: false
35
+ version_requirements: *10881640
36
+ description: Easy access to the clipboard on Linux, MacOS and Windows (Clipboard.copy
37
+ & Clipboard.paste).
38
38
  email: mail@janlelis.de
39
39
  executables: []
40
-
41
40
  extensions: []
42
-
43
41
  extra_rdoc_files: []
44
-
45
- files:
42
+ files:
46
43
  - lib/clipboard.rb
47
- - lib/clipboard/linux.rb
48
- - lib/clipboard/mac.rb
49
44
  - lib/clipboard/file.rb
45
+ - lib/clipboard/java.rb
50
46
  - lib/clipboard/windows.rb
47
+ - lib/clipboard/mac.rb
48
+ - lib/clipboard/linux.rb
51
49
  - spec/clipboard_spec.rb
52
50
  - spec/spec_helper.rb
53
- - Rakefile
54
- - README.rdoc
55
51
  - Gemfile
52
+ - VERSION
56
53
  - Gemfile.lock
57
- - Rakefile.compiled.rbc
54
+ - README.rdoc
58
55
  - LICENSE
59
- - VERSION
56
+ - Rakefile
60
57
  - CHANGELOG.rdoc
61
58
  - clipboard.gemspec
62
59
  - .gemtest
63
60
  homepage: http://github.com/janlelis/clipboard
64
61
  licenses: []
65
-
66
- post_install_message: " \xE2\x94\x8C\xE2\x94\x80\xE2\x94\x80 info \xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x90\n J-_-L \xE2\x94\x82 http://github.com/janlelis/clipboard \xE2\x94\x82\n \xE2\x94\x9C\xE2\x94\x80\xE2\x94\x80 usage \xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\xA4\n \xE2\x94\x82 require 'clipboard' \xE2\x94\x82\n \xE2\x94\x82 Clipboard.copy '42' \xE2\x94\x82\n \xE2\x94\x82 Clipboard.paste #=> 42 \xE2\x94\x82\n \xE2\x94\x94\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x80\xE2\x94\x98"
62
+ post_install_message: ! " ┌── info ──────────────────────────────┐\n J-_-L │
63
+ http://github.com/janlelis/clipboard │\n ├── usage ─────────────────────────────┤\n
64
+ \ │ require 'clipboard' │\n │ Clipboard.copy '42' │\n
65
+ \ │ Clipboard.paste #=> 42 │\n └──────────────────────────────────────┘"
67
66
  rdoc_options: []
68
-
69
- require_paths:
67
+ require_paths:
70
68
  - lib
71
- required_ruby_version: !ruby/object:Gem::Requirement
69
+ required_ruby_version: !ruby/object:Gem::Requirement
72
70
  none: false
73
- requirements:
74
- - - ">="
75
- - !ruby/object:Gem::Version
76
- version: "0"
77
- required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ! '>='
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
78
76
  none: false
79
- requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- version: 1.3.6
83
- requirements:
84
- - On Linux (or other X), you need xclip. You can install it on debian/ubuntu with sudo apt-get install xclip
77
+ requirements:
78
+ - - ! '>='
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ requirements:
82
+ - ! 'On Linux (or other X), you need xclip. You can install it on debian/ubuntu with:
83
+ sudo apt-get install xclip'
85
84
  - On Windows, you need the ffi gem.
86
85
  rubyforge_project:
87
- rubygems_version: 1.8.1
86
+ rubygems_version: 1.8.11
88
87
  signing_key:
89
88
  specification_version: 3
90
- summary: Access the clipboard on Linux, MacOS and Windows.
89
+ summary: Easy access to the clipboard on Linux, MacOS and Windows.
91
90
  test_files: []
92
-
@@ -1,1115 +0,0 @@
1
- !RBIX
2
- 0
3
- x
4
- M
5
- 1
6
- n
7
- n
8
- x
9
- 10
10
- __script__
11
- i
12
- 226
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
- 5
85
- 7
86
- 11
87
- 64
88
- 47
89
- 49
90
- 1
91
- 1
92
- 15
93
- 45
94
- 12
95
- 13
96
- 43
97
- 14
98
- 43
99
- 15
100
- 7
101
- 7
102
- 56
103
- 16
104
- 50
105
- 17
106
- 1
107
- 15
108
- 99
109
- 7
110
- 18
111
- 7
112
- 19
113
- 65
114
- 67
115
- 49
116
- 20
117
- 0
118
- 49
119
- 21
120
- 4
121
- 15
122
- 5
123
- 7
124
- 22
125
- 64
126
- 47
127
- 49
128
- 23
129
- 1
130
- 15
131
- 5
132
- 44
133
- 43
134
- 4
135
- 79
136
- 49
137
- 5
138
- 1
139
- 13
140
- 7
141
- 24
142
- 7
143
- 18
144
- 49
145
- 8
146
- 2
147
- 15
148
- 56
149
- 25
150
- 47
151
- 50
152
- 9
153
- 1
154
- 15
155
- 5
156
- 7
157
- 26
158
- 64
159
- 47
160
- 49
161
- 23
162
- 1
163
- 15
164
- 5
165
- 44
166
- 43
167
- 4
168
- 79
169
- 49
170
- 5
171
- 1
172
- 13
173
- 7
174
- 27
175
- 7
176
- 24
177
- 49
178
- 8
179
- 2
180
- 15
181
- 56
182
- 28
183
- 47
184
- 50
185
- 9
186
- 1
187
- 15
188
- 5
189
- 7
190
- 29
191
- 64
192
- 47
193
- 49
194
- 23
195
- 1
196
- 15
197
- 5
198
- 7
199
- 30
200
- 56
201
- 31
202
- 47
203
- 50
204
- 9
205
- 1
206
- 15
207
- 5
208
- 7
209
- 32
210
- 64
211
- 47
212
- 49
213
- 23
214
- 1
215
- 15
216
- 5
217
- 7
218
- 18
219
- 56
220
- 33
221
- 47
222
- 50
223
- 9
224
- 1
225
- 15
226
- 45
227
- 34
228
- 35
229
- 43
230
- 36
231
- 56
232
- 37
233
- 50
234
- 17
235
- 0
236
- 15
237
- 2
238
- 11
239
- I
240
- 5
241
- I
242
- 0
243
- I
244
- 0
245
- I
246
- 0
247
- n
248
- p
249
- 38
250
- s
251
- 4
252
- rake
253
- x
254
- 7
255
- require
256
- s
257
- 13
258
- rake/rdoctask
259
- s
260
- 9
261
- fileutils
262
- x
263
- 4
264
- Hash
265
- x
266
- 16
267
- new_from_literal
268
- x
269
- 4
270
- test
271
- x
272
- 4
273
- spec
274
- x
275
- 3
276
- []=
277
- x
278
- 4
279
- task
280
- x
281
- 7
282
- default
283
- s
284
- 20
285
- rspec/core/rake_task
286
- x
287
- 5
288
- RSpec
289
- n
290
- x
291
- 4
292
- Core
293
- x
294
- 8
295
- RakeTask
296
- M
297
- 1
298
- p
299
- 2
300
- x
301
- 9
302
- for_block
303
- t
304
- n
305
- x
306
- 9
307
- __block__
308
- i
309
- 17
310
- 57
311
- 19
312
- 0
313
- 15
314
- 20
315
- 0
316
- 7
317
- 0
318
- 64
319
- 13
320
- 18
321
- 2
322
- 49
323
- 1
324
- 1
325
- 15
326
- 11
327
- I
328
- 5
329
- I
330
- 1
331
- I
332
- 1
333
- I
334
- 1
335
- n
336
- p
337
- 2
338
- s
339
- 19
340
- --backtrace --color
341
- x
342
- 11
343
- rspec_opts=
344
- p
345
- 5
346
- I
347
- 0
348
- I
349
- 8
350
- I
351
- 4
352
- I
353
- 9
354
- I
355
- 11
356
- x
357
- 30
358
- /home/jan/a/clipboard/Rakefile
359
- p
360
- 1
361
- x
362
- 1
363
- t
364
- x
365
- 3
366
- new
367
- x
368
- 7
369
- gemspec
370
- M
371
- 1
372
- n
373
- n
374
- x
375
- 7
376
- gemspec
377
- i
378
- 29
379
- 39
380
- 0
381
- 13
382
- 10
383
- 28
384
- 15
385
- 5
386
- 45
387
- 1
388
- 2
389
- 7
390
- 3
391
- 64
392
- 49
393
- 4
394
- 1
395
- 5
396
- 48
397
- 5
398
- 7
399
- 3
400
- 64
401
- 47
402
- 49
403
- 6
404
- 3
405
- 38
406
- 0
407
- 11
408
- I
409
- 4
410
- I
411
- 0
412
- I
413
- 0
414
- I
415
- 0
416
- n
417
- p
418
- 7
419
- x
420
- 8
421
- @gemspec
422
- x
423
- 4
424
- File
425
- n
426
- s
427
- 17
428
- clipboard.gemspec
429
- x
430
- 4
431
- read
432
- x
433
- 7
434
- binding
435
- x
436
- 4
437
- eval
438
- p
439
- 5
440
- I
441
- -1
442
- I
443
- c
444
- I
445
- 0
446
- I
447
- d
448
- I
449
- 1d
450
- x
451
- 30
452
- /home/jan/a/clipboard/Rakefile
453
- p
454
- 0
455
- x
456
- 17
457
- method_visibility
458
- x
459
- 15
460
- add_defn_method
461
- s
462
- 13
463
- Build the gem
464
- x
465
- 4
466
- desc
467
- x
468
- 3
469
- gem
470
- M
471
- 1
472
- p
473
- 2
474
- x
475
- 9
476
- for_block
477
- t
478
- n
479
- x
480
- 9
481
- __block__
482
- i
483
- 53
484
- 5
485
- 7
486
- 0
487
- 64
488
- 47
489
- 49
490
- 1
491
- 1
492
- 15
493
- 45
494
- 2
495
- 3
496
- 7
497
- 4
498
- 64
499
- 49
500
- 5
501
- 1
502
- 15
503
- 45
504
- 2
505
- 6
506
- 5
507
- 48
508
- 7
509
- 49
510
- 8
511
- 0
512
- 47
513
- 101
514
- 9
515
- 7
516
- 10
517
- 5
518
- 48
519
- 7
520
- 49
521
- 11
522
- 0
523
- 47
524
- 101
525
- 9
526
- 7
527
- 12
528
- 63
529
- 4
530
- 7
531
- 4
532
- 64
533
- 49
534
- 13
535
- 2
536
- 11
537
- I
538
- 6
539
- I
540
- 0
541
- I
542
- 0
543
- I
544
- 0
545
- I
546
- -2
547
- p
548
- 14
549
- s
550
- 27
551
- gem build clipboard.gemspec
552
- x
553
- 2
554
- sh
555
- x
556
- 9
557
- FileUtils
558
- n
559
- s
560
- 3
561
- pkg
562
- x
563
- 7
564
- mkdir_p
565
- n
566
- x
567
- 7
568
- gemspec
569
- x
570
- 4
571
- name
572
- x
573
- 4
574
- to_s
575
- s
576
- 1
577
- -
578
- x
579
- 7
580
- version
581
- s
582
- 4
583
- .gem
584
- x
585
- 2
586
- mv
587
- p
588
- 7
589
- I
590
- 0
591
- I
592
- 12
593
- I
594
- 9
595
- I
596
- 13
597
- I
598
- 13
599
- I
600
- 14
601
- I
602
- 35
603
- x
604
- 30
605
- /home/jan/a/clipboard/Rakefile
606
- p
607
- 0
608
- s
609
- 38
610
- Install the gem locally (without docs)
611
- x
612
- 7
613
- install
614
- M
615
- 1
616
- p
617
- 2
618
- x
619
- 9
620
- for_block
621
- t
622
- n
623
- x
624
- 9
625
- __block__
626
- i
627
- 32
628
- 5
629
- 7
630
- 0
631
- 5
632
- 48
633
- 1
634
- 49
635
- 2
636
- 0
637
- 47
638
- 101
639
- 3
640
- 7
641
- 4
642
- 5
643
- 48
644
- 1
645
- 49
646
- 5
647
- 0
648
- 47
649
- 101
650
- 3
651
- 7
652
- 6
653
- 63
654
- 5
655
- 47
656
- 49
657
- 7
658
- 1
659
- 11
660
- I
661
- 7
662
- I
663
- 0
664
- I
665
- 0
666
- I
667
- 0
668
- I
669
- -2
670
- p
671
- 8
672
- s
673
- 16
674
- gem install pkg/
675
- x
676
- 7
677
- gemspec
678
- x
679
- 4
680
- name
681
- x
682
- 4
683
- to_s
684
- s
685
- 1
686
- -
687
- x
688
- 7
689
- version
690
- s
691
- 18
692
- --no-rdoc --no-ri
693
- x
694
- 2
695
- sh
696
- p
697
- 3
698
- I
699
- 0
700
- I
701
- 19
702
- I
703
- 20
704
- x
705
- 30
706
- /home/jan/a/clipboard/Rakefile
707
- p
708
- 0
709
- s
710
- 20
711
- Generate the gemspec
712
- x
713
- 8
714
- generate
715
- M
716
- 1
717
- p
718
- 2
719
- x
720
- 9
721
- for_block
722
- t
723
- n
724
- x
725
- 9
726
- __block__
727
- i
728
- 12
729
- 5
730
- 5
731
- 48
732
- 0
733
- 49
734
- 1
735
- 0
736
- 47
737
- 49
738
- 2
739
- 1
740
- 11
741
- I
742
- 3
743
- I
744
- 0
745
- I
746
- 0
747
- I
748
- 0
749
- I
750
- -2
751
- p
752
- 3
753
- x
754
- 7
755
- gemspec
756
- x
757
- 7
758
- to_ruby
759
- x
760
- 4
761
- puts
762
- p
763
- 3
764
- I
765
- 0
766
- I
767
- 1e
768
- I
769
- c
770
- x
771
- 30
772
- /home/jan/a/clipboard/Rakefile
773
- p
774
- 0
775
- s
776
- 20
777
- Validate the gemspec
778
- M
779
- 1
780
- p
781
- 2
782
- x
783
- 9
784
- for_block
785
- t
786
- n
787
- x
788
- 9
789
- __block__
790
- i
791
- 7
792
- 5
793
- 48
794
- 0
795
- 49
796
- 1
797
- 0
798
- 11
799
- I
800
- 2
801
- I
802
- 0
803
- I
804
- 0
805
- I
806
- 0
807
- I
808
- -2
809
- p
810
- 2
811
- x
812
- 7
813
- gemspec
814
- x
815
- 8
816
- validate
817
- p
818
- 3
819
- I
820
- 0
821
- I
822
- 23
823
- I
824
- 7
825
- x
826
- 30
827
- /home/jan/a/clipboard/Rakefile
828
- p
829
- 0
830
- x
831
- 4
832
- Rake
833
- n
834
- x
835
- 8
836
- RDocTask
837
- M
838
- 1
839
- p
840
- 2
841
- x
842
- 9
843
- for_block
844
- t
845
- n
846
- x
847
- 9
848
- __block__
849
- i
850
- 91
851
- 57
852
- 19
853
- 0
854
- 15
855
- 45
856
- 0
857
- 1
858
- 7
859
- 2
860
- 64
861
- 49
862
- 3
863
- 1
864
- 9
865
- 29
866
- 45
867
- 0
868
- 4
869
- 7
870
- 2
871
- 64
872
- 49
873
- 5
874
- 1
875
- 49
876
- 6
877
- 0
878
- 8
879
- 32
880
- 7
881
- 7
882
- 64
883
- 19
884
- 1
885
- 15
886
- 20
887
- 0
888
- 7
889
- 8
890
- 64
891
- 13
892
- 18
893
- 2
894
- 49
895
- 9
896
- 1
897
- 15
898
- 15
899
- 20
900
- 0
901
- 7
902
- 10
903
- 20
904
- 1
905
- 47
906
- 101
907
- 11
908
- 63
909
- 2
910
- 13
911
- 18
912
- 2
913
- 49
914
- 12
915
- 1
916
- 15
917
- 15
918
- 20
919
- 0
920
- 49
921
- 13
922
- 0
923
- 7
924
- 14
925
- 64
926
- 49
927
- 15
928
- 1
929
- 15
930
- 20
931
- 0
932
- 49
933
- 13
934
- 0
935
- 7
936
- 16
937
- 64
938
- 49
939
- 15
940
- 1
941
- 11
942
- I
943
- 6
944
- I
945
- 2
946
- I
947
- 1
948
- I
949
- 1
950
- n
951
- p
952
- 17
953
- x
954
- 4
955
- File
956
- n
957
- s
958
- 7
959
- VERSION
960
- x
961
- 6
962
- exist?
963
- n
964
- x
965
- 4
966
- read
967
- x
968
- 5
969
- chomp
970
- s
971
- 0
972
-
973
- s
974
- 3
975
- doc
976
- x
977
- 9
978
- rdoc_dir=
979
- s
980
- 10
981
- clipboard
982
- x
983
- 4
984
- to_s
985
- x
986
- 6
987
- title=
988
- x
989
- 10
990
- rdoc_files
991
- s
992
- 7
993
- README*
994
- x
995
- 7
996
- include
997
- s
998
- 11
999
- lib/**/*.rb
1000
- p
1001
- 13
1002
- I
1003
- 0
1004
- I
1005
- 26
1006
- I
1007
- 4
1008
- I
1009
- 27
1010
- I
1011
- 23
1012
- I
1013
- 29
1014
- I
1015
- 30
1016
- I
1017
- 2a
1018
- I
1019
- 43
1020
- I
1021
- 2b
1022
- I
1023
- 4f
1024
- I
1025
- 2c
1026
- I
1027
- 5b
1028
- x
1029
- 30
1030
- /home/jan/a/clipboard/Rakefile
1031
- p
1032
- 2
1033
- x
1034
- 4
1035
- rdoc
1036
- x
1037
- 7
1038
- version
1039
- p
1040
- 35
1041
- I
1042
- 0
1043
- I
1044
- 1
1045
- I
1046
- 9
1047
- I
1048
- 2
1049
- I
1050
- 12
1051
- I
1052
- 3
1053
- I
1054
- 1b
1055
- I
1056
- 5
1057
- I
1058
- 31
1059
- I
1060
- 6
1061
- I
1062
- 47
1063
- I
1064
- 7
1065
- I
1066
- 50
1067
- I
1068
- 8
1069
- I
1070
- 5f
1071
- I
1072
- c
1073
- I
1074
- 6d
1075
- I
1076
- 10
1077
- I
1078
- 76
1079
- I
1080
- 11
1081
- I
1082
- 8e
1083
- I
1084
- 17
1085
- I
1086
- 97
1087
- I
1088
- 18
1089
- I
1090
- af
1091
- I
1092
- 1c
1093
- I
1094
- b8
1095
- I
1096
- 1d
1097
- I
1098
- c2
1099
- I
1100
- 21
1101
- I
1102
- cb
1103
- I
1104
- 22
1105
- I
1106
- d5
1107
- I
1108
- 26
1109
- I
1110
- e2
1111
- x
1112
- 30
1113
- /home/jan/a/clipboard/Rakefile
1114
- p
1115
- 0