bundler 1.10.6 → 1.11.0.pre.1

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 (126) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +105 -0
  3. data/.rubocop_todo.yml +120 -0
  4. data/.travis.yml +8 -23
  5. data/CHANGELOG.md +69 -0
  6. data/CODE_OF_CONDUCT.md +6 -4
  7. data/DEVELOPMENT.md +4 -5
  8. data/README.md +2 -2
  9. data/Rakefile +70 -87
  10. data/bin/rake +14 -0
  11. data/bin/rspec +10 -0
  12. data/bin/rubocop +11 -0
  13. data/bundler.gemspec +17 -15
  14. data/exe/bundle +20 -0
  15. data/{bin → exe}/bundle_ruby +6 -4
  16. data/exe/bundler +20 -0
  17. data/lib/bundler.rb +98 -119
  18. data/lib/bundler/capistrano.rb +2 -2
  19. data/lib/bundler/cli.rb +85 -74
  20. data/lib/bundler/cli/binstubs.rb +1 -2
  21. data/lib/bundler/cli/cache.rb +0 -1
  22. data/lib/bundler/cli/check.rb +7 -5
  23. data/lib/bundler/cli/clean.rb +0 -1
  24. data/lib/bundler/cli/common.rb +6 -7
  25. data/lib/bundler/cli/config.rb +69 -56
  26. data/lib/bundler/cli/console.rb +8 -8
  27. data/lib/bundler/cli/exec.rb +4 -3
  28. data/lib/bundler/cli/gem.rb +50 -39
  29. data/lib/bundler/cli/init.rb +5 -6
  30. data/lib/bundler/cli/inject.rb +1 -2
  31. data/lib/bundler/cli/install.rb +18 -21
  32. data/lib/bundler/cli/lock.rb +8 -3
  33. data/lib/bundler/cli/open.rb +4 -5
  34. data/lib/bundler/cli/outdated.rb +7 -8
  35. data/lib/bundler/cli/package.rb +1 -1
  36. data/lib/bundler/cli/platform.rb +2 -3
  37. data/lib/bundler/cli/show.rb +9 -9
  38. data/lib/bundler/cli/update.rb +2 -3
  39. data/lib/bundler/cli/viz.rb +1 -2
  40. data/lib/bundler/constants.rb +1 -1
  41. data/lib/bundler/current_ruby.rb +38 -3
  42. data/lib/bundler/definition.rb +83 -88
  43. data/lib/bundler/dep_proxy.rb +11 -9
  44. data/lib/bundler/dependency.rb +26 -11
  45. data/lib/bundler/deployment.rb +2 -2
  46. data/lib/bundler/deprecate.rb +3 -3
  47. data/lib/bundler/dsl.rb +63 -44
  48. data/lib/bundler/env.rb +19 -12
  49. data/lib/bundler/environment.rb +1 -2
  50. data/lib/bundler/errors.rb +82 -0
  51. data/lib/bundler/fetcher.rb +45 -39
  52. data/lib/bundler/fetcher/base.rb +20 -7
  53. data/lib/bundler/fetcher/dependency.rb +5 -5
  54. data/lib/bundler/fetcher/downloader.rb +1 -2
  55. data/lib/bundler/fetcher/index.rb +4 -7
  56. data/lib/bundler/friendly_errors.rb +15 -8
  57. data/lib/bundler/gem_helper.rb +44 -35
  58. data/lib/bundler/gem_helpers.rb +7 -8
  59. data/lib/bundler/gem_remote_fetcher.rb +41 -0
  60. data/lib/bundler/gem_tasks.rb +4 -1
  61. data/lib/bundler/graph.rb +25 -24
  62. data/lib/bundler/index.rb +21 -18
  63. data/lib/bundler/injector.rb +2 -4
  64. data/lib/bundler/inline.rb +3 -3
  65. data/lib/bundler/installer.rb +57 -144
  66. data/lib/bundler/installer/gem_installer.rb +76 -0
  67. data/lib/bundler/installer/parallel_installer.rb +22 -13
  68. data/lib/bundler/installer/standalone.rb +48 -0
  69. data/lib/bundler/lazy_specification.rb +3 -4
  70. data/lib/bundler/lockfile_parser.rb +21 -19
  71. data/lib/bundler/match_platform.rb +4 -4
  72. data/lib/bundler/psyched_yaml.rb +3 -3
  73. data/lib/bundler/remote_specification.rb +1 -1
  74. data/lib/bundler/resolver.rb +93 -88
  75. data/lib/bundler/retry.rb +9 -10
  76. data/lib/bundler/ruby_dsl.rb +1 -1
  77. data/lib/bundler/ruby_version.rb +7 -10
  78. data/lib/bundler/rubygems_ext.rb +32 -27
  79. data/lib/bundler/{gem_installer.rb → rubygems_gem_installer.rb} +2 -2
  80. data/lib/bundler/rubygems_integration.rb +85 -70
  81. data/lib/bundler/runtime.rb +57 -61
  82. data/lib/bundler/settings.rb +27 -26
  83. data/lib/bundler/setup.rb +3 -3
  84. data/lib/bundler/shared_helpers.rb +45 -20
  85. data/lib/bundler/similarity_detector.rb +19 -21
  86. data/lib/bundler/source.rb +4 -5
  87. data/lib/bundler/source/git.rb +29 -31
  88. data/lib/bundler/source/git/git_proxy.rb +52 -26
  89. data/lib/bundler/source/path.rb +25 -28
  90. data/lib/bundler/source/path/installer.rb +4 -4
  91. data/lib/bundler/source/rubygems.rb +62 -48
  92. data/lib/bundler/source/rubygems/remote.rb +3 -3
  93. data/lib/bundler/source_list.rb +4 -4
  94. data/lib/bundler/spec_set.rb +17 -15
  95. data/lib/bundler/ssl_certs/certificate_manager.rb +5 -6
  96. data/lib/bundler/stub_specification.rb +2 -2
  97. data/lib/bundler/templates/Executable +5 -5
  98. data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +42 -6
  99. data/lib/bundler/templates/newgem/README.md.tt +1 -1
  100. data/lib/bundler/templates/newgem/Rakefile.tt +4 -2
  101. data/lib/bundler/templates/newgem/bin/setup.tt +2 -1
  102. data/lib/bundler/templates/newgem/newgem.gemspec.tt +2 -2
  103. data/lib/bundler/ui.rb +3 -3
  104. data/lib/bundler/ui/rg_proxy.rb +2 -2
  105. data/lib/bundler/ui/shell.rb +10 -6
  106. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +82 -71
  107. data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
  108. data/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +9 -0
  109. data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +40 -21
  110. data/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +8 -0
  111. data/lib/bundler/vendored_molinillo.rb +1 -1
  112. data/lib/bundler/vendored_persistent.rb +3 -3
  113. data/lib/bundler/vendored_thor.rb +2 -2
  114. data/lib/bundler/version.rb +1 -1
  115. data/lib/bundler/vlad.rb +1 -1
  116. data/lib/bundler/worker.rb +4 -5
  117. data/man/bundle-config.ronn +4 -2
  118. data/man/bundle-gem.ronn +77 -0
  119. data/man/bundle-install.ronn +13 -6
  120. data/man/bundle-lock.ronn +47 -0
  121. data/man/bundle.ronn +1 -1
  122. data/man/gemfile.5.ronn +8 -0
  123. data/man/index.txt +1 -0
  124. metadata +37 -8
  125. data/bin/bundle +0 -21
  126. data/bin/bundler +0 -21
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7b5b82f62ba26e1ac9da898f780001baab80d27e
4
- data.tar.gz: 72988f3a780eea7870f3c1306ffa455aa33cffce
3
+ metadata.gz: 047d83c72808c23bfb02d3d021734e2648247391
4
+ data.tar.gz: c7d2e0109ecdc27b9ef3bdb17a865ef1847ce46f
5
5
  SHA512:
6
- metadata.gz: d70d3b9ac2f6f76bd2a301e03c6b515e1468030c85daf2dc678ab0475582ba6fc289238f3e9d80656c75ff783426c10850b317c4c5922dda6e98f768945ee064
7
- data.tar.gz: a8c44a1a6b8d8eb4497d39ad64fd9bf2693e280b5eb9ba410d6112ae8f635acaa7901ef75355961edabbcee040e302f206ff4bfe2d6402bc512241c02d5962b9
6
+ metadata.gz: a1c58b0e79318f49082d0b81d27a2f932b624cd48bdb003bd2c7cffd3aed332859cdd932bad1f0ce664d0a14c83b9c94fefb447432e20ddaf080000cab807799
7
+ data.tar.gz: 269aff92a5244798680969bf42282909249b0c17b023a38bcb6d05b7ed7fb620b7c29edf2898132c17e59c534fd23ed10895f868c10107a02d1aa0bdaefd22b2
@@ -0,0 +1,105 @@
1
+ inherit_from:
2
+ - .rubocop_todo.yml
3
+
4
+ AllCops:
5
+ Exclude:
6
+ - tmp/**/*
7
+ - lib/bundler/vendor/**/*
8
+ DisplayCopNames: true
9
+
10
+ # Lint
11
+
12
+ # They are idiomatic
13
+ Lint/AssignmentInCondition:
14
+ Enabled: false
15
+
16
+ Lint/EndAlignment:
17
+ AlignWith: variable
18
+
19
+ Lint/UnusedMethodArgument:
20
+ Enabled: false
21
+
22
+ # Style
23
+
24
+ Style/AccessModifierIndentation:
25
+ EnforcedStyle: outdent
26
+
27
+ Style/AlignParameters:
28
+ EnforcedStyle: with_fixed_indentation
29
+
30
+ Style/MultilineBlockChain:
31
+ Enabled: false
32
+
33
+ Style/MultilineOperationIndentation:
34
+ EnforcedStyle: indented
35
+
36
+ Style/PerlBackrefs:
37
+ Enabled: false
38
+
39
+ Style/SingleLineBlockParams:
40
+ Enabled: false
41
+
42
+ Style/SpaceInsideBlockBraces:
43
+ SpaceBeforeBlockParameters: false
44
+
45
+ Style/TrivialAccessors:
46
+ Enabled: false
47
+
48
+ # We adopted raise instead of fail.
49
+ Style/SignalException:
50
+ EnforcedStyle: only_raise
51
+
52
+ Style/StringLiterals:
53
+ EnforcedStyle: double_quotes
54
+
55
+ Style/StringLiteralsInInterpolation:
56
+ EnforcedStyle: double_quotes
57
+
58
+ # Having these make it easier to *not* forget to add one when adding a new
59
+ # value and you can simply copy the previous line.
60
+ Style/TrailingComma:
61
+ EnforcedStyleForMultiline: comma
62
+
63
+ Style/TrailingUnderscoreVariable:
64
+ Enabled: false
65
+
66
+ # 1.8.7 support
67
+
68
+ Style/HashSyntax:
69
+ EnforcedStyle: hash_rockets
70
+
71
+ Style/Lambda:
72
+ Enabled: false
73
+
74
+ Style/DotPosition:
75
+ EnforcedStyle: trailing
76
+
77
+ Style/EachWithObject:
78
+ Enabled: false
79
+
80
+ Style/SpecialGlobalVars:
81
+ Enabled: false
82
+
83
+ Style/TrailingComma:
84
+ Enabled: false
85
+
86
+ # Metrics
87
+
88
+ # We've chosen to use Rubocop only for style, and not for complexity or quality checks.
89
+ Metrics/ClassLength:
90
+ Enabled: false
91
+
92
+ Metrics/ModuleLength:
93
+ Enabled: false
94
+
95
+ Metrics/MethodLength:
96
+ Enabled: false
97
+
98
+ Metrics/BlockNesting:
99
+ Enabled: false
100
+
101
+ Metrics/AbcSize:
102
+ Enabled: false
103
+
104
+ Metrics/CyclomaticComplexity:
105
+ Enabled: false
@@ -0,0 +1,120 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2015-11-21 00:03:12 -0600 using RuboCop version 0.35.1.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 4
10
+ Lint/Eval:
11
+ Exclude:
12
+ - 'lib/bundler.rb'
13
+ - 'lib/bundler/endpoint_specification.rb'
14
+ - 'spec/support/streams.rb'
15
+
16
+ # Offense count: 5
17
+ Lint/HandleExceptions:
18
+ Exclude:
19
+ - 'lib/bundler/fetcher/dependency.rb'
20
+ - 'lib/bundler/installer.rb'
21
+ - 'lib/bundler/psyched_yaml.rb'
22
+ - 'lib/bundler/vendored_persistent.rb'
23
+
24
+ # Offense count: 1
25
+ Lint/NestedMethodDefinition:
26
+ Exclude:
27
+ - 'lib/bundler/graph.rb'
28
+
29
+ # Offense count: 5
30
+ Lint/RescueException:
31
+ Exclude:
32
+ - 'lib/bundler/cli.rb'
33
+ - 'lib/bundler/dsl.rb'
34
+ - 'lib/bundler/friendly_errors.rb'
35
+ - 'lib/bundler/rubygems_integration.rb'
36
+ - 'lib/bundler/worker.rb'
37
+
38
+ # Offense count: 7
39
+ Lint/UselessAssignment:
40
+ Exclude:
41
+ - 'lib/bundler/graph.rb'
42
+ - 'lib/bundler/index.rb'
43
+ - 'lib/bundler/installer.rb'
44
+
45
+ # Offense count: 1031
46
+ # Configuration parameters: AllowURI, URISchemes.
47
+ Metrics/LineLength:
48
+ Max: 207
49
+
50
+ # Offense count: 2
51
+ # Configuration parameters: CountKeywordArgs.
52
+ Metrics/ParameterLists:
53
+ Max: 6
54
+
55
+ # Offense count: 50
56
+ Metrics/PerceivedComplexity:
57
+ Max: 54
58
+
59
+ # Offense count: 1
60
+ Style/AccessorMethodName:
61
+ Exclude:
62
+ - 'lib/bundler/source/git.rb'
63
+
64
+ # Offense count: 3
65
+ Style/CaseEquality:
66
+ Exclude:
67
+ - 'lib/bundler/dsl.rb'
68
+ - 'lib/bundler/match_platform.rb'
69
+ - 'lib/bundler/rubygems_ext.rb'
70
+
71
+ # Offense count: 22
72
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
73
+ Style/ClassAndModuleChildren:
74
+ Enabled: false
75
+
76
+ # Offense count: 119
77
+ # Configuration parameters: Exclude.
78
+ Style/Documentation:
79
+ Enabled: false
80
+
81
+ # Offense count: 1
82
+ # Configuration parameters: Exclude.
83
+ Style/FileName:
84
+ Exclude:
85
+ - 'lib/bundler/templates/Executable'
86
+
87
+ # Offense count: 4
88
+ # Configuration parameters: AllowedVariables.
89
+ Style/GlobalVars:
90
+ Exclude:
91
+ - 'lib/bundler/cli.rb'
92
+ - 'spec/spec_helper.rb'
93
+ - 'spec/support/helpers.rb'
94
+
95
+ # Offense count: 32
96
+ # Configuration parameters: MinBodyLength.
97
+ Style/GuardClause:
98
+ Enabled: false
99
+
100
+ # Offense count: 2
101
+ Style/ModuleFunction:
102
+ Exclude:
103
+ - 'lib/bundler/shared_helpers.rb'
104
+ - 'spec/support/path.rb'
105
+
106
+ # Offense count: 8
107
+ # Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist.
108
+ Style/PredicateName:
109
+ Exclude:
110
+ - 'lib/bundler/definition.rb'
111
+ - 'lib/bundler/installer/parallel_installer.rb'
112
+ - 'lib/bundler/settings.rb'
113
+ - 'lib/bundler/source/git.rb'
114
+ - 'lib/bundler/source/git/git_proxy.rb'
115
+ - 'lib/bundler/source/path.rb'
116
+
117
+ # Offense count: 7
118
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
119
+ Style/RaiseArgs:
120
+ Enabled: false
@@ -5,16 +5,8 @@ before_script: travis_retry rake spec:travis:deps
5
5
  branches:
6
6
  only:
7
7
  - master
8
- - 1-10-stable
9
- - 1-9-stable
10
- - 1-8-stable
11
- - 1-7-stable
12
- - 1-6-stable
13
- - 1-5-stable
14
- - 1-3-stable
15
- - 1-2-stable
16
- - 1-1-stable
17
- - 1-0-stable
8
+ - auto
9
+ - /.+-stable$/
18
10
 
19
11
  notifications:
20
12
  email:
@@ -34,7 +26,6 @@ rvm:
34
26
  - 2.0.0
35
27
  - 1.9.3
36
28
  - 1.8.7
37
- - rbx-2
38
29
 
39
30
  # Rubygems versions MUST be available as rake tasks
40
31
  # see Rakefile:66 for the list of possible RGV values
@@ -42,24 +33,25 @@ env:
42
33
  # We need to know if changes to rubygems will break bundler on release
43
34
  - RGV=master
44
35
  # Test the latest rubygems release with all of our supported rubies
36
+ - RGV=v2.5.0
45
37
  - RGV=v2.4.8
46
38
 
47
39
  matrix:
48
40
  include:
49
- # Ruby 2.2, Rubygems 2.4.5 and up (RG 2.4 is included by the matrix above)
41
+ # Ruby 2.2, Rubygems 2.4.5 and up (included by RGV above)
50
42
  # Ruby 2.1, Rubygems 2.2.2 and up
51
43
  - rvm: 2.1
52
- env: RGV=v2.2.3
44
+ env: RGV=v2.2.5
53
45
  # Ruby 2.0.0, Rubygems 2.0.0 and up
54
46
  - rvm: 2.0.0
55
- env: RGV=v2.2.3
47
+ env: RGV=v2.2.5
56
48
  - rvm: 2.0.0
57
49
  env: RGV=v2.1.11
58
50
  - rvm: 2.0.0
59
51
  env: RGV=v2.0.14
60
52
  # Ruby 1.9.3, Rubygems 1.5.3 and up
61
53
  - rvm: 1.9.3
62
- env: RGV=v2.2.3
54
+ env: RGV=v2.2.5
63
55
  - rvm: 1.9.3
64
56
  env: RGV=v2.1.11
65
57
  - rvm: 1.9.3
@@ -74,7 +66,7 @@ matrix:
74
66
  env: RGV=v1.5.3
75
67
  # Ruby 1.8.7, Rubygems 1.3.6 and up
76
68
  - rvm: 1.8.7
77
- env: RGV=v2.2.3
69
+ env: RGV=v2.2.5
78
70
  - rvm: 1.8.7
79
71
  env: RGV=v2.0.14
80
72
  - rvm: 1.8.7
@@ -96,17 +88,10 @@ matrix:
96
88
  # For no apparent reason, this often goes over the Travis limit
97
89
  - rvm: 1.8.7
98
90
  env: RGV=v2.1.11
99
- # Ruby 1.9.2 sanity check
100
- # (but it's just too slow and sometimes goes over the Travis limit)
101
- - rvm: 1.9.2
102
- env: RGV=v2.4.8
103
91
  # Ruby-head (we want to know how we're doing, but not fail the build)
104
92
  - rvm: ruby-head
105
93
  env: RGV=master
106
94
  allow_failures:
107
95
  - rvm: 1.8.7
108
96
  env: RGV=v2.1.11
109
- - rvm: 1.9.2
110
97
  - rvm: ruby-head
111
- - rvm: jruby
112
- - rvm: rbx-2
@@ -1,3 +1,66 @@
1
+ ## 1.11.0.pre.1 (2015-11-29)
2
+
3
+ Features:
4
+
5
+ - actual Gemfile and lockfile filenames are used in messages (#3672, @segiddins)
6
+ - the git remote for `rake release` is now customizable (@skateman)
7
+ - file access permissions errors are now much more friendly (#3703, #3735, #3858, #3988, #4009 @repinel, @Elffers, @segiddins, @agis-)
8
+ - add support for showing help for plugin commands (@tf)
9
+ - send `X-Gemfile-Source` header to source mirrors (@agis-)
10
+ - show what version upstream dependencies were resolved to in conflict messages (@segiddins)
11
+ - add support for using bundler setting to add private access credentials for git sources (@frsyuki)
12
+ - take into consideration HTTP proxy settings in `.gemrc` (@PG-kura)
13
+ - allow specifying a gem host to push to in the `GEM_HOST` environment variable (@pmenglund)
14
+ - when gempec `required_ruby_version` is available and the Gemfile specifies a ruby version, resolve for the given ruby version (@segiddins)
15
+ - allow setting a `silence_root_warning` setting to silence the warning when `bundle install` is run as root (@blackxored)
16
+ - update the `bundle gem` code of conduct template to Contributor Covenant v1.3.0 (@CoralineAda)
17
+ - add support for specifying gems to update when running `bundle lock` via `--update gem1 gem2` (@JuanitoFatas)
18
+
19
+ Bugfixes:
20
+
21
+ - avoid showing bundler version warning messages twice (@fotanus)
22
+ - fix running `bundle check` with `--path` when the gems are only installed globally (@akihiro17)
23
+ - fix `bin/setup` from `bundle gem` assuming `bash` is in `/bin`
24
+ - fail more gracefully when an HTTP remote is unreachable (#3765, @steverob)
25
+ - fix a warning running `bundle exec` on jruby 9.0.0.0 (@deivid-rodriguez, @mastfish)
26
+ - added support for MRI 2.3 (@amatsuda)
27
+ - fix the `bundle gem` readme when no tests are generated (@roseweixel)
28
+ - the dependencies on test gems in `bundle gem` are now locked to major versions (#3811, @indirect)
29
+ - fix the paths for native extensions generated by `--standalone` (#3813, @AlexanderPavlenko)
30
+ - fix trying to cache a gem that has no source (@EduardoBautista)
31
+ - fix `--source` option to `bundle update` causing incorrect gem unlocking (#3759, #3761, @neoeno)
32
+ - show a helpful message when requiring a file in `bundler require` fails (#3960, @agis-)
33
+ - improve hint when a resolution conflict occurs (@seanlinsley)
34
+ - fix handling an empty `BUNDLE_GEMFILE` environment variables (#3678, @agis-)
35
+ - avoid cleaning up gem extension directory in `bundle clean` (@Sirupsen)
36
+ - include git revision hash when printing a git source (#3433, @agis-)
37
+ - fix the `ssl_verify_mode` setting not being treated as a number (@goughy000)
38
+ - fix not retrying on zlib errors (#4047, @andremedeiros)
39
+ - fix a warning being shown for using `URI.encode` (@EduardoBautista)
40
+ - fix handling of fatal HTTP errors (#3830, @indirect)
41
+ - improve error message when sources are not absolute URIs (#3925, @agis-)
42
+ - ensure all `sudo` access is done in a thread-safe manner (#3910, @agis-)
43
+ - show a friendly error when a git ref is not found (#3879, @agis-)
44
+ - fix caching gems with a path with the same prefix as the bundled application (@indirect)
45
+ - fix showing gemspec validation errors on `bundle exec` (#3895, @agis-)
46
+ - distinguish Gemfile syntax and evaluation errors (#3783, @agis-)
47
+ - fix nested Gemfile sources not restoring the previous source (#3974, @agis-)
48
+ - fix the `RUBYLIB` environment variable not being cleaned (#3982, @agis-)
49
+ - fix handling a dependency missing from `Gemfile.lock` so parallel installation does not deadlock (#4012, @lukaso)
50
+ - add `pkg` to rake's clobber list (#3676, @jasonkarns)
51
+ - also print gemspecs in `bundle env` output (@agis-)
52
+ - fix handling when a `path` source does not have a gemspec but a lockfile says there is (#4004, @segiddins)
53
+ - show a warning when the `RUBYGEMS_GEMDEPS` environment variable is set (#3656, @agis-)
54
+ - fix handling invalid RubyGems configuration files (#4042, @agis-)
55
+ - fix `bundle console` falling back to `irb` when the preferred console is unavailable (@felixbuenemann)
56
+ - retry fetching specs when fetching version metadata fails (@jingweno)
57
+ - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec (#4102, @smellsblue)
58
+
59
+ Performance:
60
+
61
+ - speed up dependency resolution in pathological cases by 25x (#3803, @segiddins)
62
+ - drop string allocations when searching for gems (@jrafanie)
63
+
1
64
  ## 1.10.6 (2015-07-22)
2
65
 
3
66
  Workarounds:
@@ -116,6 +179,12 @@ Deprecations:
116
179
 
117
180
  - deprecated the (never enabled) `bundle_ruby` binary (@smlance)
118
181
 
182
+ ## 1.9.10 (2015-06-22)
183
+
184
+ Features:
185
+
186
+ - the `BUNDLED WITH` section of lockfiles generated by 1.10+ will be preserved (@segiddins)
187
+
119
188
  ## 1.9.9 (2015-05-16)
120
189
 
121
190
  Bugfixes:
@@ -1,6 +1,6 @@
1
1
  # Bundler Code of Conduct
2
2
 
3
- The Bundler project strongly values contributors from anywhere, regardless of gender, sexual orientation, disability, physical appearance, body size, race, or religion. As a result, the Bundler team has agreed to and enforces this code of conduct in order to provide a harassment-free experience for everyone who participates in the development of Bundler.
3
+ The Bundler project strongly values contributors from anywhere, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, race, ethnicity, age, religion, or nationality. As a result, the Bundler team has agreed to and enforces this code of conduct in order to provide a harassment-free experience for everyone who participates in the development of Bundler.
4
4
 
5
5
  ### Summary
6
6
 
@@ -8,18 +8,20 @@ Harassment in code and discussion or violation of physical boundaries is complet
8
8
 
9
9
  ### In detail
10
10
 
11
- Harassment includes offensive verbal comments related to gender, sexual orientation, disability, physical appearance, body size, race, religion, sexual images, deliberate intimidation, stalking, sustained disruption, and unwelcome sexual attention.
11
+ Harassment includes offensive verbal comments related to level of experience, gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, race, ethnicity, age, religion, nationality, the use of sexualized language or imagery, deliberate intimidation, stalking, sustained disruption, and unwelcome sexual attention.
12
12
 
13
13
  Individuals asked to stop any harassing behavior are expected to comply immediately.
14
14
 
15
15
  Maintainers, including the core team, are also subject to the anti-harassment policy.
16
16
 
17
- If anyone engages in harassing behavior, including maintainers, we may take appropriate action, up to and including warning the offender, deletion of comments, removal from the project’s codebase and communication systems, and escalation to Github support.
17
+ If anyone engages in abusive, harassing, or otherwise unacceptable behavior, including maintainers, we may take appropriate action, up to and including warning the offender, deletion of comments, removal from the project’s codebase and communication systems, and escalation to Github support.
18
18
 
19
19
  If you are being harassed, notice that someone else is being harassed, or have any other concerns, please contact a member of [the core team](http://bundler.io/contributors.html) or [email the core team](mailto:team@bundler.io) immediately.
20
20
 
21
21
  We expect everyone to follow these rules anywhere in the Bundler project’s codebases, issue trackers, IRC channel, group chat, and mailing lists.
22
22
 
23
+ This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.
24
+
23
25
  Finally, don't forget that it is human to make mistakes! We all do. Let’s work together to help each other, resolve issues, and learn from the mistakes that we will all inevitably make from time to time.
24
26
 
25
27
 
@@ -37,4 +39,4 @@ Thanks to the [JSConf Code of Conduct](http://jsconf.com/codeofconduct.html) and
37
39
  <a rel="license" href="http://creativecommons.org/publicdomain/zero/1.0/">
38
40
  <img src="http://i.creativecommons.org/p/zero/1.0/88x31.png" style="border-style: none;" alt="CC0">
39
41
  </a>
40
- </p>
42
+ </p>
@@ -10,11 +10,10 @@ If you’re interested in contributing to Bundler, that’s awesome! We’d love
10
10
 
11
11
  If you have any questions after reading this page, please feel free to contact either [@indirect](http://github.com/indirect) or [@hone](http://github.com/hone). They are both happy to provide help working through your first bugfix or thinking through the problem you’re trying to resolve.
12
12
 
13
- ## Tackle some small problems
13
+ ## How you can help
14
14
 
15
15
  We track [small
16
- bugs](https://github.com/bundler/bundler/issues?labels=small&state=open) and [small features](https://github.com/bundler/bundler-features/issues?labels=small&state=open) so that anyone who wants to help can start with something that's not too overwhelming. If nothing on those lists looks good, though, just talk to us.
17
-
16
+ bugs](https://github.com/bundler/bundler/issues?labels=small&state=open) and [small features](https://github.com/bundler/bundler-features/issues?labels=small&state=open) so that anyone who wants to help can start with something that's not too overwhelming. We also keep a [list of things anyone can help with, any time](https://github.com/bundler/bundler/blob/master/CONTRIBUTING.md#contributing). If nothing on those lists looks good, talk to us, and we'll figure out what you can help with. We can absolutely use your help, no matter what level of programming skill you have at the moment.
18
17
 
19
18
  # Development setup
20
19
 
@@ -30,7 +29,7 @@ Bundler doesn't use a Gemfile to list development dependencies, because when we
30
29
 
31
30
  3. Set up a shell alias to run Bundler from your clone, e.g. a Bash alias:
32
31
 
33
- $ alias dbundle='ruby -I /path/to/bundler/lib /path/to/bundler/bin/bundle'
32
+ $ alias dbundle='ruby -I /path/to/bundler/lib /path/to/bundler/exe/bundle'
34
33
 
35
34
  With that set up, you can test changes you've made to Bundler by running `dbundle`, without interfering with the regular `bundle` command.
36
35
 
@@ -83,7 +82,7 @@ If you don't hear back immediately, don’t get discouraged! We all have day job
83
82
 
84
83
  Early releases require heavy testing, especially across various system setups. We :heart: testers, and are big fans of anyone who can run `gem install bundler --pre` and try out upcoming releases in their development and staging environments.
85
84
 
86
- There may not always be prereleases or beta versions of Bundler. That said, you are always welcome to try checking out master and building a gem yourself if you want to try out the latest changes.
85
+ There may not always be prereleases or beta versions of Bundler. The Bundler team will tweet from the [@bundlerio account](http://twitter.com/bundlerio) when a prerelease or beta version becomes available. You are also always welcome to try checking out master and building a gem yourself if you want to try out the latest changes.
87
86
 
88
87
 
89
88
  # Translations