bundler 1.0.0.beta.2 → 1.0.0.beta.3

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.

@@ -9,13 +9,16 @@ module Bundler
9
9
  class CLI < Thor
10
10
  def initialize(*)
11
11
  super
12
- Bundler.ui = UI::Shell.new(shell)
12
+ use_shell = options["no-color"] ? Thor::Shell::Basic.new : shell
13
+
14
+ Bundler.ui = UI::Shell.new(use_shell)
13
15
  Gem::DefaultUserInteraction.ui = UI::RGProxy.new(Bundler.ui)
14
16
  end
15
17
 
16
18
  check_unknown_options! unless ARGV.include?("exec")
17
19
 
18
20
  default_task :install
21
+ class_option "no-color", :type => :boolean, :banner => "Disable colorization in output"
19
22
 
20
23
  desc "init", "Generates a Gemfile into the current working directory"
21
24
  long_desc <<-D
@@ -93,6 +96,8 @@ module Bundler
93
96
  "Only output warnings and errors."
94
97
  method_option "local", :type => :boolean, :banner =>
95
98
  "Do not attempt to fetch gems remotely and use the gem cache instead"
99
+ method_option "binstubs", :type => :boolean, :banner =>
100
+ "Generate bin stubs for bundled gems to ./bin"
96
101
  def install(path = nil)
97
102
  opts = options.dup
98
103
  opts[:without] ||= []
@@ -101,6 +106,7 @@ module Bundler
101
106
  # Can't use Bundler.settings for this because settings needs gemfile.dirname
102
107
  ENV['BUNDLE_GEMFILE'] = opts[:gemfile] if opts[:gemfile]
103
108
  Bundler.settings[:path] = path if path
109
+ Bundler.settings[:bin] = 'bin' if opts[:binstubs]
104
110
  Bundler.settings[:disable_shared_gems] = '1' if options["disable-shared-gems"] || path
105
111
  Bundler.settings.without = opts[:without]
106
112
  Bundler.ui.be_quiet! if opts[:quiet]
@@ -128,7 +134,7 @@ module Bundler
128
134
 
129
135
  if gems.empty? && sources.empty?
130
136
  # We're doing a full update
131
- FileUtils.rm Bundler.root.join("Gemfile.lock")
137
+ FileUtils.rm_f Bundler.root.join("Gemfile.lock")
132
138
  else
133
139
  Bundler.definition(:gems => gems, :sources => sources)
134
140
  end
@@ -230,13 +236,13 @@ module Bundler
230
236
 
231
237
  desc "open GEM", "Opens the source directory of the given bundled gem"
232
238
  def open(name)
233
- editor = [ENV['VISUAL'], ENV['EDITOR']].find{|e| !e.nil? && !e.empty? }
239
+ editor = [ENV['BUNDLER_EDITOR'], ENV['VISUAL'], ENV['EDITOR']].find{|e| !e.nil? && !e.empty? }
234
240
  if editor
235
241
  command = "#{editor} #{locate_gem(name)}"
236
242
  success = system(command)
237
243
  Bundler.ui.info "Could not run '#{command}'" unless success
238
244
  else
239
- Bundler.ui.info("To open a bundled gem, set $EDITOR")
245
+ Bundler.ui.info("To open a bundled gem, set $EDITOR or $BUNDLER_EDITOR")
240
246
  end
241
247
  end
242
248
 
@@ -70,7 +70,16 @@ module Bundler
70
70
  end
71
71
 
72
72
  def specs
73
- @specs ||= resolve.materialize(requested_dependencies)
73
+ @specs ||= begin
74
+ specs = resolve.materialize(requested_dependencies)
75
+
76
+ unless specs["bundler"].any?
77
+ bundler = index.search(Gem::Dependency.new('bundler', VERSION)).last
78
+ specs["bundler"] = bundler if bundler
79
+ end
80
+
81
+ specs
82
+ end
74
83
  end
75
84
 
76
85
  def missing_specs
@@ -44,6 +44,10 @@ module Bundler
44
44
  end
45
45
 
46
46
  def gem(name, *args)
47
+ if name.is_a?(Symbol)
48
+ raise GemfileError, %{You need to specify gem names as Strings. Use 'gem "#{name.to_s}"' instead.}
49
+ end
50
+
47
51
  options = Hash === args.last ? args.pop : {}
48
52
  version = args.last || ">= 0"
49
53
  if group = options[:groups] || options[:group]
@@ -80,6 +84,17 @@ module Bundler
80
84
  end
81
85
 
82
86
  def git(uri, options = {}, source_options = {}, &blk)
87
+ unless block_given?
88
+ msg = "You can no longer specify a git source by itself. Instead, \n" \
89
+ "either use the :git option on a gem, or specify the gems that \n" \
90
+ "bundler should find in the git source by passing a block to \n" \
91
+ "the git method, like: \n\n" \
92
+ " git 'git://github.com/rails/rails.git' do\n" \
93
+ " gem 'rails'\n" \
94
+ " end"
95
+ raise DeprecatedError, msg
96
+ end
97
+
83
98
  source Source::Git.new(_normalize_hash(options).merge("uri" => uri)), source_options, &blk
84
99
  end
85
100
 
@@ -121,7 +136,7 @@ module Bundler
121
136
  message << "and is no longer supported."
122
137
  end
123
138
  message << "\nSee the README for more information on upgrading from Bundler 0.8."
124
- raise DeprecatedMethod, message
139
+ raise DeprecatedError, message
125
140
  end
126
141
  end
127
142
 
@@ -158,7 +173,7 @@ module Bundler
158
173
  def _normalize_options(name, version, opts)
159
174
  _normalize_hash(opts)
160
175
 
161
- invalid_keys = opts.keys - %w(group git path name branch ref tag require)
176
+ invalid_keys = opts.keys - %w(group git path name branch ref tag require submodules)
162
177
  if invalid_keys.any?
163
178
  plural = invalid_keys.size > 1
164
179
  message = "You passed #{invalid_keys.map{|k| ':'+k }.join(", ")} "
@@ -186,7 +201,7 @@ module Bundler
186
201
  ["git", "path"].each do |type|
187
202
  if param = opts[type]
188
203
  options = _version?(version) ? opts.merge("name" => name, "version" => version) : opts.dup
189
- source = send(type, param, options, :prepend => true)
204
+ source = send(type, param, options, :prepend => true) {}
190
205
  opts["source"] = source
191
206
  end
192
207
  end
@@ -199,13 +214,13 @@ module Bundler
199
214
 
200
215
  def _deprecated_options(options)
201
216
  if options.include?(:require_as)
202
- raise DeprecatedOption, "Please replace :require_as with :require"
217
+ raise DeprecatedError, "Please replace :require_as with :require"
203
218
  elsif options.include?(:vendored_at)
204
- raise DeprecatedOption, "Please replace :vendored_at with :path"
219
+ raise DeprecatedError, "Please replace :vendored_at with :path"
205
220
  elsif options.include?(:only)
206
- raise DeprecatedOption, "Please replace :only with :group"
221
+ raise DeprecatedError, "Please replace :only with :group"
207
222
  elsif options.include?(:except)
208
- raise DeprecatedOption, "The :except option is no longer supported"
223
+ raise DeprecatedError, "The :except option is no longer supported"
209
224
  end
210
225
  end
211
226
  end
@@ -7,6 +7,10 @@ module Bundler
7
7
  @definition = definition
8
8
  end
9
9
 
10
+ def inspect
11
+ @definition.to_lock.inspect
12
+ end
13
+
10
14
  # TODO: Remove this method. It's used in cli.rb still
11
15
  def index
12
16
  @definition.index
@@ -29,6 +33,9 @@ module Bundler
29
33
  end
30
34
 
31
35
  def lock
36
+ env_file = root.join('.bundle/environment.rb')
37
+ env_file.rmtree if env_file.exist?
38
+
32
39
  File.open(root.join('Gemfile.lock'), 'w') do |f|
33
40
  f.puts @definition.to_lock
34
41
  end
@@ -1,3 +1,4 @@
1
+ require 'erb'
1
2
  require 'rubygems/dependency_installer'
2
3
 
3
4
  module Bundler
@@ -21,7 +22,7 @@ module Bundler
21
22
  @definition.resolve_remotely!
22
23
 
23
24
  # Ensure that BUNDLE_PATH exists
24
- FileUtils.mkdir_p(Bundler.bundle_path)
25
+ Bundler.mkdir_p(Bundler.bundle_path)
25
26
 
26
27
  # Must install gems in the order that the resolver provides
27
28
  # as dependencies might actually affect the installation of
@@ -36,7 +37,7 @@ module Bundler
36
37
 
37
38
  spec.source.install(spec)
38
39
  Bundler.ui.info ""
39
- generate_bundler_executable_stubs(spec)
40
+ generate_bundler_executable_stubs(spec) if Bundler.settings[:bin]
40
41
  FileUtils.rm_rf(Bundler.tmp)
41
42
  end
42
43
 
@@ -46,13 +47,16 @@ module Bundler
46
47
  private
47
48
 
48
49
  def generate_bundler_executable_stubs(spec)
50
+ bin_path = Bundler.bin_path
51
+ template = File.read(File.expand_path('../templates/Executable', __FILE__))
52
+ relative_gemfile_path = Bundler.default_gemfile.relative_path_from(bin_path)
53
+
49
54
  spec.executables.each do |executable|
50
55
  next if executable == "bundle"
51
- File.open "#{Bundler.bin_path}/#{executable}", 'w', 0755 do |f|
52
- f.puts File.read(File.expand_path('../templates/Executable', __FILE__))
56
+ File.open "#{bin_path}/#{executable}", 'w', 0755 do |f|
57
+ f.puts ERB.new(template, nil, '-').result(binding)
53
58
  end
54
59
  end
55
60
  end
56
-
57
61
  end
58
62
  end
@@ -52,6 +52,10 @@ module Bundler
52
52
  super || @specification.respond_to?(*args)
53
53
  end
54
54
 
55
+ def to_s
56
+ "#{name} (#{version})"
57
+ end
58
+
55
59
  private
56
60
 
57
61
  def method_missing(method, *args, &blk)
@@ -39,11 +39,17 @@ module Bundler
39
39
  @current_source = TYPES[@type].from_lock(@opts)
40
40
  @sources << @current_source
41
41
  when /^ ([a-z]+): (.*)$/i
42
- if @opts[$1]
43
- @opts[$1] = Array(@opts[$1])
44
- @opts[$1] << $2
42
+ value = $2
43
+ value = true if value == "true"
44
+ value = false if value == "false"
45
+
46
+ key = $1
47
+
48
+ if @opts[key]
49
+ @opts[key] = Array(@opts[key])
50
+ @opts[key] << value
45
51
  else
46
- @opts[$1] = $2
52
+ @opts[key] = value
47
53
  end
48
54
  else
49
55
  parse_spec(line)
@@ -87,6 +87,10 @@ module Bundler
87
87
  @specs[platform]
88
88
  end
89
89
 
90
+ def to_s
91
+ "#{name} (#{version})"
92
+ end
93
+
90
94
  private
91
95
 
92
96
  def __dependencies
@@ -187,12 +191,13 @@ module Bundler
187
191
 
188
192
  # Check if the gem has already been activated, if it has, we will make sure
189
193
  # that the currently activated gem satisfies the requirement.
190
- if existing = activated[current.name] or current.name == 'bundler'
194
+ existing = activated[current.name]
195
+ if existing || current.name == 'bundler'
191
196
  # Force the current
192
197
  if current.name == 'bundler' && !existing
193
- # TODO: handle existing still == nil
194
198
  existing = search(DepProxy.new(Gem::Dependency.new('bundler', VERSION), Gem::Platform::RUBY)).first
195
- activated[current.name] = existing
199
+ activated['bundler'] = existing
200
+ raise GemNotFound, %Q{Bundler could not find gem "bundler" (#{VERSION})} unless existing
196
201
  end
197
202
 
198
203
  if current.requirement.satisfied_by?(existing.version)
@@ -267,13 +272,10 @@ module Bundler
267
272
  raise GemNotFound, message
268
273
  else
269
274
  if @missing_gems[current] >= 5
270
- msg = "When trying to resolve #{current.required_by.last}, \n" \
271
- "Bundler could not find its dependency \n" \
272
- "#{current} in any source\n"
273
-
274
- raise Bundler::GemNotFound, msg
275
+ message = "Bundler could not find find gem #{current.required_by.last},"
276
+ message << "which is required by gem #{current}."
277
+ raise GemNotFound, message
275
278
  end
276
-
277
279
  @missing_gems[current] += 1
278
280
 
279
281
  debug { " Could not find #{current} by #{current.required_by.last}" }
@@ -342,7 +344,7 @@ module Bundler
342
344
 
343
345
  def search(dep)
344
346
  if base = @base[dep.name] and base.any?
345
- d = Gem::Dependency.new(base.first.name, base.first.version)
347
+ d = Gem::Dependency.new(base.first.name, *[dep.requirement.as_list, base.first.version].flatten)
346
348
  else
347
349
  d = dep.dep
348
350
  end
@@ -365,32 +367,80 @@ module Bundler
365
367
  end
366
368
  end
367
369
 
370
+ def clean_req(req)
371
+ if req.to_s.include?(">= 0")
372
+ req.to_s.gsub(/ \(.*?\)$/, '')
373
+ else
374
+ req.to_s.gsub(/\, (runtime|development)\)$/, ')')
375
+ end
376
+ end
377
+
368
378
  def version_conflict
369
- VersionConflict.new(
370
- errors.keys,
371
- "No compatible versions could be found for required dependencies:\n #{error_message}")
379
+ VersionConflict.new(errors.keys, error_message)
380
+ end
381
+
382
+ # For a given conflicted requirement, print out what exactly went wrong
383
+ def gem_message(requirement)
384
+ m = ""
385
+
386
+ # A requirement that is required by itself is actually in the Gemfile, and does
387
+ # not "depend on" itself
388
+ if requirement.required_by.first && requirement.required_by.first.name != requirement.name
389
+ m << " #{clean_req(requirement.required_by.first)} depends on\n"
390
+ m << " #{clean_req(requirement)}\n"
391
+ else
392
+ m << " #{clean_req(requirement)}\n"
393
+ end
394
+ m << "\n"
372
395
  end
373
396
 
374
397
  def error_message
375
398
  output = errors.inject("") do |o, (conflict, (origin, requirement))|
399
+
400
+ # origin is the SpecSet of specs from the Gemfile that is conflicted with
376
401
  if origin
377
- o << " Conflict on: #{conflict.inspect}:\n"
378
- if origin.respond_to?(:required_by) && required_by = origin.required_by.first
379
- o << " * #{conflict} (#{origin.version}) activated by #{required_by}\n"
380
- else
381
- o << " * #{conflict} (#{origin.version}) in Gemfile.lock\n"
402
+
403
+ o << %{Bundler could not find compatible versions for gem "#{origin.name}":\n}
404
+ o << " In Gemfile:\n"
405
+
406
+ o << gem_message(requirement)
407
+
408
+ # If the origin is a LockfileParser, it does not respond_to :required_by
409
+ unless origin.respond_to?(:required_by) && required_by = origin.required_by.first
410
+ o << " In snapshot (Gemfile.lock):\n"
382
411
  end
383
- o << " * #{requirement} required"
384
- if requirement.required_by.first
385
- o << " by #{requirement.required_by.first}\n"
412
+
413
+ o << gem_message(origin)
414
+
415
+ # origin is nil if the required gem and version cannot be found in any of
416
+ # the specified sources
417
+ else
418
+
419
+ # if the gem cannot be found because of a version conflict between lockfile and gemfile,
420
+ # print a useful error that suggests running `bundle update`, which may fix things
421
+ #
422
+ # @base is a SpecSet of the gems in the lockfile
423
+ # conflict is the name of the gem that could not be found
424
+ if locked = @base[conflict].first
425
+ o << "Bundler could not find compatible versions for gem #{conflict.inspect}:\n"
426
+ o << " In snapshot (Gemfile.lock):\n"
427
+ o << " #{clean_req(locked)}\n\n"
428
+
429
+ o << " In Gemfile:\n"
430
+ o << gem_message(requirement)
431
+ o << "Running `bundle update` will rebuild your snapshot from scratch, using only\n"
432
+ o << "the gems in your Gemfile, which may resolve the conflict.\n"
433
+
434
+ # the rest of the time, the gem cannot be found because it does not exist in the known sources
386
435
  else
387
- o << " in Gemfile\n"
436
+ if requirement.required_by.first
437
+ o << "Could not find gem '#{clean_req(requirement)}', required by '#{clean_req(requirement.required_by.first)}', in any of the sources\n"
438
+ else
439
+ o << "Could not find gem '#{clean_req(requirement)} in any of the sources\n"
440
+ end
388
441
  end
389
- else
390
- o << " #{requirement} not found in any of the sources\n"
391
- o << " required by #{requirement.required_by.first}\n"
442
+
392
443
  end
393
- o << " All possible versions of origin requirements conflict."
394
444
  end
395
445
  end
396
446
  end
@@ -0,0 +1,2921 @@
1
+ !RBIX
2
+ 1993355899764403924
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 132
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 26
23
+ 93
24
+ 0
25
+ 15
26
+ 29
27
+ 24
28
+ 0
29
+ 7
30
+ 2
31
+ 98
32
+ 3
33
+ 1
34
+ 30
35
+ 8
36
+ 30
37
+ 25
38
+ 92
39
+ 0
40
+ 27
41
+ 8
42
+ 35
43
+ 15
44
+ 7
45
+ 4
46
+ 8
47
+ 36
48
+ 1
49
+ 9
50
+ 41
51
+ 1
52
+ 8
53
+ 58
54
+ 5
55
+ 7
56
+ 5
57
+ 64
58
+ 47
59
+ 49
60
+ 1
61
+ 1
62
+ 15
63
+ 5
64
+ 7
65
+ 6
66
+ 64
67
+ 47
68
+ 49
69
+ 1
70
+ 1
71
+ 15
72
+ 26
73
+ 93
74
+ 1
75
+ 15
76
+ 29
77
+ 78
78
+ 0
79
+ 45
80
+ 2
81
+ 7
82
+ 7
83
+ 8
84
+ 3
85
+ 98
86
+ 9
87
+ 3
88
+ 30
89
+ 8
90
+ 84
91
+ 25
92
+ 92
93
+ 1
94
+ 27
95
+ 8
96
+ 89
97
+ 15
98
+ 7
99
+ 4
100
+ 8
101
+ 90
102
+ 1
103
+ 9
104
+ 102
105
+ 45
106
+ 2
107
+ 10
108
+ 43
109
+ 8
110
+ 49
111
+ 11
112
+ 0
113
+ 8
114
+ 103
115
+ 1
116
+ 15
117
+ 99
118
+ 7
119
+ 2
120
+ 65
121
+ 49
122
+ 12
123
+ 2
124
+ 13
125
+ 99
126
+ 12
127
+ 7
128
+ 13
129
+ 12
130
+ 7
131
+ 14
132
+ 12
133
+ 65
134
+ 12
135
+ 49
136
+ 15
137
+ 4
138
+ 15
139
+ 49
140
+ 13
141
+ 0
142
+ 15
143
+ 2
144
+ 11
145
+ I
146
+ 8
147
+ I
148
+ 0
149
+ I
150
+ 0
151
+ I
152
+ 0
153
+ n
154
+ p
155
+ 16
156
+ s
157
+ 8
158
+ pathname
159
+ x
160
+ 7
161
+ require
162
+ x
163
+ 3
164
+ Gem
165
+ x
166
+ 16
167
+ vm_const_defined
168
+ s
169
+ 8
170
+ constant
171
+ s
172
+ 8
173
+ rubygems
174
+ s
175
+ 22
176
+ rubygems/specification
177
+ n
178
+ x
179
+ 11
180
+ QuickLoader
181
+ x
182
+ 22
183
+ vm_const_defined_under
184
+ n
185
+ x
186
+ 26
187
+ load_full_rubygems_library
188
+ x
189
+ 11
190
+ open_module
191
+ x
192
+ 15
193
+ __module_init__
194
+ M
195
+ 1
196
+ n
197
+ n
198
+ x
199
+ 3
200
+ Gem
201
+ i
202
+ 67
203
+ 5
204
+ 66
205
+ 45
206
+ 0
207
+ 1
208
+ 56
209
+ 2
210
+ 50
211
+ 3
212
+ 0
213
+ 38
214
+ 4
215
+ 15
216
+ 99
217
+ 7
218
+ 5
219
+ 1
220
+ 65
221
+ 49
222
+ 6
223
+ 3
224
+ 13
225
+ 99
226
+ 12
227
+ 7
228
+ 7
229
+ 12
230
+ 7
231
+ 8
232
+ 12
233
+ 65
234
+ 12
235
+ 49
236
+ 9
237
+ 4
238
+ 15
239
+ 49
240
+ 7
241
+ 0
242
+ 15
243
+ 99
244
+ 7
245
+ 10
246
+ 1
247
+ 65
248
+ 49
249
+ 6
250
+ 3
251
+ 13
252
+ 99
253
+ 12
254
+ 7
255
+ 7
256
+ 12
257
+ 7
258
+ 11
259
+ 12
260
+ 65
261
+ 12
262
+ 49
263
+ 9
264
+ 4
265
+ 15
266
+ 49
267
+ 7
268
+ 0
269
+ 11
270
+ I
271
+ 6
272
+ I
273
+ 0
274
+ I
275
+ 0
276
+ I
277
+ 0
278
+ n
279
+ p
280
+ 12
281
+ x
282
+ 4
283
+ Hash
284
+ n
285
+ M
286
+ 1
287
+ p
288
+ 2
289
+ x
290
+ 9
291
+ for_block
292
+ t
293
+ n
294
+ x
295
+ 3
296
+ Gem
297
+ i
298
+ 25
299
+ 58
300
+ 36
301
+ 37
302
+ 19
303
+ 0
304
+ 15
305
+ 37
306
+ 19
307
+ 1
308
+ 15
309
+ 15
310
+ 20
311
+ 0
312
+ 20
313
+ 1
314
+ 35
315
+ 0
316
+ 13
317
+ 18
318
+ 3
319
+ 49
320
+ 0
321
+ 2
322
+ 15
323
+ 11
324
+ I
325
+ 7
326
+ I
327
+ 2
328
+ I
329
+ 2
330
+ I
331
+ 2
332
+ n
333
+ p
334
+ 1
335
+ x
336
+ 3
337
+ []=
338
+ p
339
+ 3
340
+ I
341
+ 0
342
+ I
343
+ d
344
+ I
345
+ 19
346
+ x
347
+ 54
348
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
349
+ p
350
+ 2
351
+ x
352
+ 1
353
+ h
354
+ x
355
+ 1
356
+ k
357
+ x
358
+ 3
359
+ new
360
+ x
361
+ 14
362
+ @loaded_stacks
363
+ x
364
+ 13
365
+ Specification
366
+ x
367
+ 10
368
+ open_class
369
+ x
370
+ 14
371
+ __class_init__
372
+ M
373
+ 1
374
+ n
375
+ n
376
+ x
377
+ 13
378
+ Specification
379
+ i
380
+ 178
381
+ 5
382
+ 66
383
+ 5
384
+ 7
385
+ 0
386
+ 7
387
+ 1
388
+ 7
389
+ 2
390
+ 47
391
+ 49
392
+ 3
393
+ 3
394
+ 15
395
+ 5
396
+ 7
397
+ 4
398
+ 7
399
+ 5
400
+ 47
401
+ 49
402
+ 6
403
+ 2
404
+ 15
405
+ 5
406
+ 7
407
+ 7
408
+ 7
409
+ 8
410
+ 47
411
+ 49
412
+ 6
413
+ 2
414
+ 15
415
+ 99
416
+ 7
417
+ 5
418
+ 7
419
+ 9
420
+ 65
421
+ 67
422
+ 49
423
+ 10
424
+ 0
425
+ 49
426
+ 11
427
+ 4
428
+ 15
429
+ 99
430
+ 7
431
+ 8
432
+ 7
433
+ 12
434
+ 65
435
+ 67
436
+ 49
437
+ 10
438
+ 0
439
+ 49
440
+ 11
441
+ 4
442
+ 15
443
+ 99
444
+ 7
445
+ 13
446
+ 7
447
+ 14
448
+ 65
449
+ 67
450
+ 49
451
+ 10
452
+ 0
453
+ 49
454
+ 11
455
+ 4
456
+ 15
457
+ 99
458
+ 7
459
+ 15
460
+ 7
461
+ 16
462
+ 65
463
+ 67
464
+ 49
465
+ 10
466
+ 0
467
+ 49
468
+ 11
469
+ 4
470
+ 15
471
+ 99
472
+ 7
473
+ 17
474
+ 7
475
+ 18
476
+ 65
477
+ 67
478
+ 49
479
+ 10
480
+ 0
481
+ 49
482
+ 11
483
+ 4
484
+ 15
485
+ 99
486
+ 7
487
+ 19
488
+ 7
489
+ 20
490
+ 65
491
+ 67
492
+ 49
493
+ 10
494
+ 0
495
+ 49
496
+ 11
497
+ 4
498
+ 15
499
+ 99
500
+ 7
501
+ 21
502
+ 7
503
+ 22
504
+ 65
505
+ 67
506
+ 49
507
+ 10
508
+ 0
509
+ 49
510
+ 11
511
+ 4
512
+ 15
513
+ 99
514
+ 7
515
+ 23
516
+ 7
517
+ 24
518
+ 65
519
+ 67
520
+ 49
521
+ 10
522
+ 0
523
+ 49
524
+ 11
525
+ 4
526
+ 15
527
+ 99
528
+ 7
529
+ 25
530
+ 7
531
+ 26
532
+ 65
533
+ 67
534
+ 49
535
+ 10
536
+ 0
537
+ 49
538
+ 11
539
+ 4
540
+ 15
541
+ 5
542
+ 48
543
+ 27
544
+ 15
545
+ 99
546
+ 7
547
+ 28
548
+ 7
549
+ 29
550
+ 65
551
+ 67
552
+ 49
553
+ 10
554
+ 0
555
+ 49
556
+ 11
557
+ 4
558
+ 11
559
+ I
560
+ 5
561
+ I
562
+ 0
563
+ I
564
+ 0
565
+ I
566
+ 0
567
+ n
568
+ p
569
+ 30
570
+ x
571
+ 6
572
+ source
573
+ x
574
+ 8
575
+ location
576
+ x
577
+ 20
578
+ relative_loaded_from
579
+ x
580
+ 13
581
+ attr_accessor
582
+ x
583
+ 16
584
+ rg_full_gem_path
585
+ x
586
+ 13
587
+ full_gem_path
588
+ x
589
+ 12
590
+ alias_method
591
+ x
592
+ 14
593
+ rg_loaded_from
594
+ x
595
+ 11
596
+ loaded_from
597
+ M
598
+ 1
599
+ n
600
+ n
601
+ x
602
+ 13
603
+ full_gem_path
604
+ i
605
+ 55
606
+ 5
607
+ 48
608
+ 0
609
+ 7
610
+ 1
611
+ 49
612
+ 2
613
+ 1
614
+ 9
615
+ 51
616
+ 45
617
+ 3
618
+ 4
619
+ 13
620
+ 71
621
+ 5
622
+ 47
623
+ 9
624
+ 34
625
+ 47
626
+ 49
627
+ 6
628
+ 0
629
+ 13
630
+ 5
631
+ 48
632
+ 7
633
+ 47
634
+ 49
635
+ 8
636
+ 1
637
+ 15
638
+ 8
639
+ 40
640
+ 5
641
+ 48
642
+ 7
643
+ 49
644
+ 5
645
+ 1
646
+ 49
647
+ 9
648
+ 0
649
+ 49
650
+ 10
651
+ 0
652
+ 49
653
+ 11
654
+ 0
655
+ 8
656
+ 54
657
+ 5
658
+ 48
659
+ 12
660
+ 11
661
+ I
662
+ 3
663
+ I
664
+ 0
665
+ I
666
+ 0
667
+ I
668
+ 0
669
+ n
670
+ p
671
+ 13
672
+ x
673
+ 6
674
+ source
675
+ x
676
+ 4
677
+ path
678
+ x
679
+ 11
680
+ respond_to?
681
+ x
682
+ 8
683
+ Pathname
684
+ n
685
+ x
686
+ 3
687
+ new
688
+ x
689
+ 8
690
+ allocate
691
+ x
692
+ 11
693
+ loaded_from
694
+ x
695
+ 10
696
+ initialize
697
+ x
698
+ 7
699
+ dirname
700
+ x
701
+ 11
702
+ expand_path
703
+ x
704
+ 4
705
+ to_s
706
+ x
707
+ 16
708
+ rg_full_gem_path
709
+ p
710
+ 9
711
+ I
712
+ 0
713
+ I
714
+ 15
715
+ I
716
+ 0
717
+ I
718
+ 16
719
+ I
720
+ a
721
+ I
722
+ 17
723
+ I
724
+ 33
725
+ I
726
+ 18
727
+ I
728
+ 37
729
+ x
730
+ 54
731
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
732
+ p
733
+ 0
734
+ x
735
+ 17
736
+ method_visibility
737
+ x
738
+ 15
739
+ add_defn_method
740
+ M
741
+ 1
742
+ n
743
+ n
744
+ x
745
+ 11
746
+ loaded_from
747
+ i
748
+ 26
749
+ 5
750
+ 48
751
+ 0
752
+ 9
753
+ 22
754
+ 5
755
+ 48
756
+ 1
757
+ 49
758
+ 2
759
+ 0
760
+ 5
761
+ 48
762
+ 0
763
+ 49
764
+ 3
765
+ 1
766
+ 49
767
+ 4
768
+ 0
769
+ 8
770
+ 25
771
+ 5
772
+ 48
773
+ 5
774
+ 11
775
+ I
776
+ 2
777
+ I
778
+ 0
779
+ I
780
+ 0
781
+ I
782
+ 0
783
+ n
784
+ p
785
+ 6
786
+ x
787
+ 20
788
+ relative_loaded_from
789
+ x
790
+ 6
791
+ source
792
+ x
793
+ 4
794
+ path
795
+ x
796
+ 4
797
+ join
798
+ x
799
+ 4
800
+ to_s
801
+ x
802
+ 14
803
+ rg_loaded_from
804
+ p
805
+ 9
806
+ I
807
+ 0
808
+ I
809
+ 1b
810
+ I
811
+ 0
812
+ I
813
+ 1c
814
+ I
815
+ 5
816
+ I
817
+ 1d
818
+ I
819
+ 16
820
+ I
821
+ 1e
822
+ I
823
+ 1a
824
+ x
825
+ 54
826
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
827
+ p
828
+ 0
829
+ x
830
+ 10
831
+ load_paths
832
+ M
833
+ 1
834
+ n
835
+ n
836
+ x
837
+ 10
838
+ load_paths
839
+ i
840
+ 9
841
+ 5
842
+ 48
843
+ 0
844
+ 56
845
+ 1
846
+ 50
847
+ 2
848
+ 0
849
+ 11
850
+ I
851
+ 2
852
+ I
853
+ 0
854
+ I
855
+ 0
856
+ I
857
+ 0
858
+ n
859
+ p
860
+ 3
861
+ x
862
+ 13
863
+ require_paths
864
+ M
865
+ 1
866
+ p
867
+ 2
868
+ x
869
+ 9
870
+ for_block
871
+ t
872
+ n
873
+ x
874
+ 10
875
+ load_paths
876
+ i
877
+ 30
878
+ 57
879
+ 19
880
+ 0
881
+ 15
882
+ 20
883
+ 0
884
+ 5
885
+ 48
886
+ 0
887
+ 49
888
+ 1
889
+ 1
890
+ 9
891
+ 18
892
+ 20
893
+ 0
894
+ 8
895
+ 29
896
+ 45
897
+ 2
898
+ 3
899
+ 5
900
+ 48
901
+ 0
902
+ 20
903
+ 0
904
+ 49
905
+ 4
906
+ 2
907
+ 11
908
+ I
909
+ 5
910
+ I
911
+ 1
912
+ I
913
+ 1
914
+ I
915
+ 1
916
+ n
917
+ p
918
+ 5
919
+ x
920
+ 13
921
+ full_gem_path
922
+ x
923
+ 8
924
+ include?
925
+ x
926
+ 4
927
+ File
928
+ n
929
+ x
930
+ 4
931
+ join
932
+ p
933
+ 9
934
+ I
935
+ 0
936
+ I
937
+ 22
938
+ I
939
+ 4
940
+ I
941
+ 23
942
+ I
943
+ e
944
+ I
945
+ 24
946
+ I
947
+ 12
948
+ I
949
+ 26
950
+ I
951
+ 1e
952
+ x
953
+ 54
954
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
955
+ p
956
+ 1
957
+ x
958
+ 12
959
+ require_path
960
+ x
961
+ 3
962
+ map
963
+ p
964
+ 5
965
+ I
966
+ 0
967
+ I
968
+ 21
969
+ I
970
+ 0
971
+ I
972
+ 22
973
+ I
974
+ 9
975
+ x
976
+ 54
977
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
978
+ p
979
+ 0
980
+ x
981
+ 6
982
+ groups
983
+ M
984
+ 1
985
+ n
986
+ n
987
+ x
988
+ 6
989
+ groups
990
+ i
991
+ 11
992
+ 39
993
+ 0
994
+ 13
995
+ 10
996
+ 10
997
+ 15
998
+ 35
999
+ 0
1000
+ 38
1001
+ 0
1002
+ 11
1003
+ I
1004
+ 2
1005
+ I
1006
+ 0
1007
+ I
1008
+ 0
1009
+ I
1010
+ 0
1011
+ n
1012
+ p
1013
+ 1
1014
+ x
1015
+ 7
1016
+ @groups
1017
+ p
1018
+ 5
1019
+ I
1020
+ 0
1021
+ I
1022
+ 2b
1023
+ I
1024
+ 0
1025
+ I
1026
+ 2c
1027
+ I
1028
+ b
1029
+ x
1030
+ 54
1031
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
1032
+ p
1033
+ 0
1034
+ x
1035
+ 11
1036
+ git_version
1037
+ M
1038
+ 1
1039
+ n
1040
+ n
1041
+ x
1042
+ 11
1043
+ git_version
1044
+ i
1045
+ 66
1046
+ 39
1047
+ 0
1048
+ 13
1049
+ 9
1050
+ 24
1051
+ 15
1052
+ 45
1053
+ 1
1054
+ 2
1055
+ 45
1056
+ 1
1057
+ 3
1058
+ 5
1059
+ 48
1060
+ 4
1061
+ 7
1062
+ 5
1063
+ 64
1064
+ 49
1065
+ 6
1066
+ 2
1067
+ 49
1068
+ 7
1069
+ 1
1070
+ 9
1071
+ 64
1072
+ 45
1073
+ 8
1074
+ 9
1075
+ 5
1076
+ 48
1077
+ 4
1078
+ 56
1079
+ 10
1080
+ 50
1081
+ 11
1082
+ 1
1083
+ 19
1084
+ 0
1085
+ 15
1086
+ 7
1087
+ 12
1088
+ 20
1089
+ 0
1090
+ 44
1091
+ 43
1092
+ 13
1093
+ 78
1094
+ 4
1095
+ 6
1096
+ 49
1097
+ 14
1098
+ 2
1099
+ 49
1100
+ 15
1101
+ 1
1102
+ 47
1103
+ 49
1104
+ 16
1105
+ 0
1106
+ 63
1107
+ 2
1108
+ 8
1109
+ 65
1110
+ 1
1111
+ 11
1112
+ I
1113
+ 6
1114
+ I
1115
+ 1
1116
+ I
1117
+ 0
1118
+ I
1119
+ 0
1120
+ n
1121
+ p
1122
+ 17
1123
+ x
1124
+ 12
1125
+ @loaded_from
1126
+ x
1127
+ 4
1128
+ File
1129
+ n
1130
+ n
1131
+ x
1132
+ 13
1133
+ full_gem_path
1134
+ s
1135
+ 4
1136
+ .git
1137
+ x
1138
+ 4
1139
+ join
1140
+ x
1141
+ 6
1142
+ exist?
1143
+ x
1144
+ 3
1145
+ Dir
1146
+ n
1147
+ M
1148
+ 1
1149
+ p
1150
+ 2
1151
+ x
1152
+ 9
1153
+ for_block
1154
+ t
1155
+ n
1156
+ x
1157
+ 11
1158
+ git_version
1159
+ i
1160
+ 12
1161
+ 5
1162
+ 7
1163
+ 0
1164
+ 64
1165
+ 47
1166
+ 49
1167
+ 1
1168
+ 1
1169
+ 49
1170
+ 2
1171
+ 0
1172
+ 11
1173
+ I
1174
+ 3
1175
+ I
1176
+ 0
1177
+ I
1178
+ 0
1179
+ I
1180
+ 0
1181
+ I
1182
+ -2
1183
+ p
1184
+ 3
1185
+ s
1186
+ 18
1187
+ git rev-parse HEAD
1188
+ x
1189
+ 1
1190
+ `
1191
+ x
1192
+ 5
1193
+ strip
1194
+ p
1195
+ 3
1196
+ I
1197
+ 0
1198
+ I
1199
+ 31
1200
+ I
1201
+ c
1202
+ x
1203
+ 54
1204
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
1205
+ p
1206
+ 0
1207
+ x
1208
+ 5
1209
+ chdir
1210
+ s
1211
+ 1
1212
+
1213
+ x
1214
+ 5
1215
+ Range
1216
+ x
1217
+ 3
1218
+ new
1219
+ x
1220
+ 2
1221
+ []
1222
+ x
1223
+ 4
1224
+ to_s
1225
+ p
1226
+ 11
1227
+ I
1228
+ 0
1229
+ I
1230
+ 2f
1231
+ I
1232
+ 0
1233
+ I
1234
+ 30
1235
+ I
1236
+ 1a
1237
+ I
1238
+ 31
1239
+ I
1240
+ 28
1241
+ I
1242
+ 32
1243
+ I
1244
+ 40
1245
+ I
1246
+ 30
1247
+ I
1248
+ 42
1249
+ x
1250
+ 54
1251
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
1252
+ p
1253
+ 1
1254
+ x
1255
+ 3
1256
+ sha
1257
+ x
1258
+ 7
1259
+ to_lock
1260
+ M
1261
+ 1
1262
+ n
1263
+ n
1264
+ x
1265
+ 7
1266
+ to_lock
1267
+ i
1268
+ 42
1269
+ 7
1270
+ 0
1271
+ 5
1272
+ 48
1273
+ 1
1274
+ 47
1275
+ 49
1276
+ 2
1277
+ 0
1278
+ 7
1279
+ 3
1280
+ 5
1281
+ 48
1282
+ 4
1283
+ 47
1284
+ 49
1285
+ 2
1286
+ 0
1287
+ 7
1288
+ 5
1289
+ 63
1290
+ 5
1291
+ 19
1292
+ 0
1293
+ 15
1294
+ 5
1295
+ 48
1296
+ 6
1297
+ 56
1298
+ 7
1299
+ 50
1300
+ 8
1301
+ 0
1302
+ 56
1303
+ 9
1304
+ 50
1305
+ 10
1306
+ 0
1307
+ 15
1308
+ 20
1309
+ 0
1310
+ 11
1311
+ I
1312
+ 6
1313
+ I
1314
+ 1
1315
+ I
1316
+ 0
1317
+ I
1318
+ 0
1319
+ n
1320
+ p
1321
+ 11
1322
+ s
1323
+ 4
1324
+
1325
+ x
1326
+ 4
1327
+ name
1328
+ x
1329
+ 4
1330
+ to_s
1331
+ s
1332
+ 2
1333
+ (
1334
+ x
1335
+ 7
1336
+ version
1337
+ s
1338
+ 2
1339
+ )
1340
+
1341
+ x
1342
+ 12
1343
+ dependencies
1344
+ M
1345
+ 1
1346
+ p
1347
+ 2
1348
+ x
1349
+ 9
1350
+ for_block
1351
+ t
1352
+ n
1353
+ x
1354
+ 7
1355
+ to_lock
1356
+ i
1357
+ 10
1358
+ 57
1359
+ 19
1360
+ 0
1361
+ 15
1362
+ 20
1363
+ 0
1364
+ 49
1365
+ 0
1366
+ 0
1367
+ 11
1368
+ I
1369
+ 3
1370
+ I
1371
+ 1
1372
+ I
1373
+ 1
1374
+ I
1375
+ 1
1376
+ n
1377
+ p
1378
+ 1
1379
+ x
1380
+ 4
1381
+ name
1382
+ p
1383
+ 3
1384
+ I
1385
+ 0
1386
+ I
1387
+ 39
1388
+ I
1389
+ a
1390
+ x
1391
+ 54
1392
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
1393
+ p
1394
+ 1
1395
+ x
1396
+ 1
1397
+ d
1398
+ x
1399
+ 7
1400
+ sort_by
1401
+ M
1402
+ 1
1403
+ p
1404
+ 2
1405
+ x
1406
+ 9
1407
+ for_block
1408
+ t
1409
+ n
1410
+ x
1411
+ 7
1412
+ to_lock
1413
+ i
1414
+ 43
1415
+ 57
1416
+ 19
1417
+ 0
1418
+ 15
1419
+ 20
1420
+ 0
1421
+ 49
1422
+ 0
1423
+ 0
1424
+ 7
1425
+ 1
1426
+ 83
1427
+ 2
1428
+ 9
1429
+ 19
1430
+ 1
1431
+ 11
1432
+ 8
1433
+ 20
1434
+ 1
1435
+ 15
1436
+ 21
1437
+ 1
1438
+ 0
1439
+ 7
1440
+ 3
1441
+ 20
1442
+ 0
1443
+ 49
1444
+ 4
1445
+ 0
1446
+ 47
1447
+ 49
1448
+ 5
1449
+ 0
1450
+ 7
1451
+ 6
1452
+ 63
1453
+ 3
1454
+ 49
1455
+ 7
1456
+ 1
1457
+ 11
1458
+ I
1459
+ 6
1460
+ I
1461
+ 1
1462
+ I
1463
+ 1
1464
+ I
1465
+ 1
1466
+ n
1467
+ p
1468
+ 8
1469
+ x
1470
+ 4
1471
+ type
1472
+ x
1473
+ 11
1474
+ development
1475
+ x
1476
+ 2
1477
+ ==
1478
+ s
1479
+ 4
1480
+
1481
+ x
1482
+ 7
1483
+ to_lock
1484
+ x
1485
+ 4
1486
+ to_s
1487
+ s
1488
+ 1
1489
+
1490
+
1491
+ x
1492
+ 2
1493
+ <<
1494
+ p
1495
+ 7
1496
+ I
1497
+ 0
1498
+ I
1499
+ 39
1500
+ I
1501
+ 4
1502
+ I
1503
+ 3a
1504
+ I
1505
+ 15
1506
+ I
1507
+ 3b
1508
+ I
1509
+ 2b
1510
+ x
1511
+ 54
1512
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
1513
+ p
1514
+ 1
1515
+ x
1516
+ 3
1517
+ dep
1518
+ x
1519
+ 4
1520
+ each
1521
+ p
1522
+ 9
1523
+ I
1524
+ 0
1525
+ I
1526
+ 36
1527
+ I
1528
+ 0
1529
+ I
1530
+ 37
1531
+ I
1532
+ 19
1533
+ I
1534
+ 39
1535
+ I
1536
+ 27
1537
+ I
1538
+ 3e
1539
+ I
1540
+ 2a
1541
+ x
1542
+ 54
1543
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
1544
+ p
1545
+ 1
1546
+ x
1547
+ 3
1548
+ out
1549
+ x
1550
+ 10
1551
+ to_gemfile
1552
+ M
1553
+ 1
1554
+ n
1555
+ n
1556
+ x
1557
+ 10
1558
+ to_gemfile
1559
+ i
1560
+ 67
1561
+ 23
1562
+ 0
1563
+ 10
1564
+ 8
1565
+ 1
1566
+ 19
1567
+ 0
1568
+ 15
1569
+ 7
1570
+ 0
1571
+ 64
1572
+ 19
1573
+ 1
1574
+ 15
1575
+ 20
1576
+ 1
1577
+ 5
1578
+ 5
1579
+ 48
1580
+ 1
1581
+ 47
1582
+ 49
1583
+ 2
1584
+ 1
1585
+ 49
1586
+ 3
1587
+ 1
1588
+ 15
1589
+ 5
1590
+ 48
1591
+ 4
1592
+ 49
1593
+ 5
1594
+ 0
1595
+ 9
1596
+ 39
1597
+ 1
1598
+ 8
1599
+ 63
1600
+ 20
1601
+ 1
1602
+ 7
1603
+ 6
1604
+ 64
1605
+ 49
1606
+ 3
1607
+ 1
1608
+ 15
1609
+ 20
1610
+ 1
1611
+ 5
1612
+ 5
1613
+ 48
1614
+ 4
1615
+ 7
1616
+ 7
1617
+ 47
1618
+ 49
1619
+ 2
1620
+ 2
1621
+ 49
1622
+ 3
1623
+ 1
1624
+ 15
1625
+ 20
1626
+ 1
1627
+ 11
1628
+ I
1629
+ 6
1630
+ I
1631
+ 2
1632
+ I
1633
+ 0
1634
+ I
1635
+ 1
1636
+ n
1637
+ p
1638
+ 8
1639
+ s
1640
+ 18
1641
+ source :gemcutter
1642
+
1643
+ x
1644
+ 27
1645
+ nondevelopment_dependencies
1646
+ x
1647
+ 23
1648
+ dependencies_to_gemfile
1649
+ x
1650
+ 2
1651
+ <<
1652
+ x
1653
+ 24
1654
+ development_dependencies
1655
+ x
1656
+ 6
1657
+ empty?
1658
+ s
1659
+ 1
1660
+
1661
+
1662
+ x
1663
+ 11
1664
+ development
1665
+ p
1666
+ 15
1667
+ I
1668
+ 0
1669
+ I
1670
+ 41
1671
+ I
1672
+ 8
1673
+ I
1674
+ 42
1675
+ I
1676
+ e
1677
+ I
1678
+ 43
1679
+ I
1680
+ 1c
1681
+ I
1682
+ 44
1683
+ I
1684
+ 27
1685
+ I
1686
+ 45
1687
+ I
1688
+ 30
1689
+ I
1690
+ 46
1691
+ I
1692
+ 40
1693
+ I
1694
+ 48
1695
+ I
1696
+ 43
1697
+ x
1698
+ 54
1699
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
1700
+ p
1701
+ 2
1702
+ x
1703
+ 4
1704
+ path
1705
+ x
1706
+ 7
1707
+ gemfile
1708
+ x
1709
+ 27
1710
+ nondevelopment_dependencies
1711
+ M
1712
+ 1
1713
+ n
1714
+ n
1715
+ x
1716
+ 27
1717
+ nondevelopment_dependencies
1718
+ i
1719
+ 9
1720
+ 5
1721
+ 48
1722
+ 0
1723
+ 5
1724
+ 48
1725
+ 1
1726
+ 82
1727
+ 2
1728
+ 11
1729
+ I
1730
+ 2
1731
+ I
1732
+ 0
1733
+ I
1734
+ 0
1735
+ I
1736
+ 0
1737
+ n
1738
+ p
1739
+ 3
1740
+ x
1741
+ 12
1742
+ dependencies
1743
+ x
1744
+ 24
1745
+ development_dependencies
1746
+ x
1747
+ 1
1748
+ -
1749
+ p
1750
+ 5
1751
+ I
1752
+ 0
1753
+ I
1754
+ 4b
1755
+ I
1756
+ 0
1757
+ I
1758
+ 4c
1759
+ I
1760
+ 9
1761
+ x
1762
+ 54
1763
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
1764
+ p
1765
+ 0
1766
+ x
1767
+ 24
1768
+ add_bundler_dependencies
1769
+ M
1770
+ 1
1771
+ n
1772
+ n
1773
+ x
1774
+ 24
1775
+ add_bundler_dependencies
1776
+ i
1777
+ 32
1778
+ 20
1779
+ 0
1780
+ 49
1781
+ 0
1782
+ 0
1783
+ 9
1784
+ 15
1785
+ 7
1786
+ 1
1787
+ 35
1788
+ 1
1789
+ 19
1790
+ 0
1791
+ 8
1792
+ 16
1793
+ 1
1794
+ 15
1795
+ 45
1796
+ 2
1797
+ 3
1798
+ 49
1799
+ 4
1800
+ 0
1801
+ 49
1802
+ 5
1803
+ 0
1804
+ 56
1805
+ 6
1806
+ 50
1807
+ 7
1808
+ 0
1809
+ 11
1810
+ I
1811
+ 3
1812
+ I
1813
+ 1
1814
+ I
1815
+ 0
1816
+ I
1817
+ 0
1818
+ I
1819
+ 0
1820
+ p
1821
+ 8
1822
+ x
1823
+ 6
1824
+ empty?
1825
+ x
1826
+ 7
1827
+ default
1828
+ x
1829
+ 7
1830
+ Bundler
1831
+ n
1832
+ x
1833
+ 10
1834
+ definition
1835
+ x
1836
+ 12
1837
+ dependencies
1838
+ M
1839
+ 1
1840
+ p
1841
+ 2
1842
+ x
1843
+ 9
1844
+ for_block
1845
+ t
1846
+ n
1847
+ x
1848
+ 24
1849
+ add_bundler_dependencies
1850
+ i
1851
+ 72
1852
+ 57
1853
+ 19
1854
+ 0
1855
+ 15
1856
+ 20
1857
+ 0
1858
+ 49
1859
+ 0
1860
+ 0
1861
+ 7
1862
+ 1
1863
+ 49
1864
+ 2
1865
+ 1
1866
+ 9
1867
+ 35
1868
+ 5
1869
+ 20
1870
+ 0
1871
+ 49
1872
+ 3
1873
+ 0
1874
+ 20
1875
+ 0
1876
+ 49
1877
+ 4
1878
+ 0
1879
+ 49
1880
+ 5
1881
+ 0
1882
+ 49
1883
+ 6
1884
+ 2
1885
+ 8
1886
+ 71
1887
+ 20
1888
+ 0
1889
+ 49
1890
+ 0
1891
+ 0
1892
+ 21
1893
+ 1
1894
+ 0
1895
+ 49
1896
+ 7
1897
+ 1
1898
+ 49
1899
+ 8
1900
+ 0
1901
+ 9
1902
+ 70
1903
+ 5
1904
+ 20
1905
+ 0
1906
+ 49
1907
+ 3
1908
+ 0
1909
+ 20
1910
+ 0
1911
+ 49
1912
+ 4
1913
+ 0
1914
+ 49
1915
+ 5
1916
+ 0
1917
+ 49
1918
+ 9
1919
+ 2
1920
+ 8
1921
+ 71
1922
+ 1
1923
+ 11
1924
+ I
1925
+ 5
1926
+ I
1927
+ 1
1928
+ I
1929
+ 1
1930
+ I
1931
+ 1
1932
+ n
1933
+ p
1934
+ 10
1935
+ x
1936
+ 6
1937
+ groups
1938
+ x
1939
+ 11
1940
+ development
1941
+ x
1942
+ 8
1943
+ include?
1944
+ x
1945
+ 4
1946
+ name
1947
+ x
1948
+ 11
1949
+ requirement
1950
+ x
1951
+ 4
1952
+ to_s
1953
+ x
1954
+ 26
1955
+ add_development_dependency
1956
+ x
1957
+ 1
1958
+ &
1959
+ x
1960
+ 4
1961
+ any?
1962
+ x
1963
+ 14
1964
+ add_dependency
1965
+ p
1966
+ 13
1967
+ I
1968
+ 0
1969
+ I
1970
+ 51
1971
+ I
1972
+ 4
1973
+ I
1974
+ 52
1975
+ I
1976
+ 10
1977
+ I
1978
+ 53
1979
+ I
1980
+ 23
1981
+ I
1982
+ 54
1983
+ I
1984
+ 33
1985
+ I
1986
+ 55
1987
+ I
1988
+ 46
1989
+ I
1990
+ 54
1991
+ I
1992
+ 48
1993
+ x
1994
+ 54
1995
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
1996
+ p
1997
+ 1
1998
+ x
1999
+ 3
2000
+ dep
2001
+ x
2002
+ 4
2003
+ each
2004
+ p
2005
+ 7
2006
+ I
2007
+ 0
2008
+ I
2009
+ 4f
2010
+ I
2011
+ 0
2012
+ I
2013
+ 50
2014
+ I
2015
+ 11
2016
+ I
2017
+ 51
2018
+ I
2019
+ 20
2020
+ x
2021
+ 54
2022
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
2023
+ p
2024
+ 1
2025
+ x
2026
+ 6
2027
+ groups
2028
+ x
2029
+ 7
2030
+ private
2031
+ x
2032
+ 23
2033
+ dependencies_to_gemfile
2034
+ M
2035
+ 1
2036
+ n
2037
+ n
2038
+ x
2039
+ 23
2040
+ dependencies_to_gemfile
2041
+ i
2042
+ 76
2043
+ 23
2044
+ 1
2045
+ 10
2046
+ 8
2047
+ 1
2048
+ 19
2049
+ 1
2050
+ 15
2051
+ 7
2052
+ 0
2053
+ 64
2054
+ 19
2055
+ 2
2056
+ 15
2057
+ 20
2058
+ 0
2059
+ 49
2060
+ 1
2061
+ 0
2062
+ 9
2063
+ 71
2064
+ 20
2065
+ 1
2066
+ 9
2067
+ 44
2068
+ 20
2069
+ 2
2070
+ 7
2071
+ 2
2072
+ 20
2073
+ 1
2074
+ 47
2075
+ 49
2076
+ 3
2077
+ 0
2078
+ 7
2079
+ 4
2080
+ 63
2081
+ 3
2082
+ 49
2083
+ 5
2084
+ 1
2085
+ 8
2086
+ 45
2087
+ 1
2088
+ 15
2089
+ 20
2090
+ 0
2091
+ 56
2092
+ 6
2093
+ 50
2094
+ 7
2095
+ 0
2096
+ 15
2097
+ 20
2098
+ 1
2099
+ 9
2100
+ 68
2101
+ 20
2102
+ 2
2103
+ 7
2104
+ 8
2105
+ 64
2106
+ 49
2107
+ 5
2108
+ 1
2109
+ 8
2110
+ 69
2111
+ 1
2112
+ 8
2113
+ 72
2114
+ 1
2115
+ 15
2116
+ 20
2117
+ 2
2118
+ 11
2119
+ I
2120
+ 7
2121
+ I
2122
+ 3
2123
+ I
2124
+ 1
2125
+ I
2126
+ 2
2127
+ n
2128
+ p
2129
+ 9
2130
+ s
2131
+ 0
2132
+
2133
+ x
2134
+ 4
2135
+ any?
2136
+ s
2137
+ 7
2138
+ group :
2139
+ x
2140
+ 4
2141
+ to_s
2142
+ s
2143
+ 4
2144
+ do
2145
+
2146
+ x
2147
+ 2
2148
+ <<
2149
+ M
2150
+ 1
2151
+ p
2152
+ 2
2153
+ x
2154
+ 9
2155
+ for_block
2156
+ t
2157
+ n
2158
+ x
2159
+ 23
2160
+ dependencies_to_gemfile
2161
+ i
2162
+ 91
2163
+ 57
2164
+ 19
2165
+ 0
2166
+ 15
2167
+ 21
2168
+ 1
2169
+ 1
2170
+ 9
2171
+ 20
2172
+ 21
2173
+ 1
2174
+ 2
2175
+ 7
2176
+ 0
2177
+ 64
2178
+ 49
2179
+ 1
2180
+ 1
2181
+ 8
2182
+ 21
2183
+ 1
2184
+ 15
2185
+ 21
2186
+ 1
2187
+ 2
2188
+ 7
2189
+ 2
2190
+ 20
2191
+ 0
2192
+ 49
2193
+ 3
2194
+ 0
2195
+ 47
2196
+ 49
2197
+ 4
2198
+ 0
2199
+ 7
2200
+ 5
2201
+ 63
2202
+ 3
2203
+ 49
2204
+ 1
2205
+ 1
2206
+ 15
2207
+ 20
2208
+ 0
2209
+ 49
2210
+ 6
2211
+ 0
2212
+ 49
2213
+ 7
2214
+ 0
2215
+ 19
2216
+ 1
2217
+ 15
2218
+ 20
2219
+ 1
2220
+ 9
2221
+ 79
2222
+ 21
2223
+ 1
2224
+ 2
2225
+ 7
2226
+ 8
2227
+ 20
2228
+ 1
2229
+ 47
2230
+ 49
2231
+ 4
2232
+ 0
2233
+ 7
2234
+ 5
2235
+ 63
2236
+ 3
2237
+ 49
2238
+ 1
2239
+ 1
2240
+ 8
2241
+ 80
2242
+ 1
2243
+ 15
2244
+ 21
2245
+ 1
2246
+ 2
2247
+ 7
2248
+ 9
2249
+ 64
2250
+ 49
2251
+ 1
2252
+ 1
2253
+ 11
2254
+ I
2255
+ 7
2256
+ I
2257
+ 2
2258
+ I
2259
+ 1
2260
+ I
2261
+ 1
2262
+ n
2263
+ p
2264
+ 10
2265
+ s
2266
+ 2
2267
+
2268
+ x
2269
+ 2
2270
+ <<
2271
+ s
2272
+ 5
2273
+ gem "
2274
+ x
2275
+ 4
2276
+ name
2277
+ x
2278
+ 4
2279
+ to_s
2280
+ s
2281
+ 1
2282
+ "
2283
+ x
2284
+ 17
2285
+ requirements_list
2286
+ x
2287
+ 5
2288
+ first
2289
+ s
2290
+ 3
2291
+ , "
2292
+ s
2293
+ 1
2294
+
2295
+
2296
+ p
2297
+ 13
2298
+ I
2299
+ 0
2300
+ I
2301
+ 60
2302
+ I
2303
+ 4
2304
+ I
2305
+ 61
2306
+ I
2307
+ 16
2308
+ I
2309
+ 62
2310
+ I
2311
+ 2c
2312
+ I
2313
+ 63
2314
+ I
2315
+ 37
2316
+ I
2317
+ 64
2318
+ I
2319
+ 51
2320
+ I
2321
+ 65
2322
+ I
2323
+ 5b
2324
+ x
2325
+ 54
2326
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
2327
+ p
2328
+ 2
2329
+ x
2330
+ 10
2331
+ dependency
2332
+ x
2333
+ 3
2334
+ req
2335
+ x
2336
+ 4
2337
+ each
2338
+ s
2339
+ 4
2340
+ end
2341
+
2342
+ p
2343
+ 17
2344
+ I
2345
+ 0
2346
+ I
2347
+ 5c
2348
+ I
2349
+ 8
2350
+ I
2351
+ 5d
2352
+ I
2353
+ e
2354
+ I
2355
+ 5e
2356
+ I
2357
+ 15
2358
+ I
2359
+ 5f
2360
+ I
2361
+ 2e
2362
+ I
2363
+ 60
2364
+ I
2365
+ 36
2366
+ I
2367
+ 67
2368
+ I
2369
+ 47
2370
+ I
2371
+ 5e
2372
+ I
2373
+ 49
2374
+ I
2375
+ 69
2376
+ I
2377
+ 4c
2378
+ x
2379
+ 54
2380
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
2381
+ p
2382
+ 3
2383
+ x
2384
+ 12
2385
+ dependencies
2386
+ x
2387
+ 5
2388
+ group
2389
+ x
2390
+ 7
2391
+ gemfile
2392
+ p
2393
+ 29
2394
+ I
2395
+ 2
2396
+ I
2397
+ 10
2398
+ I
2399
+ e
2400
+ I
2401
+ 12
2402
+ I
2403
+ 18
2404
+ I
2405
+ 13
2406
+ I
2407
+ 22
2408
+ I
2409
+ 15
2410
+ I
2411
+ 30
2412
+ I
2413
+ 1b
2414
+ I
2415
+ 3e
2416
+ I
2417
+ 21
2418
+ I
2419
+ 4c
2420
+ I
2421
+ 2b
2422
+ I
2423
+ 5a
2424
+ I
2425
+ 2f
2426
+ I
2427
+ 68
2428
+ I
2429
+ 36
2430
+ I
2431
+ 76
2432
+ I
2433
+ 41
2434
+ I
2435
+ 84
2436
+ I
2437
+ 4b
2438
+ I
2439
+ 92
2440
+ I
2441
+ 4f
2442
+ I
2443
+ a0
2444
+ I
2445
+ 5a
2446
+ I
2447
+ a4
2448
+ I
2449
+ 5c
2450
+ I
2451
+ b2
2452
+ x
2453
+ 54
2454
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
2455
+ p
2456
+ 0
2457
+ x
2458
+ 13
2459
+ attach_method
2460
+ x
2461
+ 10
2462
+ Dependency
2463
+ M
2464
+ 1
2465
+ n
2466
+ n
2467
+ x
2468
+ 10
2469
+ Dependency
2470
+ i
2471
+ 50
2472
+ 5
2473
+ 66
2474
+ 5
2475
+ 7
2476
+ 0
2477
+ 7
2478
+ 1
2479
+ 47
2480
+ 49
2481
+ 2
2482
+ 2
2483
+ 15
2484
+ 65
2485
+ 7
2486
+ 3
2487
+ 7
2488
+ 4
2489
+ 47
2490
+ 49
2491
+ 5
2492
+ 2
2493
+ 15
2494
+ 99
2495
+ 7
2496
+ 6
2497
+ 7
2498
+ 7
2499
+ 65
2500
+ 67
2501
+ 49
2502
+ 8
2503
+ 0
2504
+ 49
2505
+ 9
2506
+ 4
2507
+ 15
2508
+ 99
2509
+ 7
2510
+ 10
2511
+ 7
2512
+ 11
2513
+ 65
2514
+ 67
2515
+ 49
2516
+ 8
2517
+ 0
2518
+ 49
2519
+ 9
2520
+ 4
2521
+ 11
2522
+ I
2523
+ 5
2524
+ I
2525
+ 0
2526
+ I
2527
+ 0
2528
+ I
2529
+ 0
2530
+ n
2531
+ p
2532
+ 12
2533
+ x
2534
+ 6
2535
+ source
2536
+ x
2537
+ 6
2538
+ groups
2539
+ x
2540
+ 13
2541
+ attr_accessor
2542
+ x
2543
+ 4
2544
+ eql?
2545
+ x
2546
+ 2
2547
+ ==
2548
+ x
2549
+ 12
2550
+ alias_method
2551
+ x
2552
+ 18
2553
+ to_yaml_properties
2554
+ M
2555
+ 1
2556
+ n
2557
+ n
2558
+ x
2559
+ 18
2560
+ to_yaml_properties
2561
+ i
2562
+ 9
2563
+ 5
2564
+ 48
2565
+ 0
2566
+ 56
2567
+ 1
2568
+ 50
2569
+ 2
2570
+ 0
2571
+ 11
2572
+ I
2573
+ 2
2574
+ I
2575
+ 0
2576
+ I
2577
+ 0
2578
+ I
2579
+ 0
2580
+ n
2581
+ p
2582
+ 3
2583
+ x
2584
+ 18
2585
+ instance_variables
2586
+ M
2587
+ 1
2588
+ p
2589
+ 2
2590
+ x
2591
+ 9
2592
+ for_block
2593
+ t
2594
+ n
2595
+ x
2596
+ 18
2597
+ to_yaml_properties
2598
+ i
2599
+ 21
2600
+ 57
2601
+ 19
2602
+ 0
2603
+ 15
2604
+ 7
2605
+ 0
2606
+ 64
2607
+ 7
2608
+ 1
2609
+ 64
2610
+ 35
2611
+ 2
2612
+ 20
2613
+ 0
2614
+ 49
2615
+ 2
2616
+ 0
2617
+ 49
2618
+ 3
2619
+ 1
2620
+ 11
2621
+ I
2622
+ 4
2623
+ I
2624
+ 1
2625
+ I
2626
+ 1
2627
+ I
2628
+ 1
2629
+ n
2630
+ p
2631
+ 4
2632
+ s
2633
+ 7
2634
+ @source
2635
+ s
2636
+ 7
2637
+ @groups
2638
+ x
2639
+ 4
2640
+ to_s
2641
+ x
2642
+ 8
2643
+ include?
2644
+ p
2645
+ 3
2646
+ I
2647
+ 0
2648
+ I
2649
+ 74
2650
+ I
2651
+ 15
2652
+ x
2653
+ 54
2654
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
2655
+ p
2656
+ 1
2657
+ x
2658
+ 1
2659
+ p
2660
+ x
2661
+ 6
2662
+ reject
2663
+ p
2664
+ 5
2665
+ I
2666
+ 0
2667
+ I
2668
+ 73
2669
+ I
2670
+ 0
2671
+ I
2672
+ 74
2673
+ I
2674
+ 9
2675
+ x
2676
+ 54
2677
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
2678
+ p
2679
+ 0
2680
+ x
2681
+ 17
2682
+ method_visibility
2683
+ x
2684
+ 15
2685
+ add_defn_method
2686
+ x
2687
+ 7
2688
+ to_lock
2689
+ M
2690
+ 1
2691
+ n
2692
+ n
2693
+ x
2694
+ 7
2695
+ to_lock
2696
+ i
2697
+ 57
2698
+ 7
2699
+ 0
2700
+ 5
2701
+ 48
2702
+ 1
2703
+ 47
2704
+ 49
2705
+ 2
2706
+ 0
2707
+ 63
2708
+ 2
2709
+ 19
2710
+ 0
2711
+ 15
2712
+ 5
2713
+ 48
2714
+ 3
2715
+ 45
2716
+ 4
2717
+ 5
2718
+ 43
2719
+ 6
2720
+ 49
2721
+ 7
2722
+ 0
2723
+ 83
2724
+ 8
2725
+ 9
2726
+ 32
2727
+ 1
2728
+ 8
2729
+ 53
2730
+ 20
2731
+ 0
2732
+ 7
2733
+ 9
2734
+ 5
2735
+ 48
2736
+ 3
2737
+ 49
2738
+ 2
2739
+ 0
2740
+ 47
2741
+ 49
2742
+ 2
2743
+ 0
2744
+ 7
2745
+ 10
2746
+ 63
2747
+ 3
2748
+ 49
2749
+ 11
2750
+ 1
2751
+ 15
2752
+ 20
2753
+ 0
2754
+ 11
2755
+ I
2756
+ 5
2757
+ I
2758
+ 1
2759
+ I
2760
+ 0
2761
+ I
2762
+ 0
2763
+ n
2764
+ p
2765
+ 12
2766
+ s
2767
+ 2
2768
+
2769
+ x
2770
+ 4
2771
+ name
2772
+ x
2773
+ 4
2774
+ to_s
2775
+ x
2776
+ 11
2777
+ requirement
2778
+ x
2779
+ 3
2780
+ Gem
2781
+ n
2782
+ x
2783
+ 11
2784
+ Requirement
2785
+ x
2786
+ 7
2787
+ default
2788
+ x
2789
+ 2
2790
+ ==
2791
+ s
2792
+ 2
2793
+ (
2794
+ s
2795
+ 1
2796
+ )
2797
+ x
2798
+ 2
2799
+ <<
2800
+ p
2801
+ 11
2802
+ I
2803
+ 0
2804
+ I
2805
+ 77
2806
+ I
2807
+ 0
2808
+ I
2809
+ 78
2810
+ I
2811
+ e
2812
+ I
2813
+ 79
2814
+ I
2815
+ 20
2816
+ I
2817
+ 7a
2818
+ I
2819
+ 36
2820
+ I
2821
+ 7c
2822
+ I
2823
+ 39
2824
+ x
2825
+ 54
2826
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
2827
+ p
2828
+ 1
2829
+ x
2830
+ 3
2831
+ out
2832
+ p
2833
+ 9
2834
+ I
2835
+ 2
2836
+ I
2837
+ 6f
2838
+ I
2839
+ c
2840
+ I
2841
+ 71
2842
+ I
2843
+ 16
2844
+ I
2845
+ 73
2846
+ I
2847
+ 24
2848
+ I
2849
+ 77
2850
+ I
2851
+ 32
2852
+ x
2853
+ 54
2854
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
2855
+ p
2856
+ 0
2857
+ p
2858
+ 7
2859
+ I
2860
+ 2
2861
+ I
2862
+ d
2863
+ I
2864
+ d
2865
+ I
2866
+ f
2867
+ I
2868
+ 28
2869
+ I
2870
+ 6e
2871
+ I
2872
+ 43
2873
+ x
2874
+ 54
2875
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
2876
+ p
2877
+ 0
2878
+ x
2879
+ 13
2880
+ attach_method
2881
+ p
2882
+ 17
2883
+ I
2884
+ 0
2885
+ I
2886
+ 1
2887
+ I
2888
+ 9
2889
+ I
2890
+ 3
2891
+ I
2892
+ 29
2893
+ I
2894
+ 4
2895
+ I
2896
+ 32
2897
+ I
2898
+ 5
2899
+ I
2900
+ 3b
2901
+ I
2902
+ 8
2903
+ I
2904
+ 5c
2905
+ I
2906
+ 9
2907
+ I
2908
+ 66
2909
+ I
2910
+ 8
2911
+ I
2912
+ 68
2913
+ I
2914
+ c
2915
+ I
2916
+ 84
2917
+ x
2918
+ 54
2919
+ /Users/wycats/Code/bundler/lib/bundler/rubygems_ext.rb
2920
+ p
2921
+ 0