bundler 1.0.0.beta.4 → 1.0.0.beta.5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of bundler might be problematic. Click here for more details.

@@ -185,15 +185,9 @@ module Bundler
185
185
  def requires_sudo?
186
186
  path = bundle_path
187
187
  path = path.parent until path.exist?
188
+ sudo_present = !`which sudo 2>#{NULL}`.empty?
188
189
 
189
- case
190
- when File.writable?(path) ||
191
- `which sudo 2>#{NULL}`.empty? ||
192
- File.owned?(path)
193
- false
194
- else
195
- true
196
- end
190
+ !File.writable?(path) && sudo_present
197
191
  end
198
192
 
199
193
  def mkdir_p(path)
@@ -205,7 +199,7 @@ module Bundler
205
199
  end
206
200
 
207
201
  def sudo(str)
208
- `sudo -p 'Enter your password to install the bundled RubyGems to your system: ' -E #{str}`
202
+ `sudo -p 'Enter your password to install the bundled RubyGems to your system: ' #{str}`
209
203
  end
210
204
 
211
205
  private
@@ -139,7 +139,7 @@ module Bundler
139
139
  Bundler.definition(:gems => gems, :sources => sources)
140
140
  end
141
141
 
142
- Installer.install Bundler.root, Bundler.definition
142
+ Installer.install Bundler.root, Bundler.definition, "update" => true
143
143
  cache if Bundler.root.join("vendor/cache").exist?
144
144
  Bundler.ui.confirm "Your bundle is updated! " +
145
145
  "Use `bundle show [gemname]` to see where a bundled gem is installed."
@@ -2,7 +2,7 @@ require "digest/sha1"
2
2
 
3
3
  module Bundler
4
4
  class Definition
5
- attr_reader :dependencies, :platforms
5
+ attr_reader :dependencies, :platforms, :sources
6
6
 
7
7
  def self.build(gemfile, lockfile, unlock)
8
8
  unlock ||= {}
@@ -232,7 +232,7 @@ module Bundler
232
232
  end
233
233
 
234
234
  def satisfies_locked_spec?(dep)
235
- @last_resolve.any? { |s| s.satisfies?(dep) }
235
+ @last_resolve.any? { |s| s.satisfies?(dep) && (!dep.source || s.source == dep.source) }
236
236
  end
237
237
 
238
238
  def expanded_dependencies
@@ -36,8 +36,10 @@ module Bundler
36
36
  env_file = root.join('.bundle/environment.rb')
37
37
  env_file.rmtree if env_file.exist?
38
38
 
39
+ contents = @definition.to_lock
40
+
39
41
  File.open(root.join('Gemfile.lock'), 'w') do |f|
40
- f.puts @definition.to_lock
42
+ f.puts contents
41
43
  end
42
44
  end
43
45
 
@@ -15,11 +15,21 @@ module Bundler
15
15
  return
16
16
  end
17
17
 
18
+ if Bundler.root.join("Gemfile.lock").exist? && !options["update"]
19
+ begin
20
+ missing_specs = Definition.build(Bundler.default_gemfile, Bundler.root.join("Gemfile.lock"), nil).missing_specs
21
+ local = true unless missing_specs.any?
22
+ rescue BundlerError
23
+ end
24
+ end
25
+
18
26
  # Since we are installing, we can resolve the definition
19
27
  # using remote specs
20
- options["local"] ?
21
- @definition.resolve_with_cache! :
22
- @definition.resolve_remotely!
28
+ unless local
29
+ options["local"] ?
30
+ @definition.resolve_with_cache! :
31
+ @definition.resolve_remotely!
32
+ end
23
33
 
24
34
  # Ensure that BUNDLE_PATH exists
25
35
  Bundler.mkdir_p(Bundler.bundle_path)
@@ -32,10 +32,11 @@ module Bundler
32
32
  self[:without] ? self[:without].split(":").map { |w| w.to_sym } : []
33
33
  end
34
34
 
35
+ # @config["BUNDLE_PATH"] should be prioritized over ENV["BUNDLE_PATH"]
35
36
  def path
36
37
  path = ENV[key_for(:path)]
37
38
 
38
- return path if path
39
+ return path if path && !@config.key?(key_for(:path))
39
40
 
40
41
  if path = self[:path]
41
42
  "#{path}/#{Bundler.ruby_scope}"
@@ -86,12 +86,13 @@ module Bundler
86
86
  Bundler.ui.info "Installing #{spec.name} (#{spec.version}) "
87
87
 
88
88
  install_path = Bundler.requires_sudo? ? Bundler.tmp : Gem.dir
89
- installer = Gem::Installer.new path,
90
- :install_dir => install_path,
91
- :ignore_dependencies => true,
92
- :wrappers => true,
93
- :env_shebang => true,
94
- :bin_dir => "#{install_path}/bin"
89
+ options = { :install_dir => install_path,
90
+ :ignore_dependencies => true,
91
+ :wrappers => true,
92
+ :env_shebang => true }
93
+ options.merge!(:bin_dir => "#{install_path}/bin") unless spec.executables.nil? || spec.executables.empty?
94
+
95
+ installer = Gem::Installer.new path, options
95
96
  installer.install
96
97
 
97
98
  # SUDO HAX
@@ -99,6 +100,9 @@ module Bundler
99
100
  sudo "mkdir -p #{Gem.dir}/gems #{Gem.dir}/specifications"
100
101
  sudo "cp -R #{Bundler.tmp}/gems/#{spec.full_name} #{Gem.dir}/gems/"
101
102
  sudo "cp -R #{Bundler.tmp}/specifications/#{spec.full_name}.gemspec #{Gem.dir}/specifications/"
103
+ spec.executables.each do |exe|
104
+ Bundler.sudo "cp -R #{Bundler.tmp}/bin/#{exe} #{Gem.dir}/bin/"
105
+ end
102
106
  end
103
107
 
104
108
  spec.loaded_from = "#{Gem.dir}/specifications/#{spec.full_name}.gemspec"
@@ -367,13 +371,26 @@ module Bundler
367
371
  end
368
372
 
369
373
  class Installer < Gem::Installer
370
- def initialize(spec)
374
+ def initialize(spec, options = {})
371
375
  @spec = spec
372
- @bin_dir = "#{Gem.dir}/bin"
376
+ @bin_dir = Bundler.requires_sudo? ? "#{Bundler.tmp}/bin" : "#{Gem.dir}/bin"
373
377
  @gem_dir = spec.full_gem_path
374
- @wrappers = true
375
- @env_shebang = true
376
- @format_executable = false
378
+ @wrappers = options[:wrappers] || true
379
+ @env_shebang = options[:env_shebang] || true
380
+ @format_executable = options[:format_executable] || false
381
+ end
382
+
383
+ def generate_bin
384
+ return if spec.executables.nil? || spec.executables.empty?
385
+
386
+ FileUtils.mkdir_p("#{Bundler.tmp}/bin") if Bundler.requires_sudo?
387
+ super
388
+ if Bundler.requires_sudo?
389
+ Bundler.mkdir_p "#{Gem.dir}/bin"
390
+ spec.executables.each do |exe|
391
+ Bundler.sudo "cp -R #{Bundler.tmp}/bin/#{exe} #{Gem.dir}/bin/"
392
+ end
393
+ end
377
394
  end
378
395
  end
379
396
 
@@ -421,14 +438,7 @@ module Bundler
421
438
 
422
439
  gem_file = Dir.chdir(gem_dir){ Gem::Builder.new(spec).build }
423
440
 
424
- installer = Gem::Installer.new File.join(gem_dir, gem_file),
425
- :bin_dir => "#{Gem.dir}/bin",
426
- :wrappers => true,
427
- :env_shebang => false,
428
- :format_executable => false
429
-
430
- installer.instance_eval { @gem_dir = gem_dir }
431
-
441
+ installer = Installer.new(spec, :env_shebang => false)
432
442
  installer.build_extensions
433
443
  installer.generate_bin
434
444
  rescue Gem::InvalidSpecificationException => e
@@ -534,7 +544,8 @@ module Bundler
534
544
  end
535
545
 
536
546
  def load_spec_files
537
- super if cache_path.exist?
547
+ return super if cache_path.exist?
548
+ raise PathError
538
549
  rescue PathError
539
550
  raise PathError, "#{to_s} is not checked out. Please run `bundle install`"
540
551
  end
@@ -2,5 +2,5 @@ module Bundler
2
2
  # We're doing this because we might write tests that deal
3
3
  # with other versions of bundler and we are unsure how to
4
4
  # handle this better.
5
- VERSION = "1.0.0.beta.4" unless defined?(::Bundler::VERSION)
5
+ VERSION = "1.0.0.beta.5" unless defined?(::Bundler::VERSION)
6
6
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler
3
3
  version: !ruby/object:Gem::Version
4
- hash: 62196363
5
4
  prerelease: true
6
5
  segments:
7
6
  - 1
8
7
  - 0
9
8
  - 0
10
9
  - beta
11
- - 4
12
- version: 1.0.0.beta.4
10
+ - 5
11
+ version: 1.0.0.beta.5
13
12
  platform: ruby
14
13
  authors:
15
14
  - Carl Lerche
@@ -19,18 +18,16 @@ autorequire:
19
18
  bindir: bin
20
19
  cert_chain: []
21
20
 
22
- date: 2010-07-09 00:00:00 -07:00
21
+ date: 2010-07-12 00:00:00 -07:00
23
22
  default_executable:
24
23
  dependencies:
25
24
  - !ruby/object:Gem::Dependency
26
25
  name: rspec
27
26
  prerelease: false
28
27
  requirement: &id001 !ruby/object:Gem::Requirement
29
- none: false
30
28
  requirements:
31
29
  - - ">="
32
30
  - !ruby/object:Gem::Version
33
- hash: 3
34
31
  segments:
35
32
  - 0
36
33
  version: "0"
@@ -47,7 +44,6 @@ extra_rdoc_files: []
47
44
 
48
45
  files:
49
46
  - bin/bundle
50
- - bin/rake
51
47
  - lib/bundler/cli.rb
52
48
  - lib/bundler/definition.rb
53
49
  - lib/bundler/dependency.rb
@@ -61,7 +57,6 @@ files:
61
57
  - lib/bundler/remote_specification.rb
62
58
  - lib/bundler/resolver.rb
63
59
  - lib/bundler/rubygems_ext.rb
64
- - lib/bundler/rubygems_ext.rbc
65
60
  - lib/bundler/runtime.rb
66
61
  - lib/bundler/settings.rb
67
62
  - lib/bundler/setup.rb
@@ -90,9 +85,7 @@ files:
90
85
  - lib/bundler/vendor/thor/version.rb
91
86
  - lib/bundler/vendor/thor.rb
92
87
  - lib/bundler/version.rb
93
- - lib/bundler/version.rbc
94
88
  - lib/bundler.rb
95
- - lib/bundler.rbc
96
89
  - LICENSE
97
90
  - README.md
98
91
  - ROADMAP.md
@@ -108,20 +101,16 @@ rdoc_options: []
108
101
  require_paths:
109
102
  - lib
110
103
  required_ruby_version: !ruby/object:Gem::Requirement
111
- none: false
112
104
  requirements:
113
105
  - - ">="
114
106
  - !ruby/object:Gem::Version
115
- hash: 3
116
107
  segments:
117
108
  - 0
118
109
  version: "0"
119
110
  required_rubygems_version: !ruby/object:Gem::Requirement
120
- none: false
121
111
  requirements:
122
112
  - - ">="
123
113
  - !ruby/object:Gem::Version
124
- hash: 23
125
114
  segments:
126
115
  - 1
127
116
  - 3
@@ -130,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
119
  requirements: []
131
120
 
132
121
  rubyforge_project: bundler
133
- rubygems_version: 1.3.7
122
+ rubygems_version: 1.3.6
134
123
  signing_key:
135
124
  specification_version: 3
136
125
  summary: The best way to manage your application's dependencies
data/bin/rake DELETED
@@ -1,19 +0,0 @@
1
- #!/Users/wycats/Code/rubinius/bin/rbx
2
- #
3
- # This file was generated by RubyGems.
4
- #
5
- # The application 'rake' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'rubygems'
10
-
11
- version = ">= 0"
12
-
13
- if ARGV.first =~ /^_(.*)_$/ and Gem::Version.correct? $1 then
14
- version = $1
15
- ARGV.shift
16
- end
17
-
18
- gem 'rake', version
19
- load Gem.bin_path('rake', 'rake', version)
@@ -1,4598 +0,0 @@
1
- !RBIX
2
- 1993355899764403924
3
- x
4
- M
5
- 1
6
- n
7
- n
8
- x
9
- 10
10
- __script__
11
- i
12
- 73
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
- 7
42
- 4
43
- 64
44
- 47
45
- 49
46
- 1
47
- 1
48
- 15
49
- 5
50
- 7
51
- 5
52
- 64
53
- 47
54
- 49
55
- 1
56
- 1
57
- 15
58
- 99
59
- 7
60
- 6
61
- 65
62
- 49
63
- 7
64
- 2
65
- 13
66
- 99
67
- 12
68
- 7
69
- 8
70
- 12
71
- 7
72
- 9
73
- 12
74
- 65
75
- 12
76
- 49
77
- 10
78
- 4
79
- 15
80
- 49
81
- 8
82
- 0
83
- 15
84
- 2
85
- 11
86
- I
87
- 6
88
- I
89
- 0
90
- I
91
- 0
92
- I
93
- 0
94
- n
95
- p
96
- 11
97
- s
98
- 9
99
- fileutils
100
- x
101
- 7
102
- require
103
- s
104
- 8
105
- pathname
106
- s
107
- 4
108
- yaml
109
- s
110
- 20
111
- bundler/rubygems_ext
112
- s
113
- 15
114
- bundler/version
115
- x
116
- 7
117
- Bundler
118
- x
119
- 11
120
- open_module
121
- x
122
- 15
123
- __module_init__
124
- M
125
- 1
126
- n
127
- n
128
- x
129
- 7
130
- Bundler
131
- i
132
- 615
133
- 5
134
- 66
135
- 65
136
- 7
137
- 0
138
- 45
139
- 1
140
- 2
141
- 49
142
- 3
143
- 0
144
- 49
145
- 4
146
- 2
147
- 15
148
- 5
149
- 7
150
- 5
151
- 7
152
- 6
153
- 64
154
- 47
155
- 49
156
- 7
157
- 2
158
- 15
159
- 5
160
- 7
161
- 8
162
- 7
163
- 9
164
- 64
165
- 47
166
- 49
167
- 7
168
- 2
169
- 15
170
- 5
171
- 7
172
- 10
173
- 7
174
- 11
175
- 64
176
- 47
177
- 49
178
- 7
179
- 2
180
- 15
181
- 5
182
- 7
183
- 12
184
- 7
185
- 13
186
- 64
187
- 47
188
- 49
189
- 7
190
- 2
191
- 15
192
- 5
193
- 7
194
- 14
195
- 7
196
- 15
197
- 64
198
- 47
199
- 49
200
- 7
201
- 2
202
- 15
203
- 5
204
- 7
205
- 16
206
- 7
207
- 17
208
- 64
209
- 47
210
- 49
211
- 7
212
- 2
213
- 15
214
- 5
215
- 7
216
- 18
217
- 7
218
- 19
219
- 64
220
- 47
221
- 49
222
- 7
223
- 2
224
- 15
225
- 5
226
- 7
227
- 20
228
- 7
229
- 21
230
- 64
231
- 47
232
- 49
233
- 7
234
- 2
235
- 15
236
- 5
237
- 7
238
- 22
239
- 7
240
- 23
241
- 64
242
- 47
243
- 49
244
- 7
245
- 2
246
- 15
247
- 5
248
- 7
249
- 24
250
- 7
251
- 25
252
- 64
253
- 47
254
- 49
255
- 7
256
- 2
257
- 15
258
- 5
259
- 7
260
- 26
261
- 7
262
- 27
263
- 64
264
- 47
265
- 49
266
- 7
267
- 2
268
- 15
269
- 5
270
- 7
271
- 28
272
- 7
273
- 29
274
- 64
275
- 47
276
- 49
277
- 7
278
- 2
279
- 15
280
- 5
281
- 7
282
- 30
283
- 7
284
- 31
285
- 64
286
- 47
287
- 49
288
- 7
289
- 2
290
- 15
291
- 5
292
- 7
293
- 32
294
- 7
295
- 33
296
- 64
297
- 47
298
- 49
299
- 7
300
- 2
301
- 15
302
- 5
303
- 7
304
- 34
305
- 7
306
- 35
307
- 64
308
- 47
309
- 49
310
- 7
311
- 2
312
- 15
313
- 5
314
- 7
315
- 36
316
- 7
317
- 37
318
- 64
319
- 47
320
- 49
321
- 7
322
- 2
323
- 15
324
- 5
325
- 7
326
- 38
327
- 7
328
- 33
329
- 64
330
- 47
331
- 49
332
- 7
333
- 2
334
- 15
335
- 5
336
- 7
337
- 39
338
- 7
339
- 40
340
- 64
341
- 47
342
- 49
343
- 7
344
- 2
345
- 15
346
- 99
347
- 7
348
- 41
349
- 45
350
- 42
351
- 43
352
- 65
353
- 49
354
- 44
355
- 3
356
- 13
357
- 99
358
- 12
359
- 7
360
- 45
361
- 12
362
- 7
363
- 46
364
- 12
365
- 65
366
- 12
367
- 49
368
- 47
369
- 4
370
- 15
371
- 49
372
- 45
373
- 0
374
- 15
375
- 99
376
- 7
377
- 48
378
- 45
379
- 41
380
- 49
381
- 65
382
- 49
383
- 44
384
- 3
385
- 13
386
- 99
387
- 12
388
- 7
389
- 45
390
- 12
391
- 7
392
- 50
393
- 12
394
- 65
395
- 12
396
- 49
397
- 47
398
- 4
399
- 15
400
- 49
401
- 45
402
- 0
403
- 15
404
- 99
405
- 7
406
- 51
407
- 45
408
- 41
409
- 52
410
- 65
411
- 49
412
- 44
413
- 3
414
- 13
415
- 99
416
- 12
417
- 7
418
- 45
419
- 12
420
- 7
421
- 53
422
- 12
423
- 65
424
- 12
425
- 49
426
- 47
427
- 4
428
- 15
429
- 49
430
- 45
431
- 0
432
- 15
433
- 99
434
- 7
435
- 54
436
- 45
437
- 41
438
- 55
439
- 65
440
- 49
441
- 44
442
- 3
443
- 13
444
- 99
445
- 12
446
- 7
447
- 45
448
- 12
449
- 7
450
- 56
451
- 12
452
- 65
453
- 12
454
- 49
455
- 47
456
- 4
457
- 15
458
- 49
459
- 45
460
- 0
461
- 15
462
- 99
463
- 7
464
- 57
465
- 45
466
- 41
467
- 58
468
- 65
469
- 49
470
- 44
471
- 3
472
- 13
473
- 99
474
- 12
475
- 7
476
- 45
477
- 12
478
- 7
479
- 59
480
- 12
481
- 65
482
- 12
483
- 49
484
- 47
485
- 4
486
- 15
487
- 49
488
- 45
489
- 0
490
- 15
491
- 99
492
- 7
493
- 60
494
- 45
495
- 57
496
- 61
497
- 65
498
- 49
499
- 44
500
- 3
501
- 13
502
- 99
503
- 12
504
- 7
505
- 45
506
- 12
507
- 7
508
- 62
509
- 12
510
- 65
511
- 12
512
- 49
513
- 47
514
- 4
515
- 15
516
- 49
517
- 45
518
- 0
519
- 15
520
- 99
521
- 7
522
- 63
523
- 45
524
- 41
525
- 64
526
- 65
527
- 49
528
- 44
529
- 3
530
- 13
531
- 99
532
- 12
533
- 7
534
- 45
535
- 12
536
- 7
537
- 65
538
- 12
539
- 65
540
- 12
541
- 49
542
- 47
543
- 4
544
- 15
545
- 49
546
- 45
547
- 0
548
- 15
549
- 99
550
- 7
551
- 66
552
- 45
553
- 41
554
- 67
555
- 65
556
- 49
557
- 44
558
- 3
559
- 13
560
- 99
561
- 12
562
- 7
563
- 45
564
- 12
565
- 7
566
- 68
567
- 12
568
- 65
569
- 12
570
- 49
571
- 47
572
- 4
573
- 15
574
- 49
575
- 45
576
- 0
577
- 15
578
- 99
579
- 7
580
- 69
581
- 45
582
- 41
583
- 70
584
- 65
585
- 49
586
- 44
587
- 3
588
- 13
589
- 99
590
- 12
591
- 7
592
- 45
593
- 12
594
- 7
595
- 71
596
- 12
597
- 65
598
- 12
599
- 49
600
- 47
601
- 4
602
- 15
603
- 49
604
- 45
605
- 0
606
- 15
607
- 99
608
- 7
609
- 72
610
- 45
611
- 41
612
- 73
613
- 65
614
- 49
615
- 44
616
- 3
617
- 13
618
- 99
619
- 12
620
- 7
621
- 45
622
- 12
623
- 7
624
- 74
625
- 12
626
- 65
627
- 12
628
- 49
629
- 47
630
- 4
631
- 15
632
- 49
633
- 45
634
- 0
635
- 15
636
- 99
637
- 7
638
- 75
639
- 45
640
- 41
641
- 76
642
- 65
643
- 49
644
- 44
645
- 3
646
- 13
647
- 99
648
- 12
649
- 7
650
- 45
651
- 12
652
- 7
653
- 77
654
- 12
655
- 65
656
- 12
657
- 49
658
- 47
659
- 4
660
- 15
661
- 49
662
- 45
663
- 0
664
- 15
665
- 99
666
- 7
667
- 69
668
- 45
669
- 41
670
- 78
671
- 65
672
- 49
673
- 44
674
- 3
675
- 13
676
- 99
677
- 12
678
- 7
679
- 45
680
- 12
681
- 7
682
- 79
683
- 12
684
- 65
685
- 12
686
- 49
687
- 47
688
- 4
689
- 15
690
- 49
691
- 45
692
- 0
693
- 15
694
- 99
695
- 7
696
- 80
697
- 45
698
- 41
699
- 81
700
- 65
701
- 49
702
- 44
703
- 3
704
- 13
705
- 99
706
- 12
707
- 7
708
- 45
709
- 12
710
- 7
711
- 82
712
- 12
713
- 65
714
- 12
715
- 49
716
- 47
717
- 4
718
- 15
719
- 49
720
- 45
721
- 0
722
- 15
723
- 5
724
- 99
725
- 12
726
- 49
727
- 83
728
- 1
729
- 13
730
- 99
731
- 12
732
- 7
733
- 84
734
- 12
735
- 7
736
- 85
737
- 12
738
- 65
739
- 12
740
- 49
741
- 47
742
- 4
743
- 15
744
- 49
745
- 84
746
- 0
747
- 11
748
- I
749
- 6
750
- I
751
- 0
752
- I
753
- 0
754
- I
755
- 0
756
- n
757
- p
758
- 86
759
- x
760
- 12
761
- ORIGINAL_ENV
762
- x
763
- 3
764
- ENV
765
- n
766
- x
767
- 7
768
- to_hash
769
- x
770
- 9
771
- const_set
772
- x
773
- 10
774
- Definition
775
- s
776
- 18
777
- bundler/definition
778
- x
779
- 8
780
- autoload
781
- x
782
- 10
783
- Dependency
784
- s
785
- 18
786
- bundler/dependency
787
- x
788
- 3
789
- Dsl
790
- s
791
- 11
792
- bundler/dsl
793
- x
794
- 11
795
- Environment
796
- s
797
- 19
798
- bundler/environment
799
- x
800
- 5
801
- Graph
802
- s
803
- 13
804
- bundler/graph
805
- x
806
- 5
807
- Index
808
- s
809
- 13
810
- bundler/index
811
- x
812
- 9
813
- Installer
814
- s
815
- 17
816
- bundler/installer
817
- x
818
- 17
819
- LazySpecification
820
- s
821
- 26
822
- bundler/lazy_specification
823
- x
824
- 14
825
- LockfileParser
826
- s
827
- 23
828
- bundler/lockfile_parser
829
- x
830
- 19
831
- RemoteSpecification
832
- s
833
- 28
834
- bundler/remote_specification
835
- x
836
- 8
837
- Resolver
838
- s
839
- 16
840
- bundler/resolver
841
- x
842
- 7
843
- Runtime
844
- s
845
- 15
846
- bundler/runtime
847
- x
848
- 8
849
- Settings
850
- s
851
- 16
852
- bundler/settings
853
- x
854
- 13
855
- SharedHelpers
856
- s
857
- 22
858
- bundler/shared_helpers
859
- x
860
- 7
861
- SpecSet
862
- s
863
- 16
864
- bundler/spec_set
865
- x
866
- 6
867
- Source
868
- s
869
- 14
870
- bundler/source
871
- x
872
- 13
873
- Specification
874
- x
875
- 2
876
- UI
877
- s
878
- 10
879
- bundler/ui
880
- x
881
- 12
882
- BundlerError
883
- x
884
- 13
885
- StandardError
886
- n
887
- x
888
- 10
889
- open_class
890
- x
891
- 14
892
- __class_init__
893
- M
894
- 1
895
- n
896
- n
897
- x
898
- 12
899
- BundlerError
900
- i
901
- 27
902
- 5
903
- 66
904
- 99
905
- 7
906
- 0
907
- 7
908
- 1
909
- 65
910
- 5
911
- 49
912
- 2
913
- 4
914
- 15
915
- 99
916
- 7
917
- 0
918
- 7
919
- 3
920
- 65
921
- 67
922
- 49
923
- 4
924
- 0
925
- 49
926
- 5
927
- 4
928
- 11
929
- I
930
- 5
931
- I
932
- 0
933
- I
934
- 0
935
- I
936
- 0
937
- n
938
- p
939
- 6
940
- x
941
- 11
942
- status_code
943
- M
944
- 1
945
- n
946
- n
947
- x
948
- 11
949
- status_code
950
- i
951
- 24
952
- 23
953
- 0
954
- 10
955
- 8
956
- 1
957
- 19
958
- 0
959
- 15
960
- 20
961
- 0
962
- 9
963
- 15
964
- 1
965
- 8
966
- 18
967
- 39
968
- 0
969
- 11
970
- 15
971
- 20
972
- 0
973
- 38
974
- 0
975
- 11
976
- I
977
- 2
978
- I
979
- 1
980
- I
981
- 0
982
- I
983
- 1
984
- n
985
- p
986
- 1
987
- x
988
- 5
989
- @code
990
- p
991
- 7
992
- I
993
- 0
994
- I
995
- 1e
996
- I
997
- 8
998
- I
999
- 1f
1000
- I
1001
- 13
1002
- I
1003
- 20
1004
- I
1005
- 18
1006
- x
1007
- 41
1008
- /Users/wycats/Code/bundler/lib/bundler.rb
1009
- p
1010
- 1
1011
- x
1012
- 4
1013
- code
1014
- x
1015
- 13
1016
- attach_method
1017
- M
1018
- 1
1019
- n
1020
- n
1021
- x
1022
- 11
1023
- status_code
1024
- i
1025
- 8
1026
- 5
1027
- 49
1028
- 0
1029
- 0
1030
- 49
1031
- 1
1032
- 0
1033
- 11
1034
- I
1035
- 1
1036
- I
1037
- 0
1038
- I
1039
- 0
1040
- I
1041
- 0
1042
- n
1043
- p
1044
- 2
1045
- x
1046
- 5
1047
- class
1048
- x
1049
- 11
1050
- status_code
1051
- p
1052
- 5
1053
- I
1054
- 0
1055
- I
1056
- 23
1057
- I
1058
- 0
1059
- I
1060
- 24
1061
- I
1062
- 8
1063
- x
1064
- 41
1065
- /Users/wycats/Code/bundler/lib/bundler.rb
1066
- p
1067
- 0
1068
- x
1069
- 17
1070
- method_visibility
1071
- x
1072
- 15
1073
- add_defn_method
1074
- p
1075
- 5
1076
- I
1077
- 2
1078
- I
1079
- 1e
1080
- I
1081
- d
1082
- I
1083
- 23
1084
- I
1085
- 1b
1086
- x
1087
- 41
1088
- /Users/wycats/Code/bundler/lib/bundler.rb
1089
- p
1090
- 0
1091
- x
1092
- 13
1093
- attach_method
1094
- x
1095
- 15
1096
- GemfileNotFound
1097
- n
1098
- M
1099
- 1
1100
- n
1101
- n
1102
- x
1103
- 15
1104
- GemfileNotFound
1105
- i
1106
- 10
1107
- 5
1108
- 66
1109
- 5
1110
- 4
1111
- 10
1112
- 47
1113
- 49
1114
- 0
1115
- 1
1116
- 11
1117
- I
1118
- 2
1119
- I
1120
- 0
1121
- I
1122
- 0
1123
- I
1124
- 0
1125
- n
1126
- p
1127
- 1
1128
- x
1129
- 11
1130
- status_code
1131
- p
1132
- 3
1133
- I
1134
- 2
1135
- I
1136
- 28
1137
- I
1138
- a
1139
- x
1140
- 41
1141
- /Users/wycats/Code/bundler/lib/bundler.rb
1142
- p
1143
- 0
1144
- x
1145
- 11
1146
- GemNotFound
1147
- n
1148
- M
1149
- 1
1150
- n
1151
- n
1152
- x
1153
- 11
1154
- GemNotFound
1155
- i
1156
- 10
1157
- 5
1158
- 66
1159
- 5
1160
- 4
1161
- 7
1162
- 47
1163
- 49
1164
- 0
1165
- 1
1166
- 11
1167
- I
1168
- 2
1169
- I
1170
- 0
1171
- I
1172
- 0
1173
- I
1174
- 0
1175
- n
1176
- p
1177
- 1
1178
- x
1179
- 11
1180
- status_code
1181
- p
1182
- 3
1183
- I
1184
- 2
1185
- I
1186
- 29
1187
- I
1188
- a
1189
- x
1190
- 41
1191
- /Users/wycats/Code/bundler/lib/bundler.rb
1192
- p
1193
- 0
1194
- x
1195
- 15
1196
- VersionConflict
1197
- n
1198
- M
1199
- 1
1200
- n
1201
- n
1202
- x
1203
- 15
1204
- VersionConflict
1205
- i
1206
- 10
1207
- 5
1208
- 66
1209
- 5
1210
- 4
1211
- 6
1212
- 47
1213
- 49
1214
- 0
1215
- 1
1216
- 11
1217
- I
1218
- 2
1219
- I
1220
- 0
1221
- I
1222
- 0
1223
- I
1224
- 0
1225
- n
1226
- p
1227
- 1
1228
- x
1229
- 11
1230
- status_code
1231
- p
1232
- 3
1233
- I
1234
- 2
1235
- I
1236
- 2a
1237
- I
1238
- a
1239
- x
1240
- 41
1241
- /Users/wycats/Code/bundler/lib/bundler.rb
1242
- p
1243
- 0
1244
- x
1245
- 12
1246
- GemfileError
1247
- n
1248
- M
1249
- 1
1250
- n
1251
- n
1252
- x
1253
- 12
1254
- GemfileError
1255
- i
1256
- 10
1257
- 5
1258
- 66
1259
- 5
1260
- 4
1261
- 4
1262
- 47
1263
- 49
1264
- 0
1265
- 1
1266
- 11
1267
- I
1268
- 2
1269
- I
1270
- 0
1271
- I
1272
- 0
1273
- I
1274
- 0
1275
- n
1276
- p
1277
- 1
1278
- x
1279
- 11
1280
- status_code
1281
- p
1282
- 3
1283
- I
1284
- 2
1285
- I
1286
- 2b
1287
- I
1288
- a
1289
- x
1290
- 41
1291
- /Users/wycats/Code/bundler/lib/bundler.rb
1292
- p
1293
- 0
1294
- x
1295
- 14
1296
- GemfileChanged
1297
- n
1298
- M
1299
- 1
1300
- n
1301
- n
1302
- x
1303
- 14
1304
- GemfileChanged
1305
- i
1306
- 10
1307
- 5
1308
- 66
1309
- 5
1310
- 4
1311
- 4
1312
- 47
1313
- 49
1314
- 0
1315
- 1
1316
- 11
1317
- I
1318
- 2
1319
- I
1320
- 0
1321
- I
1322
- 0
1323
- I
1324
- 0
1325
- n
1326
- p
1327
- 1
1328
- x
1329
- 11
1330
- status_code
1331
- p
1332
- 3
1333
- I
1334
- 2
1335
- I
1336
- 2c
1337
- I
1338
- a
1339
- x
1340
- 41
1341
- /Users/wycats/Code/bundler/lib/bundler.rb
1342
- p
1343
- 0
1344
- x
1345
- 9
1346
- PathError
1347
- n
1348
- M
1349
- 1
1350
- n
1351
- n
1352
- x
1353
- 9
1354
- PathError
1355
- i
1356
- 10
1357
- 5
1358
- 66
1359
- 5
1360
- 4
1361
- 13
1362
- 47
1363
- 49
1364
- 0
1365
- 1
1366
- 11
1367
- I
1368
- 2
1369
- I
1370
- 0
1371
- I
1372
- 0
1373
- I
1374
- 0
1375
- n
1376
- p
1377
- 1
1378
- x
1379
- 11
1380
- status_code
1381
- p
1382
- 3
1383
- I
1384
- 2
1385
- I
1386
- 2d
1387
- I
1388
- a
1389
- x
1390
- 41
1391
- /Users/wycats/Code/bundler/lib/bundler.rb
1392
- p
1393
- 0
1394
- x
1395
- 8
1396
- GitError
1397
- n
1398
- M
1399
- 1
1400
- n
1401
- n
1402
- x
1403
- 8
1404
- GitError
1405
- i
1406
- 10
1407
- 5
1408
- 66
1409
- 5
1410
- 4
1411
- 11
1412
- 47
1413
- 49
1414
- 0
1415
- 1
1416
- 11
1417
- I
1418
- 2
1419
- I
1420
- 0
1421
- I
1422
- 0
1423
- I
1424
- 0
1425
- n
1426
- p
1427
- 1
1428
- x
1429
- 11
1430
- status_code
1431
- p
1432
- 3
1433
- I
1434
- 2
1435
- I
1436
- 2e
1437
- I
1438
- a
1439
- x
1440
- 41
1441
- /Users/wycats/Code/bundler/lib/bundler.rb
1442
- p
1443
- 0
1444
- x
1445
- 12
1446
- GemspecError
1447
- n
1448
- M
1449
- 1
1450
- n
1451
- n
1452
- x
1453
- 12
1454
- GemspecError
1455
- i
1456
- 10
1457
- 5
1458
- 66
1459
- 5
1460
- 4
1461
- 14
1462
- 47
1463
- 49
1464
- 0
1465
- 1
1466
- 11
1467
- I
1468
- 2
1469
- I
1470
- 0
1471
- I
1472
- 0
1473
- I
1474
- 0
1475
- n
1476
- p
1477
- 1
1478
- x
1479
- 11
1480
- status_code
1481
- p
1482
- 3
1483
- I
1484
- 2
1485
- I
1486
- 2f
1487
- I
1488
- a
1489
- x
1490
- 41
1491
- /Users/wycats/Code/bundler/lib/bundler.rb
1492
- p
1493
- 0
1494
- x
1495
- 16
1496
- DeprecatedMethod
1497
- n
1498
- M
1499
- 1
1500
- n
1501
- n
1502
- x
1503
- 16
1504
- DeprecatedMethod
1505
- i
1506
- 10
1507
- 5
1508
- 66
1509
- 5
1510
- 4
1511
- 12
1512
- 47
1513
- 49
1514
- 0
1515
- 1
1516
- 11
1517
- I
1518
- 2
1519
- I
1520
- 0
1521
- I
1522
- 0
1523
- I
1524
- 0
1525
- n
1526
- p
1527
- 1
1528
- x
1529
- 11
1530
- status_code
1531
- p
1532
- 3
1533
- I
1534
- 2
1535
- I
1536
- 30
1537
- I
1538
- a
1539
- x
1540
- 41
1541
- /Users/wycats/Code/bundler/lib/bundler.rb
1542
- p
1543
- 0
1544
- x
1545
- 16
1546
- DeprecatedOption
1547
- n
1548
- M
1549
- 1
1550
- n
1551
- n
1552
- x
1553
- 16
1554
- DeprecatedOption
1555
- i
1556
- 10
1557
- 5
1558
- 66
1559
- 5
1560
- 4
1561
- 12
1562
- 47
1563
- 49
1564
- 0
1565
- 1
1566
- 11
1567
- I
1568
- 2
1569
- I
1570
- 0
1571
- I
1572
- 0
1573
- I
1574
- 0
1575
- n
1576
- p
1577
- 1
1578
- x
1579
- 11
1580
- status_code
1581
- p
1582
- 3
1583
- I
1584
- 2
1585
- I
1586
- 31
1587
- I
1588
- a
1589
- x
1590
- 41
1591
- /Users/wycats/Code/bundler/lib/bundler.rb
1592
- p
1593
- 0
1594
- n
1595
- M
1596
- 1
1597
- n
1598
- n
1599
- x
1600
- 12
1601
- GemspecError
1602
- i
1603
- 10
1604
- 5
1605
- 66
1606
- 5
1607
- 4
1608
- 14
1609
- 47
1610
- 49
1611
- 0
1612
- 1
1613
- 11
1614
- I
1615
- 2
1616
- I
1617
- 0
1618
- I
1619
- 0
1620
- I
1621
- 0
1622
- n
1623
- p
1624
- 1
1625
- x
1626
- 11
1627
- status_code
1628
- p
1629
- 3
1630
- I
1631
- 2
1632
- I
1633
- 32
1634
- I
1635
- a
1636
- x
1637
- 41
1638
- /Users/wycats/Code/bundler/lib/bundler.rb
1639
- p
1640
- 0
1641
- x
1642
- 13
1643
- InvalidOption
1644
- n
1645
- M
1646
- 1
1647
- n
1648
- n
1649
- x
1650
- 13
1651
- InvalidOption
1652
- i
1653
- 10
1654
- 5
1655
- 66
1656
- 5
1657
- 4
1658
- 15
1659
- 47
1660
- 49
1661
- 0
1662
- 1
1663
- 11
1664
- I
1665
- 2
1666
- I
1667
- 0
1668
- I
1669
- 0
1670
- I
1671
- 0
1672
- n
1673
- p
1674
- 1
1675
- x
1676
- 11
1677
- status_code
1678
- p
1679
- 3
1680
- I
1681
- 2
1682
- I
1683
- 33
1684
- I
1685
- a
1686
- x
1687
- 41
1688
- /Users/wycats/Code/bundler/lib/bundler.rb
1689
- p
1690
- 0
1691
- x
1692
- 16
1693
- object_metaclass
1694
- x
1695
- 18
1696
- __metaclass_init__
1697
- M
1698
- 1
1699
- n
1700
- n
1701
- x
1702
- 18
1703
- __metaclass_init__
1704
- i
1705
- 310
1706
- 5
1707
- 66
1708
- 5
1709
- 7
1710
- 0
1711
- 7
1712
- 1
1713
- 47
1714
- 49
1715
- 2
1716
- 2
1717
- 15
1718
- 99
1719
- 7
1720
- 3
1721
- 7
1722
- 4
1723
- 65
1724
- 67
1725
- 49
1726
- 5
1727
- 0
1728
- 49
1729
- 6
1730
- 4
1731
- 15
1732
- 99
1733
- 7
1734
- 0
1735
- 7
1736
- 7
1737
- 65
1738
- 67
1739
- 49
1740
- 5
1741
- 0
1742
- 49
1743
- 6
1744
- 4
1745
- 15
1746
- 99
1747
- 7
1748
- 1
1749
- 7
1750
- 8
1751
- 65
1752
- 67
1753
- 49
1754
- 5
1755
- 0
1756
- 49
1757
- 6
1758
- 4
1759
- 15
1760
- 99
1761
- 7
1762
- 9
1763
- 7
1764
- 10
1765
- 65
1766
- 67
1767
- 49
1768
- 5
1769
- 0
1770
- 49
1771
- 6
1772
- 4
1773
- 15
1774
- 99
1775
- 7
1776
- 11
1777
- 7
1778
- 12
1779
- 65
1780
- 67
1781
- 49
1782
- 5
1783
- 0
1784
- 49
1785
- 6
1786
- 4
1787
- 15
1788
- 99
1789
- 7
1790
- 13
1791
- 7
1792
- 14
1793
- 65
1794
- 67
1795
- 49
1796
- 5
1797
- 0
1798
- 49
1799
- 6
1800
- 4
1801
- 15
1802
- 99
1803
- 7
1804
- 15
1805
- 7
1806
- 16
1807
- 65
1808
- 67
1809
- 49
1810
- 5
1811
- 0
1812
- 49
1813
- 6
1814
- 4
1815
- 15
1816
- 99
1817
- 7
1818
- 17
1819
- 7
1820
- 18
1821
- 65
1822
- 67
1823
- 49
1824
- 5
1825
- 0
1826
- 49
1827
- 6
1828
- 4
1829
- 15
1830
- 99
1831
- 7
1832
- 19
1833
- 7
1834
- 20
1835
- 65
1836
- 67
1837
- 49
1838
- 5
1839
- 0
1840
- 49
1841
- 6
1842
- 4
1843
- 15
1844
- 99
1845
- 7
1846
- 21
1847
- 7
1848
- 22
1849
- 65
1850
- 67
1851
- 49
1852
- 5
1853
- 0
1854
- 49
1855
- 6
1856
- 4
1857
- 15
1858
- 99
1859
- 7
1860
- 23
1861
- 7
1862
- 24
1863
- 65
1864
- 67
1865
- 49
1866
- 5
1867
- 0
1868
- 49
1869
- 6
1870
- 4
1871
- 15
1872
- 99
1873
- 7
1874
- 25
1875
- 7
1876
- 26
1877
- 65
1878
- 67
1879
- 49
1880
- 5
1881
- 0
1882
- 49
1883
- 6
1884
- 4
1885
- 15
1886
- 99
1887
- 7
1888
- 27
1889
- 7
1890
- 28
1891
- 65
1892
- 67
1893
- 49
1894
- 5
1895
- 0
1896
- 49
1897
- 6
1898
- 4
1899
- 15
1900
- 99
1901
- 7
1902
- 29
1903
- 7
1904
- 30
1905
- 65
1906
- 67
1907
- 49
1908
- 5
1909
- 0
1910
- 49
1911
- 6
1912
- 4
1913
- 15
1914
- 99
1915
- 7
1916
- 31
1917
- 7
1918
- 32
1919
- 65
1920
- 67
1921
- 49
1922
- 5
1923
- 0
1924
- 49
1925
- 6
1926
- 4
1927
- 15
1928
- 99
1929
- 7
1930
- 33
1931
- 7
1932
- 34
1933
- 65
1934
- 67
1935
- 49
1936
- 5
1937
- 0
1938
- 49
1939
- 6
1940
- 4
1941
- 15
1942
- 99
1943
- 7
1944
- 35
1945
- 7
1946
- 36
1947
- 65
1948
- 67
1949
- 49
1950
- 5
1951
- 0
1952
- 49
1953
- 6
1954
- 4
1955
- 15
1956
- 99
1957
- 7
1958
- 37
1959
- 7
1960
- 38
1961
- 65
1962
- 67
1963
- 49
1964
- 5
1965
- 0
1966
- 49
1967
- 6
1968
- 4
1969
- 15
1970
- 99
1971
- 7
1972
- 39
1973
- 7
1974
- 40
1975
- 65
1976
- 67
1977
- 49
1978
- 5
1979
- 0
1980
- 49
1981
- 6
1982
- 4
1983
- 15
1984
- 99
1985
- 7
1986
- 41
1987
- 7
1988
- 42
1989
- 65
1990
- 67
1991
- 49
1992
- 5
1993
- 0
1994
- 49
1995
- 6
1996
- 4
1997
- 15
1998
- 5
1999
- 48
2000
- 43
2001
- 15
2002
- 99
2003
- 7
2004
- 44
2005
- 7
2006
- 45
2007
- 65
2008
- 67
2009
- 49
2010
- 5
2011
- 0
2012
- 49
2013
- 6
2014
- 4
2015
- 11
2016
- I
2017
- 5
2018
- I
2019
- 0
2020
- I
2021
- 0
2022
- I
2023
- 0
2024
- n
2025
- p
2026
- 46
2027
- x
2028
- 2
2029
- ui
2030
- x
2031
- 11
2032
- bundle_path
2033
- x
2034
- 11
2035
- attr_writer
2036
- x
2037
- 9
2038
- configure
2039
- M
2040
- 1
2041
- n
2042
- n
2043
- x
2044
- 9
2045
- configure
2046
- i
2047
- 14
2048
- 39
2049
- 0
2050
- 13
2051
- 10
2052
- 13
2053
- 15
2054
- 5
2055
- 48
2056
- 1
2057
- 15
2058
- 2
2059
- 38
2060
- 0
2061
- 11
2062
- I
2063
- 2
2064
- I
2065
- 0
2066
- I
2067
- 0
2068
- I
2069
- 0
2070
- n
2071
- p
2072
- 2
2073
- x
2074
- 11
2075
- @configured
2076
- x
2077
- 27
2078
- configure_gem_home_and_path
2079
- p
2080
- 9
2081
- I
2082
- 0
2083
- I
2084
- 38
2085
- I
2086
- 0
2087
- I
2088
- 3c
2089
- I
2090
- 6
2091
- I
2092
- 3a
2093
- I
2094
- a
2095
- I
2096
- 3b
2097
- I
2098
- e
2099
- x
2100
- 41
2101
- /Users/wycats/Code/bundler/lib/bundler.rb
2102
- p
2103
- 0
2104
- x
2105
- 17
2106
- method_visibility
2107
- x
2108
- 15
2109
- add_defn_method
2110
- M
2111
- 1
2112
- n
2113
- n
2114
- x
2115
- 2
2116
- ui
2117
- i
2118
- 33
2119
- 39
2120
- 0
2121
- 13
2122
- 10
2123
- 32
2124
- 15
2125
- 45
2126
- 1
2127
- 2
2128
- 13
2129
- 71
2130
- 3
2131
- 47
2132
- 9
2133
- 27
2134
- 47
2135
- 49
2136
- 4
2137
- 0
2138
- 13
2139
- 47
2140
- 49
2141
- 5
2142
- 0
2143
- 15
2144
- 8
2145
- 30
2146
- 49
2147
- 3
2148
- 0
2149
- 38
2150
- 0
2151
- 11
2152
- I
2153
- 2
2154
- I
2155
- 0
2156
- I
2157
- 0
2158
- I
2159
- 0
2160
- n
2161
- p
2162
- 6
2163
- x
2164
- 3
2165
- @ui
2166
- x
2167
- 2
2168
- UI
2169
- n
2170
- x
2171
- 3
2172
- new
2173
- x
2174
- 8
2175
- allocate
2176
- x
2177
- 10
2178
- initialize
2179
- p
2180
- 5
2181
- I
2182
- 0
2183
- I
2184
- 3f
2185
- I
2186
- 0
2187
- I
2188
- 40
2189
- I
2190
- 21
2191
- x
2192
- 41
2193
- /Users/wycats/Code/bundler/lib/bundler.rb
2194
- p
2195
- 0
2196
- M
2197
- 1
2198
- n
2199
- n
2200
- x
2201
- 11
2202
- bundle_path
2203
- i
2204
- 64
2205
- 39
2206
- 0
2207
- 13
2208
- 10
2209
- 63
2210
- 15
2211
- 5
2212
- 48
2213
- 1
2214
- 7
2215
- 2
2216
- 49
2217
- 3
2218
- 1
2219
- 13
2220
- 10
2221
- 24
2222
- 15
2223
- 45
2224
- 4
2225
- 5
2226
- 49
2227
- 6
2228
- 0
2229
- 19
2230
- 0
2231
- 15
2232
- 45
2233
- 7
2234
- 8
2235
- 13
2236
- 71
2237
- 9
2238
- 47
2239
- 9
2240
- 50
2241
- 47
2242
- 49
2243
- 10
2244
- 0
2245
- 13
2246
- 20
2247
- 0
2248
- 47
2249
- 49
2250
- 11
2251
- 1
2252
- 15
2253
- 8
2254
- 55
2255
- 20
2256
- 0
2257
- 49
2258
- 9
2259
- 1
2260
- 5
2261
- 48
2262
- 12
2263
- 49
2264
- 13
2265
- 1
2266
- 38
2267
- 0
2268
- 11
2269
- I
2270
- 4
2271
- I
2272
- 1
2273
- I
2274
- 0
2275
- I
2276
- 0
2277
- n
2278
- p
2279
- 14
2280
- x
2281
- 12
2282
- @bundle_path
2283
- x
2284
- 8
2285
- settings
2286
- x
2287
- 4
2288
- path
2289
- x
2290
- 2
2291
- []
2292
- x
2293
- 3
2294
- Gem
2295
- n
2296
- x
2297
- 3
2298
- dir
2299
- x
2300
- 8
2301
- Pathname
2302
- n
2303
- x
2304
- 3
2305
- new
2306
- x
2307
- 8
2308
- allocate
2309
- x
2310
- 10
2311
- initialize
2312
- x
2313
- 4
2314
- root
2315
- x
2316
- 11
2317
- expand_path
2318
- p
2319
- 9
2320
- I
2321
- 0
2322
- I
2323
- 43
2324
- I
2325
- 0
2326
- I
2327
- 47
2328
- I
2329
- 6
2330
- I
2331
- 45
2332
- I
2333
- 1b
2334
- I
2335
- 46
2336
- I
2337
- 40
2338
- x
2339
- 41
2340
- /Users/wycats/Code/bundler/lib/bundler.rb
2341
- p
2342
- 1
2343
- x
2344
- 4
2345
- path
2346
- x
2347
- 8
2348
- bin_path
2349
- M
2350
- 1
2351
- n
2352
- n
2353
- x
2354
- 8
2355
- bin_path
2356
- i
2357
- 78
2358
- 39
2359
- 0
2360
- 13
2361
- 10
2362
- 77
2363
- 15
2364
- 5
2365
- 48
2366
- 1
2367
- 7
2368
- 2
2369
- 49
2370
- 3
2371
- 1
2372
- 13
2373
- 10
2374
- 32
2375
- 15
2376
- 45
2377
- 4
2378
- 5
2379
- 49
2380
- 6
2381
- 0
2382
- 47
2383
- 49
2384
- 7
2385
- 0
2386
- 7
2387
- 8
2388
- 63
2389
- 2
2390
- 19
2391
- 0
2392
- 15
2393
- 45
2394
- 9
2395
- 10
2396
- 20
2397
- 0
2398
- 49
2399
- 11
2400
- 1
2401
- 15
2402
- 45
2403
- 12
2404
- 13
2405
- 13
2406
- 71
2407
- 14
2408
- 47
2409
- 9
2410
- 67
2411
- 47
2412
- 49
2413
- 15
2414
- 0
2415
- 13
2416
- 20
2417
- 0
2418
- 47
2419
- 49
2420
- 16
2421
- 1
2422
- 15
2423
- 8
2424
- 72
2425
- 20
2426
- 0
2427
- 49
2428
- 14
2429
- 1
2430
- 49
2431
- 17
2432
- 0
2433
- 38
2434
- 0
2435
- 11
2436
- I
2437
- 4
2438
- I
2439
- 1
2440
- I
2441
- 0
2442
- I
2443
- 0
2444
- n
2445
- p
2446
- 18
2447
- x
2448
- 9
2449
- @bin_path
2450
- x
2451
- 8
2452
- settings
2453
- x
2454
- 3
2455
- bin
2456
- x
2457
- 2
2458
- []
2459
- x
2460
- 3
2461
- Gem
2462
- n
2463
- x
2464
- 9
2465
- user_home
2466
- x
2467
- 4
2468
- to_s
2469
- s
2470
- 13
2471
- /.bundler/bin
2472
- x
2473
- 9
2474
- FileUtils
2475
- n
2476
- x
2477
- 7
2478
- mkdir_p
2479
- x
2480
- 8
2481
- Pathname
2482
- n
2483
- x
2484
- 3
2485
- new
2486
- x
2487
- 8
2488
- allocate
2489
- x
2490
- 10
2491
- initialize
2492
- x
2493
- 11
2494
- expand_path
2495
- p
2496
- 11
2497
- I
2498
- 0
2499
- I
2500
- 4a
2501
- I
2502
- 0
2503
- I
2504
- 4f
2505
- I
2506
- 6
2507
- I
2508
- 4c
2509
- I
2510
- 23
2511
- I
2512
- 4d
2513
- I
2514
- 2c
2515
- I
2516
- 4e
2517
- I
2518
- 4e
2519
- x
2520
- 41
2521
- /Users/wycats/Code/bundler/lib/bundler.rb
2522
- p
2523
- 1
2524
- x
2525
- 4
2526
- path
2527
- x
2528
- 5
2529
- setup
2530
- M
2531
- 1
2532
- n
2533
- n
2534
- x
2535
- 5
2536
- setup
2537
- i
2538
- 82
2539
- 39
2540
- 0
2541
- 9
2542
- 9
2543
- 39
2544
- 0
2545
- 11
2546
- 8
2547
- 10
2548
- 1
2549
- 15
2550
- 20
2551
- 0
2552
- 49
2553
- 1
2554
- 0
2555
- 9
2556
- 28
2557
- 5
2558
- 48
2559
- 2
2560
- 49
2561
- 3
2562
- 0
2563
- 38
2564
- 0
2565
- 8
2566
- 81
2567
- 20
2568
- 0
2569
- 39
2570
- 4
2571
- 13
2572
- 10
2573
- 38
2574
- 15
2575
- 35
2576
- 0
2577
- 82
2578
- 5
2579
- 19
2580
- 1
2581
- 15
2582
- 20
2583
- 0
2584
- 39
2585
- 4
2586
- 13
2587
- 10
2588
- 53
2589
- 15
2590
- 35
2591
- 0
2592
- 49
2593
- 6
2594
- 1
2595
- 38
2596
- 4
2597
- 15
2598
- 20
2599
- 1
2600
- 49
2601
- 7
2602
- 0
2603
- 9
2604
- 78
2605
- 5
2606
- 48
2607
- 2
2608
- 20
2609
- 1
2610
- 36
2611
- 1
2612
- 51
2613
- 3
2614
- 0
2615
- 8
2616
- 81
2617
- 5
2618
- 48
2619
- 2
2620
- 11
2621
- I
2622
- 5
2623
- I
2624
- 2
2625
- I
2626
- 0
2627
- I
2628
- 0
2629
- I
2630
- 0
2631
- p
2632
- 8
2633
- x
2634
- 6
2635
- @setup
2636
- x
2637
- 6
2638
- empty?
2639
- x
2640
- 4
2641
- load
2642
- x
2643
- 5
2644
- setup
2645
- x
2646
- 17
2647
- @completed_groups
2648
- x
2649
- 1
2650
- -
2651
- x
2652
- 1
2653
- |
2654
- x
2655
- 4
2656
- any?
2657
- p
2658
- 15
2659
- I
2660
- 0
2661
- I
2662
- 52
2663
- I
2664
- 0
2665
- I
2666
- 53
2667
- I
2668
- b
2669
- I
2670
- 55
2671
- I
2672
- 12
2673
- I
2674
- 57
2675
- I
2676
- 1c
2677
- I
2678
- 5a
2679
- I
2680
- 2b
2681
- I
2682
- 5c
2683
- I
2684
- 3b
2685
- I
2686
- 5e
2687
- I
2688
- 52
2689
- x
2690
- 41
2691
- /Users/wycats/Code/bundler/lib/bundler.rb
2692
- p
2693
- 2
2694
- x
2695
- 6
2696
- groups
2697
- x
2698
- 8
2699
- unloaded
2700
- x
2701
- 7
2702
- require
2703
- M
2704
- 1
2705
- n
2706
- n
2707
- x
2708
- 7
2709
- require
2710
- i
2711
- 17
2712
- 5
2713
- 20
2714
- 0
2715
- 36
2716
- 1
2717
- 47
2718
- 51
2719
- 0
2720
- 0
2721
- 20
2722
- 0
2723
- 36
2724
- 1
2725
- 51
2726
- 1
2727
- 0
2728
- 11
2729
- I
2730
- 4
2731
- I
2732
- 1
2733
- I
2734
- 0
2735
- I
2736
- 0
2737
- I
2738
- 0
2739
- p
2740
- 2
2741
- x
2742
- 5
2743
- setup
2744
- x
2745
- 7
2746
- require
2747
- p
2748
- 5
2749
- I
2750
- 0
2751
- I
2752
- 62
2753
- I
2754
- 0
2755
- I
2756
- 63
2757
- I
2758
- 11
2759
- x
2760
- 41
2761
- /Users/wycats/Code/bundler/lib/bundler.rb
2762
- p
2763
- 1
2764
- x
2765
- 6
2766
- groups
2767
- x
2768
- 4
2769
- load
2770
- M
2771
- 1
2772
- n
2773
- n
2774
- x
2775
- 4
2776
- load
2777
- i
2778
- 45
2779
- 39
2780
- 0
2781
- 13
2782
- 10
2783
- 44
2784
- 15
2785
- 45
2786
- 1
2787
- 2
2788
- 13
2789
- 71
2790
- 3
2791
- 47
2792
- 9
2793
- 33
2794
- 47
2795
- 49
2796
- 4
2797
- 0
2798
- 13
2799
- 5
2800
- 48
2801
- 5
2802
- 5
2803
- 48
2804
- 6
2805
- 47
2806
- 49
2807
- 7
2808
- 2
2809
- 15
2810
- 8
2811
- 42
2812
- 5
2813
- 48
2814
- 5
2815
- 5
2816
- 48
2817
- 6
2818
- 49
2819
- 3
2820
- 2
2821
- 38
2822
- 0
2823
- 11
2824
- I
2825
- 4
2826
- I
2827
- 0
2828
- I
2829
- 0
2830
- I
2831
- 0
2832
- n
2833
- p
2834
- 8
2835
- x
2836
- 5
2837
- @load
2838
- x
2839
- 7
2840
- Runtime
2841
- n
2842
- x
2843
- 3
2844
- new
2845
- x
2846
- 8
2847
- allocate
2848
- x
2849
- 4
2850
- root
2851
- x
2852
- 10
2853
- definition
2854
- x
2855
- 10
2856
- initialize
2857
- p
2858
- 5
2859
- I
2860
- 0
2861
- I
2862
- 66
2863
- I
2864
- 0
2865
- I
2866
- 67
2867
- I
2868
- 2d
2869
- x
2870
- 41
2871
- /Users/wycats/Code/bundler/lib/bundler.rb
2872
- p
2873
- 0
2874
- x
2875
- 11
2876
- environment
2877
- M
2878
- 1
2879
- n
2880
- n
2881
- x
2882
- 11
2883
- environment
2884
- i
2885
- 39
2886
- 45
2887
- 0
2888
- 1
2889
- 43
2890
- 2
2891
- 13
2892
- 71
2893
- 3
2894
- 47
2895
- 9
2896
- 29
2897
- 47
2898
- 49
2899
- 4
2900
- 0
2901
- 13
2902
- 5
2903
- 48
2904
- 5
2905
- 5
2906
- 48
2907
- 6
2908
- 47
2909
- 49
2910
- 7
2911
- 2
2912
- 15
2913
- 8
2914
- 38
2915
- 5
2916
- 48
2917
- 5
2918
- 5
2919
- 48
2920
- 6
2921
- 49
2922
- 3
2923
- 2
2924
- 11
2925
- I
2926
- 4
2927
- I
2928
- 0
2929
- I
2930
- 0
2931
- I
2932
- 0
2933
- n
2934
- p
2935
- 8
2936
- x
2937
- 7
2938
- Bundler
2939
- n
2940
- x
2941
- 11
2942
- Environment
2943
- x
2944
- 3
2945
- new
2946
- x
2947
- 8
2948
- allocate
2949
- x
2950
- 4
2951
- root
2952
- x
2953
- 10
2954
- definition
2955
- x
2956
- 10
2957
- initialize
2958
- p
2959
- 5
2960
- I
2961
- 0
2962
- I
2963
- 6a
2964
- I
2965
- 0
2966
- I
2967
- 6b
2968
- I
2969
- 27
2970
- x
2971
- 41
2972
- /Users/wycats/Code/bundler/lib/bundler.rb
2973
- p
2974
- 0
2975
- x
2976
- 10
2977
- definition
2978
- M
2979
- 1
2980
- n
2981
- n
2982
- x
2983
- 10
2984
- definition
2985
- i
2986
- 36
2987
- 39
2988
- 0
2989
- 13
2990
- 10
2991
- 35
2992
- 15
2993
- 5
2994
- 48
2995
- 1
2996
- 15
2997
- 5
2998
- 48
2999
- 2
3000
- 7
3001
- 3
3002
- 64
3003
- 49
3004
- 4
3005
- 1
3006
- 19
3007
- 0
3008
- 15
3009
- 45
3010
- 5
3011
- 6
3012
- 5
3013
- 48
3014
- 7
3015
- 20
3016
- 0
3017
- 49
3018
- 8
3019
- 2
3020
- 38
3021
- 0
3022
- 11
3023
- I
3024
- 4
3025
- I
3026
- 1
3027
- I
3028
- 0
3029
- I
3030
- 0
3031
- n
3032
- p
3033
- 9
3034
- x
3035
- 11
3036
- @definition
3037
- x
3038
- 9
3039
- configure
3040
- x
3041
- 4
3042
- root
3043
- s
3044
- 12
3045
- Gemfile.lock
3046
- x
3047
- 4
3048
- join
3049
- x
3050
- 10
3051
- Definition
3052
- n
3053
- x
3054
- 15
3055
- default_gemfile
3056
- x
3057
- 5
3058
- build
3059
- p
3060
- 11
3061
- I
3062
- 0
3063
- I
3064
- 6e
3065
- I
3066
- 0
3067
- I
3068
- 73
3069
- I
3070
- 6
3071
- I
3072
- 70
3073
- I
3074
- a
3075
- I
3076
- 71
3077
- I
3078
- 16
3079
- I
3080
- 72
3081
- I
3082
- 24
3083
- x
3084
- 41
3085
- /Users/wycats/Code/bundler/lib/bundler.rb
3086
- p
3087
- 1
3088
- x
3089
- 8
3090
- lockfile
3091
- x
3092
- 4
3093
- home
3094
- M
3095
- 1
3096
- n
3097
- n
3098
- x
3099
- 4
3100
- home
3101
- i
3102
- 10
3103
- 5
3104
- 48
3105
- 0
3106
- 7
3107
- 1
3108
- 64
3109
- 49
3110
- 2
3111
- 1
3112
- 11
3113
- I
3114
- 2
3115
- I
3116
- 0
3117
- I
3118
- 0
3119
- I
3120
- 0
3121
- n
3122
- p
3123
- 3
3124
- x
3125
- 11
3126
- bundle_path
3127
- s
3128
- 7
3129
- bundler
3130
- x
3131
- 4
3132
- join
3133
- p
3134
- 5
3135
- I
3136
- 0
3137
- I
3138
- 76
3139
- I
3140
- 0
3141
- I
3142
- 77
3143
- I
3144
- a
3145
- x
3146
- 41
3147
- /Users/wycats/Code/bundler/lib/bundler.rb
3148
- p
3149
- 0
3150
- x
3151
- 12
3152
- install_path
3153
- M
3154
- 1
3155
- n
3156
- n
3157
- x
3158
- 12
3159
- install_path
3160
- i
3161
- 10
3162
- 5
3163
- 48
3164
- 0
3165
- 7
3166
- 1
3167
- 64
3168
- 49
3169
- 2
3170
- 1
3171
- 11
3172
- I
3173
- 2
3174
- I
3175
- 0
3176
- I
3177
- 0
3178
- I
3179
- 0
3180
- n
3181
- p
3182
- 3
3183
- x
3184
- 4
3185
- home
3186
- s
3187
- 4
3188
- gems
3189
- x
3190
- 4
3191
- join
3192
- p
3193
- 5
3194
- I
3195
- 0
3196
- I
3197
- 7a
3198
- I
3199
- 0
3200
- I
3201
- 7b
3202
- I
3203
- a
3204
- x
3205
- 41
3206
- /Users/wycats/Code/bundler/lib/bundler.rb
3207
- p
3208
- 0
3209
- x
3210
- 10
3211
- specs_path
3212
- M
3213
- 1
3214
- n
3215
- n
3216
- x
3217
- 10
3218
- specs_path
3219
- i
3220
- 10
3221
- 5
3222
- 48
3223
- 0
3224
- 7
3225
- 1
3226
- 64
3227
- 49
3228
- 2
3229
- 1
3230
- 11
3231
- I
3232
- 2
3233
- I
3234
- 0
3235
- I
3236
- 0
3237
- I
3238
- 0
3239
- n
3240
- p
3241
- 3
3242
- x
3243
- 11
3244
- bundle_path
3245
- s
3246
- 14
3247
- specifications
3248
- x
3249
- 4
3250
- join
3251
- p
3252
- 5
3253
- I
3254
- 0
3255
- I
3256
- 7e
3257
- I
3258
- 0
3259
- I
3260
- 7f
3261
- I
3262
- a
3263
- x
3264
- 41
3265
- /Users/wycats/Code/bundler/lib/bundler.rb
3266
- p
3267
- 0
3268
- x
3269
- 5
3270
- cache
3271
- M
3272
- 1
3273
- n
3274
- n
3275
- x
3276
- 5
3277
- cache
3278
- i
3279
- 10
3280
- 5
3281
- 48
3282
- 0
3283
- 7
3284
- 1
3285
- 64
3286
- 49
3287
- 2
3288
- 1
3289
- 11
3290
- I
3291
- 2
3292
- I
3293
- 0
3294
- I
3295
- 0
3296
- I
3297
- 0
3298
- n
3299
- p
3300
- 3
3301
- x
3302
- 11
3303
- bundle_path
3304
- s
3305
- 13
3306
- cache/bundler
3307
- x
3308
- 4
3309
- join
3310
- p
3311
- 5
3312
- I
3313
- 0
3314
- I
3315
- 82
3316
- I
3317
- 0
3318
- I
3319
- 83
3320
- I
3321
- a
3322
- x
3323
- 41
3324
- /Users/wycats/Code/bundler/lib/bundler.rb
3325
- p
3326
- 0
3327
- x
3328
- 4
3329
- root
3330
- M
3331
- 1
3332
- n
3333
- n
3334
- x
3335
- 4
3336
- root
3337
- i
3338
- 10
3339
- 5
3340
- 48
3341
- 0
3342
- 49
3343
- 1
3344
- 0
3345
- 49
3346
- 2
3347
- 0
3348
- 11
3349
- I
3350
- 1
3351
- I
3352
- 0
3353
- I
3354
- 0
3355
- I
3356
- 0
3357
- n
3358
- p
3359
- 3
3360
- x
3361
- 15
3362
- default_gemfile
3363
- x
3364
- 7
3365
- dirname
3366
- x
3367
- 11
3368
- expand_path
3369
- p
3370
- 5
3371
- I
3372
- 0
3373
- I
3374
- 86
3375
- I
3376
- 0
3377
- I
3378
- 87
3379
- I
3380
- a
3381
- x
3382
- 41
3383
- /Users/wycats/Code/bundler/lib/bundler.rb
3384
- p
3385
- 0
3386
- x
3387
- 9
3388
- app_cache
3389
- M
3390
- 1
3391
- n
3392
- n
3393
- x
3394
- 9
3395
- app_cache
3396
- i
3397
- 10
3398
- 5
3399
- 48
3400
- 0
3401
- 7
3402
- 1
3403
- 64
3404
- 49
3405
- 2
3406
- 1
3407
- 11
3408
- I
3409
- 2
3410
- I
3411
- 0
3412
- I
3413
- 0
3414
- I
3415
- 0
3416
- n
3417
- p
3418
- 3
3419
- x
3420
- 4
3421
- root
3422
- s
3423
- 12
3424
- vendor/cache
3425
- x
3426
- 4
3427
- join
3428
- p
3429
- 5
3430
- I
3431
- 0
3432
- I
3433
- 8a
3434
- I
3435
- 0
3436
- I
3437
- 8b
3438
- I
3439
- a
3440
- x
3441
- 41
3442
- /Users/wycats/Code/bundler/lib/bundler.rb
3443
- p
3444
- 0
3445
- x
3446
- 3
3447
- tmp
3448
- M
3449
- 1
3450
- n
3451
- n
3452
- x
3453
- 3
3454
- tmp
3455
- i
3456
- 15
3457
- 45
3458
- 0
3459
- 1
3460
- 49
3461
- 2
3462
- 0
3463
- 47
3464
- 49
3465
- 3
3466
- 0
3467
- 7
3468
- 4
3469
- 63
3470
- 2
3471
- 11
3472
- I
3473
- 2
3474
- I
3475
- 0
3476
- I
3477
- 0
3478
- I
3479
- 0
3480
- n
3481
- p
3482
- 5
3483
- x
3484
- 3
3485
- Gem
3486
- n
3487
- x
3488
- 9
3489
- user_home
3490
- x
3491
- 4
3492
- to_s
3493
- s
3494
- 13
3495
- /.bundler/tmp
3496
- p
3497
- 5
3498
- I
3499
- 0
3500
- I
3501
- 8e
3502
- I
3503
- 0
3504
- I
3505
- 8f
3506
- I
3507
- f
3508
- x
3509
- 41
3510
- /Users/wycats/Code/bundler/lib/bundler.rb
3511
- p
3512
- 0
3513
- x
3514
- 8
3515
- settings
3516
- M
3517
- 1
3518
- n
3519
- n
3520
- x
3521
- 8
3522
- settings
3523
- i
3524
- 39
3525
- 39
3526
- 0
3527
- 13
3528
- 10
3529
- 38
3530
- 15
3531
- 45
3532
- 1
3533
- 2
3534
- 13
3535
- 71
3536
- 3
3537
- 47
3538
- 9
3539
- 30
3540
- 47
3541
- 49
3542
- 4
3543
- 0
3544
- 13
3545
- 5
3546
- 48
3547
- 5
3548
- 47
3549
- 49
3550
- 6
3551
- 1
3552
- 15
3553
- 8
3554
- 36
3555
- 5
3556
- 48
3557
- 5
3558
- 49
3559
- 3
3560
- 1
3561
- 38
3562
- 0
3563
- 11
3564
- I
3565
- 3
3566
- I
3567
- 0
3568
- I
3569
- 0
3570
- I
3571
- 0
3572
- n
3573
- p
3574
- 7
3575
- x
3576
- 9
3577
- @settings
3578
- x
3579
- 8
3580
- Settings
3581
- n
3582
- x
3583
- 3
3584
- new
3585
- x
3586
- 8
3587
- allocate
3588
- x
3589
- 4
3590
- root
3591
- x
3592
- 10
3593
- initialize
3594
- p
3595
- 5
3596
- I
3597
- 0
3598
- I
3599
- 92
3600
- I
3601
- 0
3602
- I
3603
- 93
3604
- I
3605
- 27
3606
- x
3607
- 41
3608
- /Users/wycats/Code/bundler/lib/bundler.rb
3609
- p
3610
- 0
3611
- x
3612
- 14
3613
- with_clean_env
3614
- M
3615
- 1
3616
- n
3617
- n
3618
- x
3619
- 14
3620
- with_clean_env
3621
- i
3622
- 59
3623
- 29
3624
- 31
3625
- 1
3626
- 26
3627
- 93
3628
- 0
3629
- 15
3630
- 45
3631
- 0
3632
- 1
3633
- 49
3634
- 2
3635
- 0
3636
- 19
3637
- 0
3638
- 15
3639
- 45
3640
- 0
3641
- 3
3642
- 45
3643
- 4
3644
- 5
3645
- 49
3646
- 6
3647
- 1
3648
- 15
3649
- 60
3650
- 0
3651
- 30
3652
- 8
3653
- 46
3654
- 26
3655
- 45
3656
- 0
3657
- 7
3658
- 20
3659
- 0
3660
- 49
3661
- 2
3662
- 0
3663
- 49
3664
- 6
3665
- 1
3666
- 15
3667
- 27
3668
- 34
3669
- 45
3670
- 0
3671
- 8
3672
- 20
3673
- 0
3674
- 49
3675
- 2
3676
- 0
3677
- 49
3678
- 6
3679
- 1
3680
- 15
3681
- 11
3682
- I
3683
- 5
3684
- I
3685
- 1
3686
- I
3687
- 0
3688
- I
3689
- 0
3690
- n
3691
- p
3692
- 9
3693
- x
3694
- 3
3695
- ENV
3696
- n
3697
- x
3698
- 7
3699
- to_hash
3700
- n
3701
- x
3702
- 12
3703
- ORIGINAL_ENV
3704
- n
3705
- x
3706
- 7
3707
- replace
3708
- n
3709
- n
3710
- p
3711
- 11
3712
- I
3713
- 0
3714
- I
3715
- 96
3716
- I
3717
- 0
3718
- I
3719
- 97
3720
- I
3721
- 10
3722
- I
3723
- 98
3724
- I
3725
- 1a
3726
- I
3727
- 99
3728
- I
3729
- 20
3730
- I
3731
- 9b
3732
- I
3733
- 3b
3734
- x
3735
- 41
3736
- /Users/wycats/Code/bundler/lib/bundler.rb
3737
- p
3738
- 1
3739
- x
3740
- 11
3741
- bundled_env
3742
- x
3743
- 15
3744
- default_gemfile
3745
- M
3746
- 1
3747
- n
3748
- n
3749
- x
3750
- 15
3751
- default_gemfile
3752
- i
3753
- 7
3754
- 45
3755
- 0
3756
- 1
3757
- 49
3758
- 2
3759
- 0
3760
- 11
3761
- I
3762
- 1
3763
- I
3764
- 0
3765
- I
3766
- 0
3767
- I
3768
- 0
3769
- n
3770
- p
3771
- 3
3772
- x
3773
- 13
3774
- SharedHelpers
3775
- n
3776
- x
3777
- 15
3778
- default_gemfile
3779
- p
3780
- 5
3781
- I
3782
- 0
3783
- I
3784
- 9e
3785
- I
3786
- 0
3787
- I
3788
- 9f
3789
- I
3790
- 7
3791
- x
3792
- 41
3793
- /Users/wycats/Code/bundler/lib/bundler.rb
3794
- p
3795
- 0
3796
- x
3797
- 14
3798
- requires_sudo?
3799
- M
3800
- 1
3801
- n
3802
- n
3803
- x
3804
- 14
3805
- requires_sudo?
3806
- i
3807
- 86
3808
- 26
3809
- 93
3810
- 0
3811
- 15
3812
- 29
3813
- 53
3814
- 0
3815
- 45
3816
- 0
3817
- 1
3818
- 5
3819
- 48
3820
- 2
3821
- 49
3822
- 3
3823
- 1
3824
- 13
3825
- 10
3826
- 44
3827
- 15
3828
- 5
3829
- 7
3830
- 4
3831
- 64
3832
- 47
3833
- 49
3834
- 5
3835
- 1
3836
- 49
3837
- 6
3838
- 0
3839
- 13
3840
- 10
3841
- 44
3842
- 15
3843
- 45
3844
- 0
3845
- 7
3846
- 5
3847
- 48
3848
- 2
3849
- 49
3850
- 8
3851
- 1
3852
- 9
3853
- 49
3854
- 3
3855
- 8
3856
- 50
3857
- 2
3858
- 30
3859
- 8
3860
- 82
3861
- 26
3862
- 93
3863
- 1
3864
- 15
3865
- 24
3866
- 13
3867
- 45
3868
- 9
3869
- 10
3870
- 43
3871
- 11
3872
- 12
3873
- 49
3874
- 12
3875
- 1
3876
- 10
3877
- 72
3878
- 8
3879
- 77
3880
- 15
3881
- 3
3882
- 25
3883
- 8
3884
- 82
3885
- 15
3886
- 92
3887
- 1
3888
- 27
3889
- 34
3890
- 92
3891
- 0
3892
- 27
3893
- 11
3894
- I
3895
- 5
3896
- I
3897
- 0
3898
- I
3899
- 0
3900
- I
3901
- 0
3902
- n
3903
- p
3904
- 13
3905
- x
3906
- 4
3907
- File
3908
- n
3909
- x
3910
- 11
3911
- bundle_path
3912
- x
3913
- 9
3914
- writable?
3915
- s
3916
- 16
3917
- which sudo 2>NUL
3918
- x
3919
- 1
3920
- `
3921
- x
3922
- 6
3923
- empty?
3924
- n
3925
- x
3926
- 6
3927
- owned?
3928
- x
3929
- 5
3930
- Errno
3931
- n
3932
- x
3933
- 6
3934
- ENOENT
3935
- x
3936
- 3
3937
- ===
3938
- p
3939
- 19
3940
- I
3941
- 0
3942
- I
3943
- a2
3944
- I
3945
- 0
3946
- I
3947
- aa
3948
- I
3949
- 7
3950
- I
3951
- a4
3952
- I
3953
- 14
3954
- I
3955
- a5
3956
- I
3957
- 23
3958
- I
3959
- a6
3960
- I
3961
- 2e
3962
- I
3963
- a7
3964
- I
3965
- 31
3966
- I
3967
- a9
3968
- I
3969
- 3a
3970
- I
3971
- ab
3972
- I
3973
- 49
3974
- I
3975
- ac
3976
- I
3977
- 56
3978
- x
3979
- 41
3980
- /Users/wycats/Code/bundler/lib/bundler.rb
3981
- p
3982
- 0
3983
- x
3984
- 7
3985
- private
3986
- x
3987
- 27
3988
- configure_gem_home_and_path
3989
- M
3990
- 1
3991
- n
3992
- n
3993
- x
3994
- 27
3995
- configure_gem_home_and_path
3996
- i
3997
- 136
3998
- 5
3999
- 48
4000
- 0
4001
- 7
4002
- 1
4003
- 49
4004
- 2
4005
- 1
4006
- 9
4007
- 54
4008
- 45
4009
- 3
4010
- 4
4011
- 7
4012
- 5
4013
- 64
4014
- 7
4015
- 6
4016
- 64
4017
- 13
4018
- 18
4019
- 3
4020
- 49
4021
- 7
4022
- 2
4023
- 15
4024
- 15
4025
- 45
4026
- 3
4027
- 8
4028
- 7
4029
- 9
4030
- 64
4031
- 45
4032
- 10
4033
- 11
4034
- 5
4035
- 48
4036
- 12
4037
- 5
4038
- 48
4039
- 13
4040
- 49
4041
- 14
4042
- 2
4043
- 13
4044
- 18
4045
- 3
4046
- 49
4047
- 7
4048
- 2
4049
- 15
4050
- 8
4051
- 128
4052
- 45
4053
- 15
4054
- 16
4055
- 49
4056
- 17
4057
- 0
4058
- 45
4059
- 15
4060
- 18
4061
- 49
4062
- 19
4063
- 0
4064
- 35
4065
- 2
4066
- 49
4067
- 20
4068
- 0
4069
- 49
4070
- 21
4071
- 0
4072
- 49
4073
- 22
4074
- 0
4075
- 56
4076
- 23
4077
- 50
4078
- 24
4079
- 0
4080
- 19
4081
- 0
4082
- 15
4083
- 45
4084
- 3
4085
- 25
4086
- 7
4087
- 5
4088
- 64
4089
- 20
4090
- 0
4091
- 45
4092
- 10
4093
- 26
4094
- 43
4095
- 27
4096
- 49
4097
- 28
4098
- 1
4099
- 13
4100
- 18
4101
- 3
4102
- 49
4103
- 7
4104
- 2
4105
- 15
4106
- 15
4107
- 45
4108
- 3
4109
- 29
4110
- 7
4111
- 9
4112
- 64
4113
- 5
4114
- 48
4115
- 12
4116
- 49
4117
- 30
4118
- 0
4119
- 13
4120
- 18
4121
- 3
4122
- 49
4123
- 7
4124
- 2
4125
- 15
4126
- 15
4127
- 45
4128
- 15
4129
- 31
4130
- 49
4131
- 32
4132
- 0
4133
- 11
4134
- I
4135
- 6
4136
- I
4137
- 1
4138
- I
4139
- 0
4140
- I
4141
- 0
4142
- n
4143
- p
4144
- 33
4145
- x
4146
- 8
4147
- settings
4148
- x
4149
- 19
4150
- disable_shared_gems
4151
- x
4152
- 2
4153
- []
4154
- x
4155
- 3
4156
- ENV
4157
- n
4158
- s
4159
- 8
4160
- GEM_PATH
4161
- s
4162
- 0
4163
-
4164
- x
4165
- 3
4166
- []=
4167
- n
4168
- s
4169
- 8
4170
- GEM_HOME
4171
- x
4172
- 4
4173
- File
4174
- n
4175
- x
4176
- 11
4177
- bundle_path
4178
- x
4179
- 4
4180
- root
4181
- x
4182
- 11
4183
- expand_path
4184
- x
4185
- 3
4186
- Gem
4187
- n
4188
- x
4189
- 3
4190
- dir
4191
- n
4192
- x
4193
- 4
4194
- path
4195
- x
4196
- 7
4197
- flatten
4198
- x
4199
- 7
4200
- compact
4201
- x
4202
- 4
4203
- uniq
4204
- M
4205
- 1
4206
- p
4207
- 2
4208
- x
4209
- 9
4210
- for_block
4211
- t
4212
- n
4213
- x
4214
- 27
4215
- configure_gem_home_and_path
4216
- i
4217
- 10
4218
- 57
4219
- 19
4220
- 0
4221
- 15
4222
- 20
4223
- 0
4224
- 49
4225
- 0
4226
- 0
4227
- 11
4228
- I
4229
- 3
4230
- I
4231
- 1
4232
- I
4233
- 1
4234
- I
4235
- 1
4236
- n
4237
- p
4238
- 1
4239
- x
4240
- 6
4241
- empty?
4242
- p
4243
- 3
4244
- I
4245
- 0
4246
- I
4247
- b6
4248
- I
4249
- a
4250
- x
4251
- 41
4252
- /Users/wycats/Code/bundler/lib/bundler.rb
4253
- p
4254
- 1
4255
- x
4256
- 1
4257
- p
4258
- x
4259
- 6
4260
- reject
4261
- n
4262
- n
4263
- x
4264
- 14
4265
- PATH_SEPARATOR
4266
- x
4267
- 4
4268
- join
4269
- n
4270
- x
4271
- 4
4272
- to_s
4273
- n
4274
- x
4275
- 11
4276
- clear_paths
4277
- p
4278
- 17
4279
- I
4280
- 0
4281
- I
4282
- b1
4283
- I
4284
- 0
4285
- I
4286
- b2
4287
- I
4288
- a
4289
- I
4290
- b3
4291
- I
4292
- 1b
4293
- I
4294
- b4
4295
- I
4296
- 36
4297
- I
4298
- b6
4299
- I
4300
- 55
4301
- I
4302
- b7
4303
- I
4304
- 6d
4305
- I
4306
- b8
4307
- I
4308
- 81
4309
- I
4310
- bb
4311
- I
4312
- 88
4313
- x
4314
- 41
4315
- /Users/wycats/Code/bundler/lib/bundler.rb
4316
- p
4317
- 1
4318
- x
4319
- 5
4320
- paths
4321
- p
4322
- 47
4323
- I
4324
- 2
4325
- I
4326
- 36
4327
- I
4328
- c
4329
- I
4330
- 38
4331
- I
4332
- 1a
4333
- I
4334
- 3f
4335
- I
4336
- 28
4337
- I
4338
- 43
4339
- I
4340
- 36
4341
- I
4342
- 4a
4343
- I
4344
- 44
4345
- I
4346
- 52
4347
- I
4348
- 52
4349
- I
4350
- 62
4351
- I
4352
- 60
4353
- I
4354
- 66
4355
- I
4356
- 6e
4357
- I
4358
- 6a
4359
- I
4360
- 7c
4361
- I
4362
- 6e
4363
- I
4364
- 8a
4365
- I
4366
- 76
4367
- I
4368
- 98
4369
- I
4370
- 7a
4371
- I
4372
- a6
4373
- I
4374
- 7e
4375
- I
4376
- b4
4377
- I
4378
- 82
4379
- I
4380
- c2
4381
- I
4382
- 86
4383
- I
4384
- d0
4385
- I
4386
- 8a
4387
- I
4388
- de
4389
- I
4390
- 8e
4391
- I
4392
- ec
4393
- I
4394
- 92
4395
- I
4396
- fa
4397
- I
4398
- 96
4399
- I
4400
- 108
4401
- I
4402
- 9e
4403
- I
4404
- 116
4405
- I
4406
- a2
4407
- I
4408
- 124
4409
- I
4410
- af
4411
- I
4412
- 128
4413
- I
4414
- b1
4415
- I
4416
- 136
4417
- x
4418
- 41
4419
- /Users/wycats/Code/bundler/lib/bundler.rb
4420
- p
4421
- 0
4422
- p
4423
- 67
4424
- I
4425
- 2
4426
- I
4427
- 8
4428
- I
4429
- f
4430
- I
4431
- a
4432
- I
4433
- 1a
4434
- I
4435
- b
4436
- I
4437
- 25
4438
- I
4439
- c
4440
- I
4441
- 30
4442
- I
4443
- d
4444
- I
4445
- 3b
4446
- I
4447
- e
4448
- I
4449
- 46
4450
- I
4451
- f
4452
- I
4453
- 51
4454
- I
4455
- 10
4456
- I
4457
- 5c
4458
- I
4459
- 11
4460
- I
4461
- 67
4462
- I
4463
- 12
4464
- I
4465
- 72
4466
- I
4467
- 13
4468
- I
4469
- 7d
4470
- I
4471
- 14
4472
- I
4473
- 88
4474
- I
4475
- 15
4476
- I
4477
- 93
4478
- I
4479
- 16
4480
- I
4481
- 9e
4482
- I
4483
- 17
4484
- I
4485
- a9
4486
- I
4487
- 18
4488
- I
4489
- b4
4490
- I
4491
- 19
4492
- I
4493
- bf
4494
- I
4495
- 1a
4496
- I
4497
- ca
4498
- I
4499
- 1b
4500
- I
4501
- d5
4502
- I
4503
- 1d
4504
- I
4505
- f2
4506
- I
4507
- 28
4508
- I
4509
- 10f
4510
- I
4511
- 29
4512
- I
4513
- 12c
4514
- I
4515
- 2a
4516
- I
4517
- 149
4518
- I
4519
- 2b
4520
- I
4521
- 166
4522
- I
4523
- 2c
4524
- I
4525
- 183
4526
- I
4527
- 2d
4528
- I
4529
- 1a0
4530
- I
4531
- 2e
4532
- I
4533
- 1bd
4534
- I
4535
- 2f
4536
- I
4537
- 1da
4538
- I
4539
- 30
4540
- I
4541
- 1f7
4542
- I
4543
- 31
4544
- I
4545
- 214
4546
- I
4547
- 32
4548
- I
4549
- 231
4550
- I
4551
- 33
4552
- I
4553
- 24e
4554
- I
4555
- 35
4556
- I
4557
- 267
4558
- x
4559
- 41
4560
- /Users/wycats/Code/bundler/lib/bundler.rb
4561
- p
4562
- 0
4563
- x
4564
- 13
4565
- attach_method
4566
- p
4567
- 13
4568
- I
4569
- 0
4570
- I
4571
- 1
4572
- I
4573
- 9
4574
- I
4575
- 2
4576
- I
4577
- 12
4578
- I
4579
- 3
4580
- I
4581
- 1b
4582
- I
4583
- 4
4584
- I
4585
- 24
4586
- I
4587
- 5
4588
- I
4589
- 2d
4590
- I
4591
- 7
4592
- I
4593
- 49
4594
- x
4595
- 41
4596
- /Users/wycats/Code/bundler/lib/bundler.rb
4597
- p
4598
- 0