bundler 1.13.0.rc.1 → 1.13.0.rc.2

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.

Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +1 -0
  3. data/.rubocop.yml +8 -0
  4. data/.rubocop_todo.yml +21 -21
  5. data/.travis.yml +5 -1
  6. data/CHANGELOG.md +33 -1
  7. data/DEVELOPMENT.md +1 -1
  8. data/Rakefile +21 -12
  9. data/bin/rake +1 -1
  10. data/bin/rspec +1 -1
  11. data/bin/rubocop +2 -2
  12. data/bundler.gemspec +2 -2
  13. data/exe/bundler +1 -19
  14. data/lib/bundler.rb +43 -34
  15. data/lib/bundler/cli.rb +54 -5
  16. data/lib/bundler/cli/binstubs.rb +3 -2
  17. data/lib/bundler/cli/console.rb +3 -0
  18. data/lib/bundler/cli/doctor.rb +95 -0
  19. data/lib/bundler/cli/exec.rb +18 -2
  20. data/lib/bundler/cli/gem.rb +1 -1
  21. data/lib/bundler/cli/inject.rb +25 -7
  22. data/lib/bundler/cli/install.rb +23 -2
  23. data/lib/bundler/cli/lock.rb +14 -2
  24. data/lib/bundler/cli/update.rb +9 -0
  25. data/lib/bundler/definition.rb +86 -17
  26. data/lib/bundler/deployment.rb +6 -0
  27. data/lib/bundler/dsl.rb +67 -22
  28. data/lib/bundler/env.rb +1 -1
  29. data/lib/bundler/environment_preserver.rb +1 -1
  30. data/lib/bundler/errors.rb +11 -1
  31. data/lib/bundler/fetcher.rb +3 -2
  32. data/lib/bundler/fetcher/base.rb +10 -0
  33. data/lib/bundler/fetcher/compact_index.rb +27 -9
  34. data/lib/bundler/fetcher/dependency.rb +1 -12
  35. data/lib/bundler/fetcher/downloader.rb +1 -1
  36. data/lib/bundler/friendly_errors.rb +4 -2
  37. data/lib/bundler/gem_helper.rb +2 -2
  38. data/lib/bundler/gem_version_promoter.rb +175 -0
  39. data/lib/bundler/graph.rb +4 -25
  40. data/lib/bundler/index.rb +9 -1
  41. data/lib/bundler/injector.rb +12 -5
  42. data/lib/bundler/inline.rb +2 -2
  43. data/lib/bundler/installer.rb +23 -8
  44. data/lib/bundler/installer/gem_installer.rb +13 -15
  45. data/lib/bundler/installer/parallel_installer.rb +121 -99
  46. data/lib/bundler/lazy_specification.rb +8 -2
  47. data/lib/bundler/lockfile_parser.rb +20 -12
  48. data/lib/bundler/mirror.rb +2 -2
  49. data/lib/bundler/plugin.rb +153 -31
  50. data/lib/bundler/plugin/api.rb +29 -5
  51. data/lib/bundler/plugin/api/source.rb +293 -0
  52. data/lib/bundler/plugin/dsl.rb +25 -1
  53. data/lib/bundler/plugin/index.rb +80 -13
  54. data/lib/bundler/plugin/installer.rb +6 -10
  55. data/lib/bundler/plugin/source_list.rb +4 -0
  56. data/lib/bundler/postit_trampoline.rb +57 -40
  57. data/lib/bundler/resolver.rb +24 -12
  58. data/lib/bundler/retry.rb +2 -1
  59. data/lib/bundler/ruby_version.rb +4 -2
  60. data/lib/bundler/rubygems_ext.rb +10 -3
  61. data/lib/bundler/rubygems_gem_installer.rb +6 -0
  62. data/lib/bundler/rubygems_integration.rb +101 -66
  63. data/lib/bundler/runtime.rb +25 -2
  64. data/lib/bundler/settings.rb +30 -11
  65. data/lib/bundler/setup.rb +6 -3
  66. data/lib/bundler/shared_helpers.rb +11 -5
  67. data/lib/bundler/source/gemspec.rb +4 -0
  68. data/lib/bundler/source/git.rb +9 -6
  69. data/lib/bundler/source/git/git_proxy.rb +27 -3
  70. data/lib/bundler/source/path.rb +4 -26
  71. data/lib/bundler/source/path/installer.rb +39 -11
  72. data/lib/bundler/source/rubygems.rb +1 -1
  73. data/lib/bundler/source_list.rb +28 -8
  74. data/lib/bundler/spec_set.rb +1 -1
  75. data/lib/bundler/templates/Executable.standalone +4 -2
  76. data/lib/bundler/templates/Gemfile +0 -1
  77. data/lib/bundler/ui/shell.rb +11 -3
  78. data/lib/bundler/ui/silent.rb +1 -3
  79. data/lib/bundler/vendor/compact_index_client/lib/compact_index_client.rb +1 -2
  80. data/lib/bundler/vendor/compact_index_client/lib/compact_index_client/cache.rb +16 -2
  81. data/lib/bundler/version.rb +1 -1
  82. data/lib/bundler/yaml_serializer.rb +34 -11
  83. data/man/bundle-binstubs.ronn +29 -0
  84. data/man/bundle-config.ronn +32 -0
  85. data/man/bundle-install.ronn +6 -41
  86. data/man/bundle-package.ronn +1 -1
  87. data/man/bundle.ronn +4 -3
  88. data/man/gemfile.5.ronn +1 -1
  89. metadata +13 -9
  90. data/lib/bundler/environment.rb +0 -42
@@ -3,6 +3,7 @@ module Bundler
3
3
  module UI
4
4
  class Silent
5
5
  def add_color(string, color)
6
+ string
6
7
  end
7
8
 
8
9
  def info(message, newline = nil)
@@ -40,9 +41,6 @@ module Bundler
40
41
  def trace(message, newline = nil)
41
42
  end
42
43
 
43
- def major_deprecation(message)
44
- end
45
-
46
44
  def silence
47
45
  yield
48
46
  end
@@ -60,9 +60,8 @@ class Bundler::CompactIndexClient
60
60
  private
61
61
 
62
62
  def update(local_path, remote_path)
63
- return if @endpoints.include?(remote_path)
63
+ return unless @endpoints.add?(remote_path)
64
64
  @updater.update(local_path, url(remote_path))
65
- @endpoints << remote_path
66
65
  end
67
66
 
68
67
  def update_info(name)
@@ -1,11 +1,12 @@
1
1
  # frozen_string_literal: true
2
+ require "digest/md5"
2
3
  class Bundler::CompactIndexClient
3
4
  class Cache
4
5
  attr_reader :directory
5
6
 
6
7
  def initialize(directory)
7
8
  @directory = Pathname.new(directory).expand_path
8
- FileUtils.mkdir_p info_path(nil)
9
+ info_roots.each {|dir| FileUtils.mkdir_p(dir) }
9
10
  end
10
11
 
11
12
  def names
@@ -59,7 +60,13 @@ class Bundler::CompactIndexClient
59
60
  end
60
61
 
61
62
  def info_path(name)
62
- directory.join("info", name.to_s)
63
+ name = name.to_s
64
+ if name =~ /[^a-z0-9_-]/
65
+ name += "-#{Digest::MD5.hexdigest(name).downcase}"
66
+ info_roots.last.join(name)
67
+ else
68
+ info_roots.first.join(name)
69
+ end
63
70
  end
64
71
 
65
72
  def specific_dependency(name, version, platform)
@@ -94,5 +101,12 @@ class Bundler::CompactIndexClient
94
101
  dependency[-1] = dependency[-1].split("&") if dependency.size > 1
95
102
  dependency
96
103
  end
104
+
105
+ def info_roots
106
+ [
107
+ directory.join("info"),
108
+ directory.join("info-special-characters"),
109
+ ]
110
+ end
97
111
  end
98
112
  end
@@ -7,5 +7,5 @@ module Bundler
7
7
  # We're doing this because we might write tests that deal
8
8
  # with other versions of bundler and we are unsure how to
9
9
  # handle this better.
10
- VERSION = "1.13.0.rc.1" unless defined?(::Bundler::VERSION)
10
+ VERSION = "1.13.0.rc.2" unless defined?(::Bundler::VERSION)
11
11
  end
@@ -16,6 +16,8 @@ module Bundler
16
16
  yaml << k << ":"
17
17
  if v.is_a?(Hash)
18
18
  yaml << dump_hash(v).gsub(/^(?!$)/, " ") # indent all non-empty lines
19
+ elsif v.is_a?(Array) # Expected to be array of strings
20
+ yaml << "\n- " << v.map {|s| s.to_s.gsub(/\s+/, " ").inspect }.join("\n- ") << "\n"
19
21
  else
20
22
  yaml << " " << v.to_s.gsub(/\s+/, " ").inspect << "\n"
21
23
  end
@@ -23,11 +25,20 @@ module Bundler
23
25
  yaml
24
26
  end
25
27
 
26
- SCAN_REGEX = /
28
+ ARRAY_REGEX = /
29
+ ^
30
+ (?:[ ]*-[ ]) # '- ' before array items
31
+ (['"]?) # optional opening quote
32
+ (.*) # value
33
+ \1 # matching closing quote
34
+ $
35
+ /xo
36
+
37
+ HASH_REGEX = /
27
38
  ^
28
39
  ([ ]*) # indentations
29
40
  (.*) # key
30
- (?::(?=\s)) # : (without the lookahead the #key includes this when : is present in value)
41
+ (?::(?=(?:\s|$))) # : (without the lookahead the #key includes this when : is present in value)
31
42
  [ ]?
32
43
  (?: !\s)? # optional exclamation mark found with ruby 1.9.3
33
44
  (['"]?) # optional opening quote
@@ -39,15 +50,27 @@ module Bundler
39
50
  def load(str)
40
51
  res = {}
41
52
  stack = [res]
42
- str.scan(SCAN_REGEX).each do |(indent, key, _, val)|
43
- key = convert_to_backward_compatible_key(key)
44
- depth = indent.scan(/ /).length
45
- if val.empty?
46
- new_hash = {}
47
- stack[depth][key] = new_hash
48
- stack[depth + 1] = new_hash
49
- else
50
- stack[depth][key] = val
53
+ last_hash = nil
54
+ last_empty_key = nil
55
+ str.split("\n").each do |line|
56
+ if match = HASH_REGEX.match(line)
57
+ indent, key, _, val = match.captures
58
+ key = convert_to_backward_compatible_key(key)
59
+ depth = indent.scan(/ /).length
60
+ if val.empty?
61
+ new_hash = {}
62
+ stack[depth][key] = new_hash
63
+ stack[depth + 1] = new_hash
64
+ last_empty_key = key
65
+ last_hash = stack[depth]
66
+ else
67
+ stack[depth][key] = val
68
+ end
69
+ elsif match = ARRAY_REGEX.match(line)
70
+ _, val = match.captures
71
+ last_hash[last_empty_key] = [] unless last_hash[last_empty_key].is_a?(Array)
72
+
73
+ last_hash[last_empty_key].push(val)
51
74
  end
52
75
  end
53
76
  res
@@ -0,0 +1,29 @@
1
+ bundle-binstubs(1) -- Install the binstubs of the listed gems
2
+ =============================================================
3
+
4
+ ## SYNOPSIS
5
+
6
+ `bundle binstubs` <GEM_NAME> [--force] [--path PATH] [--standalone]
7
+
8
+ ## DESCRIPTION
9
+
10
+ This command generates binstubs for executables in `GEM_NAME`.
11
+ Binstubs are put into `bin`, or the `--path` directory if one has been set.
12
+ Calling binstubs with [GEM [GEM]] will create binstubs for all given gems.
13
+
14
+ ## OPTIONS
15
+
16
+ * `--force`:
17
+ Overwrite existing binstubs if they exist.
18
+
19
+ * `--path`:
20
+ The location to install the specified binstubs to. This defaults to `bin`.
21
+
22
+ * `--standalone`:
23
+ Makes binstubs that can work without depending on Rubygems or Bundler at
24
+ runtime.
25
+
26
+ ## BUNDLE INSTALL --BINSTUBS
27
+
28
+ To create binstubs for all the gems in the bundle you can use the `--binstubs`
29
+ flag in [bundle install(1)][bundle-install].
@@ -39,6 +39,38 @@ Executing `bundle config disable_multisource true` upgrades the warning about
39
39
  the Gemfile containing multiple primary sources to an error. Executing `bundle
40
40
  config --delete disable_multisource` downgrades this error to a warning.
41
41
 
42
+ ## REMEMBERING OPTIONS
43
+
44
+ Flags passed to `bundle install` or the Bundler runtime,
45
+ such as `--path foo` or `--without production`, are not remembered between commands.
46
+ If these options must be remembered,they must be set using `bundle config`
47
+ (e.g., `bundle config path foo`).
48
+
49
+ The options that can be configured are:
50
+
51
+ * `binstubs`:
52
+ Creates a directory (defaults to `~/bin`) and place any executables from the
53
+ gem there. These executables run in Bundler's context. If used, you might add
54
+ this directory to your environment's `PATH` variable. For instance, if the
55
+ `rails` gem comes with a `rails` executable, this flag will create a
56
+ `bin/rails` executable that ensures that all referred dependencies will be
57
+ resolved using the bundled gems.
58
+
59
+ * `deployment`:
60
+ In deployment mode, Bundler will 'roll-out' the bundle for
61
+ `production` use. Please check carefully if you want to have this option
62
+ enabled in `development` or `test` environments.
63
+
64
+ * `path`:
65
+ The location to install the specified gems to. This defaults to Rubygems'
66
+ setting. Bundler shares this location with Rubygems, `gem install ...` will
67
+ have gem installed there, too. Therefore, gems installed without a
68
+ `--path ...` setting will show up by calling `gem list`. Accodingly, gems
69
+ installed to other locations will not get listed.
70
+
71
+ * `without`:
72
+ A space-separated list of groups referencing gems to skip during installation.
73
+
42
74
  ## BUILD OPTIONS
43
75
 
44
76
  You can use `bundle config` to give bundler the flags to pass to the gem
@@ -43,6 +43,9 @@ update process below under [CONSERVATIVE UPDATING][].
43
43
 
44
44
  ## OPTIONS
45
45
 
46
+ To apply any of `--deployment`, `--path`, `--binstubs`, or `--without` every
47
+ time `bundle install` is run, use `bundle config` (see bundle-config(1)).
48
+
46
49
  * `--binstubs[=<directory>]`:
47
50
  Creates a directory (defaults to `~/bin`) and place any executables from the
48
51
  gem there. These executables run in Bundler's context. If used, you might add
@@ -93,7 +96,7 @@ update process below under [CONSERVATIVE UPDATING][].
93
96
 
94
97
  * `--system`:
95
98
  Installs the gems specified in the bundle to the system's Rubygems location.
96
- This overrides any previous [remembered][REMEMBERED OPTIONS] use of `--path`.
99
+ This overrides any previous configuration of `--path`.
97
100
 
98
101
  * `--no-cache`:
99
102
  Do not update the cache in `vendor/cache` with the newly bundled gems. This
@@ -108,8 +111,7 @@ update process below under [CONSERVATIVE UPDATING][].
108
111
  setting. Bundler shares this location with Rubygems, `gem install ...` will
109
112
  have gem installed there, too. Therefore, gems installed without a
110
113
  `--path ...` setting will show up by calling `gem list`. Accodingly, gems
111
- installed to other locations will not get listed. This setting is a
112
- [remembered option][REMEMBERED OPTIONS].
114
+ installed to other locations will not get listed.
113
115
 
114
116
  * `--quiet`:
115
117
  Do not print progress information to the standard output. Instead, Bundler
@@ -142,14 +144,12 @@ update process below under [CONSERVATIVE UPDATING][].
142
144
  A space-separated list of groups referencing gems to skip during installation.
143
145
  If a group is given that is in the remembered list of groups given
144
146
  to --with, it is removed from that list.
145
- This is a [remembered option][REMEMBERED OPTIONS].
146
147
 
147
148
  * `--with=<list>`:
148
149
  A space-separated list of groups referencing gems to install. If an
149
150
  optional group is given it is installed. If a group is given that is
150
151
  in the remembered list of groups given to --without, it is removed
151
- from that list. This is a [remembered option][REMEMBERED OPTIONS].
152
-
152
+ from that list.
153
153
 
154
154
  ## DEPLOYMENT MODE
155
155
 
@@ -274,41 +274,6 @@ the vagaries of the dependency resolution process, this usually
274
274
  affects more than the gems you list in your Gemfile(5), and can
275
275
  (surprisingly) radically change the gems you are using.
276
276
 
277
- ## REMEMBERED OPTIONS
278
-
279
- Some options (marked above in the [OPTIONS][] section) are remembered
280
- between calls to `bundle install`, and by the Bundler runtime.
281
-
282
- For instance, if you run `bundle install --without test`, a subsequent
283
- call to `bundle install` that does not include a `--without` flag will
284
- remember your previous choice.
285
-
286
- In addition, a call to `Bundler.setup` will not attempt to make the
287
- gems in those groups available on the Ruby load path, as they were
288
- not installed.
289
-
290
- The settings that are remembered are:
291
-
292
- * `--deployment`:
293
- At runtime, this remembered setting will also result in Bundler
294
- raising an exception if the `Gemfile.lock` is out of date.
295
-
296
- * `--path`:
297
- Subsequent calls to `bundle install` will install gems to the
298
- directory originally passed to `--path`. The Bundler runtime
299
- will look for gems in that location. You can revert this
300
- option by running `bundle install --system`.
301
-
302
- * `--binstubs`:
303
- Bundler will update the executables every subsequent call to
304
- `bundle install`.
305
-
306
- * `--without`:
307
- As described above, Bundler will skip the gems specified by
308
- `--without` in subsequent calls to `bundle install`. The
309
- Bundler runtime will also not try to make the gems in the
310
- skipped groups available.
311
-
312
277
  ## THE GEMFILE.LOCK
313
278
 
314
279
  When you run `bundle install`, Bundler will persist the full names
@@ -27,7 +27,7 @@ in your local bundler configuration.
27
27
 
28
28
  ## REMOTE FETCHING
29
29
 
30
- By default, if you simply run [bundle install(1)][bundle-install] after running
30
+ By default, if you run [bundle install(1)][bundle-install] after running
31
31
  [bundle package(1)][bundle-package], bundler will still connect to `rubygems.org`
32
32
  to check whether a platform-specific gem exists for any of the gems
33
33
  in `vendor/cache`.
@@ -52,9 +52,6 @@ We divide `bundle` subcommands into primary commands and utilities.
52
52
  Determine whether the requirements for your application are installed
53
53
  and available to bundler
54
54
 
55
- * `bundle list(1)`:
56
- Show all of the gems in the current bundle
57
-
58
55
  * `bundle show(1)`:
59
56
  Show the source location of a particular gem in the bundle
60
57
 
@@ -85,6 +82,9 @@ We divide `bundle` subcommands into primary commands and utilities.
85
82
  * `bundle clean(1)`:
86
83
  Clean up unused gems in your bundler directory
87
84
 
85
+ * `bundle doctor(1)`:
86
+ Display warnings about common potential problems
87
+
88
88
  ## PLUGINS
89
89
 
90
90
  When running a command that isn't listed in PRIMARY COMMANDS or UTILITIES,
@@ -96,3 +96,4 @@ and execute it, passing down any extra arguments to it.
96
96
  These commands are obsolete and should no longer be used
97
97
 
98
98
  * `bundle cache(1)`
99
+ * `bundle list(1)`
@@ -42,7 +42,7 @@ credentials from being stored in plain text in version control.
42
42
 
43
43
  bundle config gems.example.com user:password
44
44
 
45
- For some sources, like a company Gemfury account, it may be easier to simply
45
+ For some sources, like a company Gemfury account, it may be easier to
46
46
  include the credentials in the Gemfile as part of the source URL.
47
47
 
48
48
  source "https://user:password@gems.example.com"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0.rc.1
4
+ version: 1.13.0.rc.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2016-06-27 00:00:00.000000000 Z
12
+ date: 2016-08-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: automatiek
@@ -59,14 +59,14 @@ dependencies:
59
59
  requirements:
60
60
  - - "~>"
61
61
  - !ruby/object:Gem::Version
62
- version: 2.1.8
62
+ version: '2.2'
63
63
  type: :development
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - "~>"
68
68
  - !ruby/object:Gem::Version
69
- version: 2.1.8
69
+ version: '2.2'
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: ronn
72
72
  requirement: !ruby/object:Gem::Requirement
@@ -87,14 +87,14 @@ dependencies:
87
87
  requirements:
88
88
  - - "~>"
89
89
  - !ruby/object:Gem::Version
90
- version: '3.0'
90
+ version: '3.5'
91
91
  type: :development
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
95
  - - "~>"
96
96
  - !ruby/object:Gem::Version
97
- version: '3.0'
97
+ version: '3.5'
98
98
  description: Bundler manages an application's dependencies through its entire life,
99
99
  across many machines, systematically and repeatably
100
100
  email:
@@ -137,6 +137,7 @@ files:
137
137
  - lib/bundler/cli/common.rb
138
138
  - lib/bundler/cli/config.rb
139
139
  - lib/bundler/cli/console.rb
140
+ - lib/bundler/cli/doctor.rb
140
141
  - lib/bundler/cli/exec.rb
141
142
  - lib/bundler/cli/gem.rb
142
143
  - lib/bundler/cli/init.rb
@@ -161,7 +162,6 @@ files:
161
162
  - lib/bundler/dsl.rb
162
163
  - lib/bundler/endpoint_specification.rb
163
164
  - lib/bundler/env.rb
164
- - lib/bundler/environment.rb
165
165
  - lib/bundler/environment_preserver.rb
166
166
  - lib/bundler/errors.rb
167
167
  - lib/bundler/fetcher.rb
@@ -175,6 +175,7 @@ files:
175
175
  - lib/bundler/gem_helpers.rb
176
176
  - lib/bundler/gem_remote_fetcher.rb
177
177
  - lib/bundler/gem_tasks.rb
178
+ - lib/bundler/gem_version_promoter.rb
178
179
  - lib/bundler/graph.rb
179
180
  - lib/bundler/index.rb
180
181
  - lib/bundler/injector.rb
@@ -186,6 +187,8 @@ files:
186
187
  - lib/bundler/lazy_specification.rb
187
188
  - lib/bundler/lockfile_parser.rb
188
189
  - lib/bundler/man/bundle
190
+ - lib/bundler/man/bundle-binstubs
191
+ - lib/bundler/man/bundle-binstubs.txt
189
192
  - lib/bundler/man/bundle-config
190
193
  - lib/bundler/man/bundle-config.txt
191
194
  - lib/bundler/man/bundle-exec
@@ -209,6 +212,7 @@ files:
209
212
  - lib/bundler/mirror.rb
210
213
  - lib/bundler/plugin.rb
211
214
  - lib/bundler/plugin/api.rb
215
+ - lib/bundler/plugin/api/source.rb
212
216
  - lib/bundler/plugin/dsl.rb
213
217
  - lib/bundler/plugin/index.rb
214
218
  - lib/bundler/plugin/installer.rb
@@ -346,6 +350,7 @@ files:
346
350
  - lib/bundler/vlad.rb
347
351
  - lib/bundler/worker.rb
348
352
  - lib/bundler/yaml_serializer.rb
353
+ - man/bundle-binstubs.ronn
349
354
  - man/bundle-config.ronn
350
355
  - man/bundle-exec.ronn
351
356
  - man/bundle-gem.ronn
@@ -377,9 +382,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
377
382
  version: 1.3.6
378
383
  requirements: []
379
384
  rubyforge_project:
380
- rubygems_version: 2.6.6
385
+ rubygems_version: 2.5.1
381
386
  signing_key:
382
387
  specification_version: 4
383
388
  summary: The best way to manage your application's dependencies
384
389
  test_files: []
385
- has_rdoc: