shopify-bundler 1.10.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +16 -0
- data/.rspec +3 -0
- data/.rubocop.yml +96 -0
- data/.rubocop_todo.yml +177 -0
- data/.travis.yml +104 -0
- data/CHANGELOG.md +2131 -0
- data/CODE_OF_CONDUCT.md +42 -0
- data/CONTRIBUTING.md +32 -0
- data/DEVELOPMENT.md +118 -0
- data/ISSUES.md +96 -0
- data/LICENSE.md +23 -0
- data/README.md +40 -0
- data/Rakefile +309 -0
- data/bin/rake +14 -0
- data/bin/rspec +10 -0
- data/bin/rubocop +11 -0
- data/bundler.gemspec +34 -0
- data/exe/bundle +21 -0
- data/exe/bundle_ruby +60 -0
- data/exe/bundler +21 -0
- data/lib/bundler.rb +499 -0
- data/lib/bundler/capistrano.rb +16 -0
- data/lib/bundler/cli.rb +435 -0
- data/lib/bundler/cli/binstubs.rb +37 -0
- data/lib/bundler/cli/cache.rb +34 -0
- data/lib/bundler/cli/check.rb +37 -0
- data/lib/bundler/cli/clean.rb +25 -0
- data/lib/bundler/cli/common.rb +56 -0
- data/lib/bundler/cli/config.rb +88 -0
- data/lib/bundler/cli/console.rb +37 -0
- data/lib/bundler/cli/exec.rb +51 -0
- data/lib/bundler/cli/gem.rb +208 -0
- data/lib/bundler/cli/init.rb +32 -0
- data/lib/bundler/cli/inject.rb +32 -0
- data/lib/bundler/cli/install.rb +188 -0
- data/lib/bundler/cli/lock.rb +35 -0
- data/lib/bundler/cli/open.rb +22 -0
- data/lib/bundler/cli/outdated.rb +86 -0
- data/lib/bundler/cli/package.rb +45 -0
- data/lib/bundler/cli/platform.rb +42 -0
- data/lib/bundler/cli/show.rb +74 -0
- data/lib/bundler/cli/update.rb +72 -0
- data/lib/bundler/cli/viz.rb +26 -0
- data/lib/bundler/constants.rb +5 -0
- data/lib/bundler/current_ruby.rb +218 -0
- data/lib/bundler/definition.rb +675 -0
- data/lib/bundler/dep_proxy.rb +45 -0
- data/lib/bundler/dependency.rb +119 -0
- data/lib/bundler/deployment.rb +62 -0
- data/lib/bundler/deprecate.rb +17 -0
- data/lib/bundler/dsl.rb +478 -0
- data/lib/bundler/endpoint_specification.rb +100 -0
- data/lib/bundler/env.rb +82 -0
- data/lib/bundler/environment.rb +41 -0
- data/lib/bundler/fetcher.rb +288 -0
- data/lib/bundler/fetcher/base.rb +26 -0
- data/lib/bundler/fetcher/dependency.rb +88 -0
- data/lib/bundler/fetcher/downloader.rb +60 -0
- data/lib/bundler/fetcher/index.rb +32 -0
- data/lib/bundler/friendly_errors.rb +92 -0
- data/lib/bundler/gem_helper.rb +191 -0
- data/lib/bundler/gem_helpers.rb +26 -0
- data/lib/bundler/gem_installer.rb +9 -0
- data/lib/bundler/gem_path_manipulation.rb +8 -0
- data/lib/bundler/gem_tasks.rb +5 -0
- data/lib/bundler/graph.rb +173 -0
- data/lib/bundler/index.rb +199 -0
- data/lib/bundler/injector.rb +62 -0
- data/lib/bundler/inline.rb +58 -0
- data/lib/bundler/installer.rb +242 -0
- data/lib/bundler/installer/parallel_installer.rb +122 -0
- data/lib/bundler/installer/standalone.rb +48 -0
- data/lib/bundler/lazy_specification.rb +82 -0
- data/lib/bundler/lockfile_parser.rb +199 -0
- data/lib/bundler/match_platform.rb +13 -0
- data/lib/bundler/psyched_yaml.rb +26 -0
- data/lib/bundler/remote_specification.rb +82 -0
- data/lib/bundler/resolver.rb +350 -0
- data/lib/bundler/retry.rb +60 -0
- data/lib/bundler/ruby_dsl.rb +11 -0
- data/lib/bundler/ruby_version.rb +116 -0
- data/lib/bundler/rubygems_ext.rb +175 -0
- data/lib/bundler/rubygems_integration.rb +674 -0
- data/lib/bundler/runtime.rb +285 -0
- data/lib/bundler/settings.rb +263 -0
- data/lib/bundler/setup.rb +26 -0
- data/lib/bundler/shared_helpers.rb +176 -0
- data/lib/bundler/similarity_detector.rb +61 -0
- data/lib/bundler/source.rb +35 -0
- data/lib/bundler/source/git.rb +286 -0
- data/lib/bundler/source/git/git_proxy.rb +190 -0
- data/lib/bundler/source/path.rb +224 -0
- data/lib/bundler/source/path/installer.rb +43 -0
- data/lib/bundler/source/rubygems.rb +436 -0
- data/lib/bundler/source/rubygems/remote.rb +38 -0
- data/lib/bundler/source_list.rb +101 -0
- data/lib/bundler/spec_set.rb +156 -0
- data/lib/bundler/ssl_certs/.document +1 -0
- data/lib/bundler/ssl_certs/AddTrustExternalCARoot-2048.pem +25 -0
- data/lib/bundler/ssl_certs/AddTrustExternalCARoot.pem +32 -0
- data/lib/bundler/ssl_certs/Class3PublicPrimaryCertificationAuthority.pem +14 -0
- data/lib/bundler/ssl_certs/DigiCertHighAssuranceEVRootCA.pem +23 -0
- data/lib/bundler/ssl_certs/EntrustnetSecureServerCertificationAuthority.pem +28 -0
- data/lib/bundler/ssl_certs/GeoTrustGlobalCA.pem +20 -0
- data/lib/bundler/ssl_certs/certificate_manager.rb +64 -0
- data/lib/bundler/stub_specification.rb +23 -0
- data/lib/bundler/templates/Executable +16 -0
- data/lib/bundler/templates/Executable.standalone +12 -0
- data/lib/bundler/templates/Gemfile +4 -0
- data/lib/bundler/templates/newgem/.travis.yml.tt +4 -0
- data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +22 -0
- data/lib/bundler/templates/newgem/Gemfile.tt +4 -0
- data/lib/bundler/templates/newgem/LICENSE.txt.tt +21 -0
- data/lib/bundler/templates/newgem/README.md.tt +41 -0
- data/lib/bundler/templates/newgem/Rakefile.tt +29 -0
- data/lib/bundler/templates/newgem/bin/console.tt +14 -0
- data/lib/bundler/templates/newgem/bin/setup.tt +8 -0
- data/lib/bundler/templates/newgem/exe/newgem.tt +3 -0
- data/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +3 -0
- data/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +9 -0
- data/lib/bundler/templates/newgem/ext/newgem/newgem.h.tt +6 -0
- data/lib/bundler/templates/newgem/gitignore.tt +16 -0
- data/lib/bundler/templates/newgem/lib/newgem.rb.tt +12 -0
- data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +43 -0
- data/lib/bundler/templates/newgem/rspec.tt +2 -0
- data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +11 -0
- data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -0
- data/lib/bundler/templates/newgem/test/newgem_test.rb.tt +11 -0
- data/lib/bundler/templates/newgem/test/test_helper.rb.tt +4 -0
- data/lib/bundler/ui.rb +7 -0
- data/lib/bundler/ui/rg_proxy.rb +17 -0
- data/lib/bundler/ui/shell.rb +108 -0
- data/lib/bundler/ui/silent.rb +44 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo.rb +5 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +277 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +69 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +3 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +99 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +63 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +434 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +43 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +51 -0
- data/lib/bundler/vendor/net/http/faster.rb +26 -0
- data/lib/bundler/vendor/net/http/persistent.rb +1230 -0
- data/lib/bundler/vendor/net/http/persistent/ssl_reuse.rb +128 -0
- data/lib/bundler/vendor/thor/lib/thor.rb +484 -0
- data/lib/bundler/vendor/thor/lib/thor/actions.rb +319 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +103 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +59 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +118 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +135 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +316 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +107 -0
- data/lib/bundler/vendor/thor/lib/thor/base.rb +656 -0
- data/lib/bundler/vendor/thor/lib/thor/command.rb +133 -0
- data/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +77 -0
- data/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb +10 -0
- data/lib/bundler/vendor/thor/lib/thor/core_ext/ordered_hash.rb +98 -0
- data/lib/bundler/vendor/thor/lib/thor/error.rb +32 -0
- data/lib/bundler/vendor/thor/lib/thor/group.rb +281 -0
- data/lib/bundler/vendor/thor/lib/thor/invocation.rb +178 -0
- data/lib/bundler/vendor/thor/lib/thor/line_editor.rb +17 -0
- data/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +35 -0
- data/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb +88 -0
- data/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +73 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +175 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/option.rb +125 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/options.rb +218 -0
- data/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +71 -0
- data/lib/bundler/vendor/thor/lib/thor/runner.rb +322 -0
- data/lib/bundler/vendor/thor/lib/thor/shell.rb +81 -0
- data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +421 -0
- data/lib/bundler/vendor/thor/lib/thor/shell/color.rb +149 -0
- data/lib/bundler/vendor/thor/lib/thor/shell/html.rb +126 -0
- data/lib/bundler/vendor/thor/lib/thor/util.rb +267 -0
- data/lib/bundler/vendor/thor/lib/thor/version.rb +3 -0
- data/lib/bundler/vendored_molinillo.rb +2 -0
- data/lib/bundler/vendored_persistent.rb +11 -0
- data/lib/bundler/vendored_thor.rb +3 -0
- data/lib/bundler/version.rb +6 -0
- data/lib/bundler/vlad.rb +11 -0
- data/lib/bundler/worker.rb +72 -0
- data/man/bundle-config.ronn +187 -0
- data/man/bundle-exec.ronn +136 -0
- data/man/bundle-gem.ronn +77 -0
- data/man/bundle-install.ronn +398 -0
- data/man/bundle-package.ronn +66 -0
- data/man/bundle-platform.ronn +42 -0
- data/man/bundle-update.ronn +188 -0
- data/man/bundle.ronn +98 -0
- data/man/gemfile.5.ronn +495 -0
- data/man/index.txt +8 -0
- metadata +346 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 44220c20be4024bddc4792c6d94ad4ba6d2cd4bc
|
4
|
+
data.tar.gz: c438a5092c386453ca8026163d2c7a5139b9e49d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 532ce209dd52d8fc5ca8c25a25e1e5da8aa25af02f6c84d94e9fdc881f2d406951520d367ab14c6ee2ff96c1f086c2c271d0dee907e21b1bee7b1409304a3467
|
7
|
+
data.tar.gz: 797b7af4d576a0c1fdb9ec473ee5bfe5214f854c06d987eea4a6b0a404a82a4b6a89c8ecbb2763bc003b3e2e7d50e20aee81164556bbdb891c60c8500c468b2d
|
data/.gitignore
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# Please do not submit patches for including directives to ignore IDE/editor
|
2
|
+
# generated files. Use a global gitignore as described in
|
3
|
+
# https://help.github.com/articles/ignoring-files and find useful gitignore
|
4
|
+
# samples at https://github.com/github/gitignore
|
5
|
+
|
6
|
+
# files created by running the specs
|
7
|
+
/tmp/
|
8
|
+
|
9
|
+
# gems built by `rake build`
|
10
|
+
/pkg/
|
11
|
+
|
12
|
+
# output from ronn
|
13
|
+
/lib/bundler/man/
|
14
|
+
|
15
|
+
# output from ci_reporter
|
16
|
+
/spec/reports/
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,96 @@
|
|
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/MultilineOperationIndentation:
|
31
|
+
EnforcedStyle: indented
|
32
|
+
|
33
|
+
Style/SpaceInsideBlockBraces:
|
34
|
+
SpaceBeforeBlockParameters: false
|
35
|
+
|
36
|
+
Style/TrivialAccessors:
|
37
|
+
Enabled: false
|
38
|
+
|
39
|
+
# We adopted raise instead of fail.
|
40
|
+
Style/SignalException:
|
41
|
+
EnforcedStyle: only_raise
|
42
|
+
|
43
|
+
Style/StringLiterals:
|
44
|
+
EnforcedStyle: double_quotes
|
45
|
+
|
46
|
+
Style/StringLiteralsInInterpolation:
|
47
|
+
EnforcedStyle: double_quotes
|
48
|
+
|
49
|
+
# Having these make it easier to *not* forget to add one when adding a new
|
50
|
+
# value and you can simply copy the previous line.
|
51
|
+
Style/TrailingComma:
|
52
|
+
EnforcedStyleForMultiline: comma
|
53
|
+
|
54
|
+
Style/TrailingUnderscoreVariable:
|
55
|
+
Enabled: false
|
56
|
+
|
57
|
+
# 1.8.7 support
|
58
|
+
|
59
|
+
Style/HashSyntax:
|
60
|
+
EnforcedStyle: hash_rockets
|
61
|
+
|
62
|
+
Style/Lambda:
|
63
|
+
Enabled: false
|
64
|
+
|
65
|
+
Style/DotPosition:
|
66
|
+
EnforcedStyle: trailing
|
67
|
+
|
68
|
+
Style/EachWithObject:
|
69
|
+
Enabled: false
|
70
|
+
|
71
|
+
Style/SpecialGlobalVars:
|
72
|
+
Enabled: false
|
73
|
+
|
74
|
+
Style/TrailingComma:
|
75
|
+
Enabled: false
|
76
|
+
|
77
|
+
# Metrics
|
78
|
+
|
79
|
+
# We've chosen to use Rubocop only for style, and not for complexity or quality checks.
|
80
|
+
Metrics/ClassLength:
|
81
|
+
Enabled: false
|
82
|
+
|
83
|
+
Metrics/ModuleLength:
|
84
|
+
Enabled: false
|
85
|
+
|
86
|
+
Metrics/MethodLength:
|
87
|
+
Enabled: false
|
88
|
+
|
89
|
+
Metrics/BlockNesting:
|
90
|
+
Enabled: false
|
91
|
+
|
92
|
+
Metrics/AbcSize:
|
93
|
+
Enabled: false
|
94
|
+
|
95
|
+
Metrics/CyclomaticComplexity:
|
96
|
+
Enabled: false
|
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,177 @@
|
|
1
|
+
# This configuration was generated by `rubocop --auto-gen-config`
|
2
|
+
# on 2015-07-15 20:39:25 -0700 using RuboCop version 0.32.1.
|
3
|
+
# The point is for the user to remove these configuration records
|
4
|
+
# one by one as the offenses are removed from the code base.
|
5
|
+
# Note that changes in the inspected code, or installation of new
|
6
|
+
# versions of RuboCop, may require this file to be generated again.
|
7
|
+
|
8
|
+
# Offense count: 4
|
9
|
+
Lint/Eval:
|
10
|
+
Enabled: false
|
11
|
+
|
12
|
+
# Offense count: 5
|
13
|
+
Lint/HandleExceptions:
|
14
|
+
Enabled: false
|
15
|
+
|
16
|
+
# Offense count: 1
|
17
|
+
Lint/NestedMethodDefinition:
|
18
|
+
Enabled: false
|
19
|
+
|
20
|
+
# Offense count: 1
|
21
|
+
Lint/NonLocalExitFromIterator:
|
22
|
+
Enabled: false
|
23
|
+
|
24
|
+
# Offense count: 6
|
25
|
+
Lint/RescueException:
|
26
|
+
Enabled: false
|
27
|
+
|
28
|
+
# Offense count: 7
|
29
|
+
Lint/UselessAssignment:
|
30
|
+
Enabled: false
|
31
|
+
|
32
|
+
# Offense count: 959
|
33
|
+
# Configuration parameters: AllowURI, URISchemes.
|
34
|
+
Metrics/LineLength:
|
35
|
+
Max: 207
|
36
|
+
|
37
|
+
# Offense count: 4
|
38
|
+
# Configuration parameters: CountComments.
|
39
|
+
Metrics/ModuleLength:
|
40
|
+
Max: 363
|
41
|
+
|
42
|
+
# Offense count: 2
|
43
|
+
# Configuration parameters: CountKeywordArgs.
|
44
|
+
Metrics/ParameterLists:
|
45
|
+
Max: 6
|
46
|
+
|
47
|
+
# Offense count: 49
|
48
|
+
Metrics/PerceivedComplexity:
|
49
|
+
Max: 54
|
50
|
+
|
51
|
+
# Offense count: 1
|
52
|
+
Style/AccessorMethodName:
|
53
|
+
Enabled: false
|
54
|
+
|
55
|
+
# Offense count: 16
|
56
|
+
# Cop supports --auto-correct.
|
57
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
58
|
+
Style/AndOr:
|
59
|
+
Enabled: false
|
60
|
+
|
61
|
+
# Offense count: 22
|
62
|
+
# Cop supports --auto-correct.
|
63
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles, ProceduralMethods, FunctionalMethods, IgnoredMethods.
|
64
|
+
Style/BlockDelimiters:
|
65
|
+
Enabled: false
|
66
|
+
|
67
|
+
# Offense count: 3
|
68
|
+
Style/CaseEquality:
|
69
|
+
Enabled: false
|
70
|
+
|
71
|
+
# Offense count: 4
|
72
|
+
# Cop supports --auto-correct.
|
73
|
+
# Configuration parameters: IndentWhenRelativeTo, SupportedStyles, IndentOneStep.
|
74
|
+
Style/CaseIndentation:
|
75
|
+
Enabled: false
|
76
|
+
|
77
|
+
# Offense count: 22
|
78
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
79
|
+
Style/ClassAndModuleChildren:
|
80
|
+
Enabled: false
|
81
|
+
|
82
|
+
# Offense count: 153
|
83
|
+
Style/Documentation:
|
84
|
+
Enabled: false
|
85
|
+
|
86
|
+
# Offense count: 1
|
87
|
+
# Cop supports --auto-correct.
|
88
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
89
|
+
Style/EmptyElse:
|
90
|
+
Enabled: false
|
91
|
+
|
92
|
+
# Offense count: 9
|
93
|
+
# Cop supports --auto-correct.
|
94
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
95
|
+
Style/EmptyLinesAroundModuleBody:
|
96
|
+
Enabled: false
|
97
|
+
|
98
|
+
# Offense count: 1
|
99
|
+
# Configuration parameters: Exclude.
|
100
|
+
Style/FileName:
|
101
|
+
Enabled: false
|
102
|
+
|
103
|
+
# Offense count: 4
|
104
|
+
# Configuration parameters: AllowedVariables.
|
105
|
+
Style/GlobalVars:
|
106
|
+
Enabled: false
|
107
|
+
|
108
|
+
# Offense count: 29
|
109
|
+
# Configuration parameters: MinBodyLength.
|
110
|
+
Style/GuardClause:
|
111
|
+
Enabled: false
|
112
|
+
|
113
|
+
# Offense count: 20
|
114
|
+
# Cop supports --auto-correct.
|
115
|
+
# Configuration parameters: MaxLineLength.
|
116
|
+
Style/IfUnlessModifier:
|
117
|
+
Enabled: false
|
118
|
+
|
119
|
+
# Offense count: 2
|
120
|
+
Style/ModuleFunction:
|
121
|
+
Enabled: false
|
122
|
+
|
123
|
+
# Offense count: 1
|
124
|
+
Style/MultilineBlockChain:
|
125
|
+
Enabled: false
|
126
|
+
|
127
|
+
# Offense count: 13
|
128
|
+
# Cop supports --auto-correct.
|
129
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
130
|
+
Style/MultilineOperationIndentation:
|
131
|
+
Enabled: false
|
132
|
+
|
133
|
+
# Offense count: 10
|
134
|
+
# Configuration parameters: EnforcedStyle, MinBodyLength, SupportedStyles.
|
135
|
+
Style/Next:
|
136
|
+
Enabled: false
|
137
|
+
|
138
|
+
# Offense count: 63
|
139
|
+
# Cop supports --auto-correct.
|
140
|
+
# Configuration parameters: PreferredDelimiters.
|
141
|
+
Style/PercentLiteralDelimiters:
|
142
|
+
Enabled: false
|
143
|
+
|
144
|
+
# Offense count: 22
|
145
|
+
# Cop supports --auto-correct.
|
146
|
+
Style/PerlBackrefs:
|
147
|
+
Enabled: false
|
148
|
+
|
149
|
+
# Offense count: 8
|
150
|
+
# Configuration parameters: NamePrefix, NamePrefixBlacklist.
|
151
|
+
Style/PredicateName:
|
152
|
+
Enabled: false
|
153
|
+
|
154
|
+
# Offense count: 8
|
155
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
156
|
+
Style/RaiseArgs:
|
157
|
+
Enabled: false
|
158
|
+
|
159
|
+
# Offense count: 7
|
160
|
+
# Cop supports --auto-correct.
|
161
|
+
Style/RedundantSelf:
|
162
|
+
Enabled: false
|
163
|
+
|
164
|
+
# Offense count: 3
|
165
|
+
Style/RescueModifier:
|
166
|
+
Enabled: false
|
167
|
+
|
168
|
+
# Offense count: 2
|
169
|
+
# Configuration parameters: Methods.
|
170
|
+
Style/SingleLineBlockParams:
|
171
|
+
Enabled: false
|
172
|
+
|
173
|
+
# Offense count: 7
|
174
|
+
# Cop supports --auto-correct.
|
175
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
176
|
+
Style/SpaceAroundEqualsInParameterDefault:
|
177
|
+
Enabled: false
|
data/.travis.yml
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
language: ruby
|
2
|
+
script: rake spec:travis
|
3
|
+
before_script: travis_retry rake spec:travis:deps
|
4
|
+
|
5
|
+
branches:
|
6
|
+
only:
|
7
|
+
- master
|
8
|
+
- auto
|
9
|
+
- /.+-stable$/
|
10
|
+
|
11
|
+
notifications:
|
12
|
+
email:
|
13
|
+
# andre
|
14
|
+
- secure: "bCcvqJT7YrBawtkXXwHhT+jOFth7r2Qv/30PkkbhQxk6Jb3xambjCOJ3U6vJ\ngYmiL50exi5lUp3oc3SEbHN5t2CrZqOZDQ6o7P8EAmB5c0oH2RrYaFOkI5Gt\nul/jGH/96A9sj0aMwG7JfdMSfhqj1DUKAm2PnnbXPL853VfmT24="
|
15
|
+
# terence
|
16
|
+
- secure: "MQ8eA5Jb8YzEpAo58DRGfVJklAPcEbAulpBZnTxp0am6ldneDtJHbQk21w6R\nj5GsDHlzr/lMp/GHIimtUZ7rLohfND8fj/W7fs1Dkd4eN02/ERt98x3pHlqv\nvZgSnZ39uVYv+OcphraE24QaRaGWLhWZAMYQTVe/Yz50NyG8g1U="
|
17
|
+
slack:
|
18
|
+
on_success: change
|
19
|
+
on_failure: always
|
20
|
+
rooms:
|
21
|
+
- secure: JxBi7DDJGkIF/7f/FSN/HUHpvV4EKfQccZHTPd1b2pNJn3GXo6u+tNVbAw2WjxYzPyPQI3ZcYBCU9SEXp/i7VmG8uMzh8Kyildw+miSKYKVb90uYqcsXWzbxwyNBgJLvyDkzST45H5lgnyAicee3WkFes/WDZikIajbH7ztdb04=
|
22
|
+
|
23
|
+
rvm:
|
24
|
+
- 2.2
|
25
|
+
- 2.1
|
26
|
+
- 2.0.0
|
27
|
+
- 1.9.3
|
28
|
+
- 1.8.7
|
29
|
+
- rbx-2
|
30
|
+
|
31
|
+
# Rubygems versions MUST be available as rake tasks
|
32
|
+
# see Rakefile:66 for the list of possible RGV values
|
33
|
+
env:
|
34
|
+
# We need to know if changes to rubygems will break bundler on release
|
35
|
+
- RGV=master
|
36
|
+
# Test the latest rubygems release with all of our supported rubies
|
37
|
+
- RGV=v2.4.8
|
38
|
+
|
39
|
+
matrix:
|
40
|
+
include:
|
41
|
+
# Ruby 2.2, Rubygems 2.4.5 and up (RG 2.4 is included by the matrix above)
|
42
|
+
# Ruby 2.1, Rubygems 2.2.2 and up
|
43
|
+
- rvm: 2.1
|
44
|
+
env: RGV=v2.2.3
|
45
|
+
# Ruby 2.0.0, Rubygems 2.0.0 and up
|
46
|
+
- rvm: 2.0.0
|
47
|
+
env: RGV=v2.2.3
|
48
|
+
- rvm: 2.0.0
|
49
|
+
env: RGV=v2.1.11
|
50
|
+
- rvm: 2.0.0
|
51
|
+
env: RGV=v2.0.14
|
52
|
+
# Ruby 1.9.3, Rubygems 1.5.3 and up
|
53
|
+
- rvm: 1.9.3
|
54
|
+
env: RGV=v2.2.3
|
55
|
+
- rvm: 1.9.3
|
56
|
+
env: RGV=v2.1.11
|
57
|
+
- rvm: 1.9.3
|
58
|
+
env: RGV=v2.0.14
|
59
|
+
- rvm: 1.9.3
|
60
|
+
env: RGV=v1.8.29
|
61
|
+
- rvm: 1.9.3
|
62
|
+
env: RGV=v1.7.2
|
63
|
+
- rvm: 1.9.3
|
64
|
+
env: RGV=v1.6.2
|
65
|
+
- rvm: 1.9.3
|
66
|
+
env: RGV=v1.5.3
|
67
|
+
# Ruby 1.8.7, Rubygems 1.3.6 and up
|
68
|
+
- rvm: 1.8.7
|
69
|
+
env: RGV=v2.2.3
|
70
|
+
- rvm: 1.8.7
|
71
|
+
env: RGV=v2.0.14
|
72
|
+
- rvm: 1.8.7
|
73
|
+
env: RGV=v1.8.29
|
74
|
+
- rvm: 1.8.7
|
75
|
+
env: RGV=v1.7.2
|
76
|
+
- rvm: 1.8.7
|
77
|
+
env: RGV=v1.6.2
|
78
|
+
- rvm: 1.8.7
|
79
|
+
env: RGV=v1.5.3
|
80
|
+
- rvm: 1.8.7
|
81
|
+
env: RGV=v1.4.2
|
82
|
+
- rvm: 1.8.7
|
83
|
+
env: RGV=v1.3.7
|
84
|
+
- rvm: 1.8.7
|
85
|
+
env: RGV=v1.3.6
|
86
|
+
|
87
|
+
# ALLOWED FAILURES
|
88
|
+
# For no apparent reason, this often goes over the Travis limit
|
89
|
+
- rvm: 1.8.7
|
90
|
+
env: RGV=v2.1.11
|
91
|
+
# Ruby 1.9.2 sanity check
|
92
|
+
# (but it's just too slow and sometimes goes over the Travis limit)
|
93
|
+
- rvm: 1.9.2
|
94
|
+
env: RGV=v2.4.8
|
95
|
+
# Ruby-head (we want to know how we're doing, but not fail the build)
|
96
|
+
- rvm: ruby-head
|
97
|
+
env: RGV=master
|
98
|
+
allow_failures:
|
99
|
+
- rvm: 1.8.7
|
100
|
+
env: RGV=v2.1.11
|
101
|
+
- rvm: 1.9.2
|
102
|
+
- rvm: ruby-head
|
103
|
+
- rvm: jruby
|
104
|
+
- rvm: rbx-2
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,2131 @@
|
|
1
|
+
## 1.10.6 (2015-07-22)
|
2
|
+
|
3
|
+
Workarounds:
|
4
|
+
|
5
|
+
- only warn on invalid gemspecs (@indirect)
|
6
|
+
|
7
|
+
Bugfixes:
|
8
|
+
|
9
|
+
- fix installing dependencies in the correct order (#3799, @pducks32)
|
10
|
+
- fix sorting of mixed DependencyLists (#3762, @tony-spataro-rs)
|
11
|
+
- fix `install_if` conditionals when using the block form (@danieltdt)
|
12
|
+
|
13
|
+
## 1.10.5 (2015-06-24)
|
14
|
+
|
15
|
+
Workarounds:
|
16
|
+
|
17
|
+
- don't add or update BUNDLED WITH during `install` with no changes (@segiddins)
|
18
|
+
|
19
|
+
Bugfixes:
|
20
|
+
|
21
|
+
- fix sorting of mixed DependencyLists with RubyGems >= 2.23 (#3762, @tony-spataro-rs)
|
22
|
+
- speed up resolver for path and git gems (@segiddins)
|
23
|
+
- fix `install --force` to not reinstall Bundler (#3743, @karlo57)
|
24
|
+
|
25
|
+
## 1.10.4 (2015-06-16)
|
26
|
+
|
27
|
+
Workarounds:
|
28
|
+
|
29
|
+
- don't add BUNDLED WITH to the lock when Spring runs `check` over and over (@indirect)
|
30
|
+
|
31
|
+
Bugfixes:
|
32
|
+
|
33
|
+
- display "with native extensions" log output correctly (@ivantsepp)
|
34
|
+
- alias `i` to `install`, `c` to `check`, and `e` to `exec` (@indirect)
|
35
|
+
|
36
|
+
## 1.10.3 (2015-06-03)
|
37
|
+
|
38
|
+
Bugfixes:
|
39
|
+
|
40
|
+
- allow missing gemspec files when validating path and git gems (#3686, #3698, @segiddins)
|
41
|
+
- fix regression in `rake install` (#3701, #3705, @segiddins)
|
42
|
+
- fix regression when calling `gem` with `bundle exec` or `-rbundler/setup` (#3699, @segiddins)
|
43
|
+
- fix `bundler/inline` requiring a newly-installed gem (#3693, @indirect, @segiddins)
|
44
|
+
|
45
|
+
## 1.10.2 (2015-05-29)
|
46
|
+
|
47
|
+
Bugfixes:
|
48
|
+
|
49
|
+
- fix regression in `bundle update GEM` performance introduced in 1.10.0 (#3687, @segiddins)
|
50
|
+
|
51
|
+
## 1.10.1 (2015-05-28)
|
52
|
+
|
53
|
+
Bugfixes:
|
54
|
+
|
55
|
+
- silence ruby warning when running CLI commands (@segiddins)
|
56
|
+
- validate gemspecs in non-packaging mode (#3681, @segiddins)
|
57
|
+
- ensure the same chdir mutex as RubyGems is used (#3680, @segiddins)
|
58
|
+
|
59
|
+
## 1.10.0 (2015-05-28)
|
60
|
+
|
61
|
+
(this space intentionally left blank)
|
62
|
+
|
63
|
+
## 1.10.0.rc (2015-05-16)
|
64
|
+
|
65
|
+
Features:
|
66
|
+
|
67
|
+
- dramatically speed up resolving some slow Gemfiles (#3635, @segiddins)
|
68
|
+
- track CI platforms running Bundler (#3646, @fotanus)
|
69
|
+
|
70
|
+
Bugfixes:
|
71
|
+
|
72
|
+
- allow `viz` to work with prereleases (#3621, #3217, @aprescott)
|
73
|
+
- validate gemspecs used in path and git gems (#3639, @segiddins, @indirect)
|
74
|
+
- stop printing config warnings when config is unchanged (#3649, @fotanus, @indirect)
|
75
|
+
|
76
|
+
## 1.10.0.pre.2 (2015-05-07)
|
77
|
+
|
78
|
+
Bugfixes:
|
79
|
+
|
80
|
+
- make BUNDLED WITH backwards compatible (#3623, @segiddins)
|
81
|
+
|
82
|
+
## 1.10.0.pre.1 (2015-05-05)
|
83
|
+
|
84
|
+
Bugfixes:
|
85
|
+
|
86
|
+
- always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
|
87
|
+
|
88
|
+
## 1.10.0.pre (2015-05-03)
|
89
|
+
|
90
|
+
Features:
|
91
|
+
|
92
|
+
- support gem extensions built into any directory on RubyGems 2.2+ (#3582, @voxik)
|
93
|
+
- add 'bundler/inline' which provides a `gemfile` method (#3440, @segiddins)
|
94
|
+
- improved error reports for Gemfile errors (#3480, @segiddins)
|
95
|
+
- `lock` command (#3437, @segiddins)
|
96
|
+
- add `ignore_messages` config to suppress post-install text (#3510, @pducks32)
|
97
|
+
- improve `gem` minitest template (#3513, #3515, @arthurnn)
|
98
|
+
- add `install --force` to re-install installed gems (#3519, @segiddins)
|
99
|
+
- show more `outdated` information, including groups (@smlance, @indirect)
|
100
|
+
- add optional groups to the Gemfile (#3531, @jhass)
|
101
|
+
- accept glob argument to `gemspec` in Gemfile (#3464, @pjump)
|
102
|
+
- make timeouts and retries configurable via `config` (#3601, @pducks32)
|
103
|
+
- add `install_if` Gemfile method for conditional installs (#3611, @segiddins)
|
104
|
+
|
105
|
+
Bugfixes:
|
106
|
+
|
107
|
+
- standalone mode now uses builtin gems correctly (#3610, @segiddins)
|
108
|
+
- fix `rake spec:deps` on MinGW Ruby 2.0+ (#3487, @marutosi)
|
109
|
+
- remember all y/n answers when generating gems (#3579, @pducks32)
|
110
|
+
|
111
|
+
Performance:
|
112
|
+
|
113
|
+
- use RubyGems stub specifications when possible (#3580, @segiddins)
|
114
|
+
|
115
|
+
Deprecations:
|
116
|
+
|
117
|
+
- deprecated the (never enabled) `bundle_ruby` binary (@smlance)
|
118
|
+
|
119
|
+
## 1.9.10 (2015-06-22)
|
120
|
+
|
121
|
+
Features:
|
122
|
+
|
123
|
+
- the `BUNDLED WITH` section of lockfiles generated by 1.10+ will be preserved (@segiddins)
|
124
|
+
|
125
|
+
## 1.9.9 (2015-05-16)
|
126
|
+
|
127
|
+
Bugfixes:
|
128
|
+
|
129
|
+
- read mirror and credential settings from older versions (#3557, @Strech)
|
130
|
+
|
131
|
+
## 1.9.8 (2015-05-12)
|
132
|
+
|
133
|
+
Bugfixes:
|
134
|
+
|
135
|
+
- fix regression in sudo mode introduced by 1.9.7 (#3642, @segiddins)
|
136
|
+
|
137
|
+
## 1.9.7 (2015-05-11)
|
138
|
+
|
139
|
+
Bugfixes:
|
140
|
+
|
141
|
+
- always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
|
142
|
+
|
143
|
+
## 1.9.6 (2015-05-02)
|
144
|
+
|
145
|
+
Bugfixes:
|
146
|
+
|
147
|
+
- use RubyGems spec stubs if available (@segiddins)
|
148
|
+
- allow creating gems with names containing two dashes (#3483, @janlelis)
|
149
|
+
- allow creating gems with names extending constants (#3603, @amatsuda)
|
150
|
+
|
151
|
+
## 1.9.5 (2015-04-29)
|
152
|
+
|
153
|
+
Bugfixes:
|
154
|
+
|
155
|
+
- respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
|
156
|
+
|
157
|
+
## 1.9.4 (2015-04-13)
|
158
|
+
|
159
|
+
Bugfixes:
|
160
|
+
|
161
|
+
- fix regression in installing x86 and universal gems (#3565, @jdmundrawala)
|
162
|
+
- improve error when gems are missing (#3564, @sealocal)
|
163
|
+
|
164
|
+
## 1.9.3 (2015-04-12)
|
165
|
+
|
166
|
+
Bugfixes:
|
167
|
+
|
168
|
+
- handle removal of `specs` from rubygems/rubygems@620910 (#3558, @indirect)
|
169
|
+
- install 'universal' gems on Windows (#3066, @jdmundrawala)
|
170
|
+
- stop passing --local during `rake install` task (#3236, @indirect)
|
171
|
+
- guard against all possible accidental public gem pushes (#3533, @indirect)
|
172
|
+
|
173
|
+
## 1.9.2 (2015-03-30)
|
174
|
+
|
175
|
+
Bugfixes:
|
176
|
+
|
177
|
+
- ensure gem executables are executable (#3517, #3511, @indirect)
|
178
|
+
- fix warnings in Molinillo (#3516, @segiddins)
|
179
|
+
- ensure duplicate dependencies do not propagate (#3522, @segiddins)
|
180
|
+
- keep gems locked when updating another gem from the same source (#3520, @indirect)
|
181
|
+
- resolve race that could build gems without saved arguments (#3404, @indirect)
|
182
|
+
|
183
|
+
## 1.9.1 (2015-03-21)
|
184
|
+
|
185
|
+
Bugfixes:
|
186
|
+
|
187
|
+
- avoid exception in 'bundler/gem_tasks' (#3492, @segiddins)
|
188
|
+
|
189
|
+
## 1.9.0 (2015-03-20)
|
190
|
+
|
191
|
+
## 1.9.0.rc (2015-03-13)
|
192
|
+
|
193
|
+
Bugfixes:
|
194
|
+
|
195
|
+
- make Bundler.which stop finding directories (@nohoho)
|
196
|
+
- handle Bundler prereleases correctly (#3470, @segiddins)
|
197
|
+
- add before_install to .travis.yml template for new gems (@kodnin)
|
198
|
+
|
199
|
+
## 1.9.0.pre.1 (2015-03-11)
|
200
|
+
|
201
|
+
Bugfixes:
|
202
|
+
|
203
|
+
- make `gem` command work again (@arthurnn)
|
204
|
+
|
205
|
+
## 1.9.0.pre (2015-03-11)
|
206
|
+
|
207
|
+
Features:
|
208
|
+
|
209
|
+
- prefer gemspecs closest to the directory root (#3428, @segiddins)
|
210
|
+
- debug log for API request limits (#3452, @neerfri)
|
211
|
+
|
212
|
+
"Features":
|
213
|
+
|
214
|
+
- Molinillo resolver, shared with CocoaPods (@segiddins)
|
215
|
+
- updated Thor to v0.19.1 (@segiddins)
|
216
|
+
|
217
|
+
## 1.8.9 (2015-05-02)
|
218
|
+
|
219
|
+
Bugfixes:
|
220
|
+
|
221
|
+
- Use RubyGems spec stubs if available (@segiddins)
|
222
|
+
|
223
|
+
## 1.8.8 (2015-04-29)
|
224
|
+
|
225
|
+
Bugfixes:
|
226
|
+
|
227
|
+
- Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
|
228
|
+
|
229
|
+
## 1.8.7 (2015-04-07)
|
230
|
+
|
231
|
+
Bugfixes:
|
232
|
+
|
233
|
+
- stop suppressing errors inside gems that get required (#3549, @indirect)
|
234
|
+
|
235
|
+
## 1.8.6 (2015-03-30)
|
236
|
+
|
237
|
+
Bugfixes:
|
238
|
+
|
239
|
+
- keep gems locked when updating another gem from the same source (#3250, @indirect)
|
240
|
+
- resolve race that could build gems without saved arguments (#3404, @indirect)
|
241
|
+
|
242
|
+
## 1.8.5 (2015-03-11)
|
243
|
+
|
244
|
+
Bugfixes:
|
245
|
+
|
246
|
+
- remove MIT license from gemspec when removing license file (@indirect)
|
247
|
+
- respect 'no' immediately as well as saving it in `gem` config (@kirs)
|
248
|
+
|
249
|
+
## 1.8.4 (2015-03-05)
|
250
|
+
|
251
|
+
Bugfixes:
|
252
|
+
|
253
|
+
- document --all-platforms option (#3449, @moeffju)
|
254
|
+
- find gems from all sources on exec after install (#3450, @TimMoore)
|
255
|
+
|
256
|
+
## 1.8.3 (2015-02-24)
|
257
|
+
|
258
|
+
Bugfixes:
|
259
|
+
|
260
|
+
- handle boolean values for gem settings (@EduardoBautista)
|
261
|
+
- stop always looking for updated `path` gems (#3414, #3417, #3429, @TimMoore)
|
262
|
+
|
263
|
+
## 1.8.2 (2015-02-14)
|
264
|
+
|
265
|
+
Bugfixes:
|
266
|
+
|
267
|
+
- allow config settings for gems with 'http' in the name again (#3398, @TimMoore)
|
268
|
+
|
269
|
+
## 1.8.1 (2015-02-13)
|
270
|
+
|
271
|
+
Bugfixes:
|
272
|
+
|
273
|
+
- synchronize building git gem native extensions (#3385, @antifuchs & @indirect)
|
274
|
+
- set gemspec bindir correctly (#3392, @TimMoore)
|
275
|
+
- request lockfile deletion when it is malformed (#3396, @indirect)
|
276
|
+
- explain problem when mirror config is missing (#3386, @indirect)
|
277
|
+
- explain problem when caching causes permission error (#3390, @indirect)
|
278
|
+
- normalize URLs in config keys (#3391, @indirect)
|
279
|
+
|
280
|
+
## 1.8.0 (2015-02-10)
|
281
|
+
|
282
|
+
Bugfixes:
|
283
|
+
|
284
|
+
- gemfile `github` blocks now work (#3379, @indirect)
|
285
|
+
|
286
|
+
Bugfixes from v1.7.13:
|
287
|
+
|
288
|
+
- look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
|
289
|
+
- look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
|
290
|
+
- request dependencies for no more than 100 gems at a time (#3367, @segiddins)
|
291
|
+
|
292
|
+
## 1.8.0.rc (2015-01-26)
|
293
|
+
|
294
|
+
Features:
|
295
|
+
|
296
|
+
- add `config disable_multisource` option to ensure sources can't compete (@indirect)
|
297
|
+
|
298
|
+
Bugfixes:
|
299
|
+
|
300
|
+
- don't add extra quotes around long, quoted config values (@aroben, #3338)
|
301
|
+
|
302
|
+
Security:
|
303
|
+
|
304
|
+
- warn when more than one top-level source is present (@indirect)
|
305
|
+
|
306
|
+
## 1.8.0.pre (2015-01-26)
|
307
|
+
|
308
|
+
Features:
|
309
|
+
|
310
|
+
- add metadata allowed_push_host to new gem template (#3002, @juanitofatas)
|
311
|
+
- adds a `--no-install` flag to `bundle package` (@d-reinhold)
|
312
|
+
- add `bundle config auto_install true` to install automatically (@smashwilson)
|
313
|
+
- add `bundle viz --without` to exclude gem groups from resulting graph (@fnichol)
|
314
|
+
- prevent whitespace in gem declarations with clear messaging (@benlakey)
|
315
|
+
- tries to find a `bundler-<command>` executable on your path for non-bundler commands (@andremedeiros)
|
316
|
+
- tries to find `gems.rb` and it's new counterpart, `gems.locked` (@andremedeiros)
|
317
|
+
- change the initial version of new gems from `0.0.1` to `0.1.0` (@petedmarsh)
|
318
|
+
- add `package --all-platforms` to cache gems for each known platform (@ccutrer)
|
319
|
+
- speed up `exec` when running commands on the $PATH (@kirs)
|
320
|
+
- add gem code of conduct file and option (@kirs)
|
321
|
+
- add config settings for gem license and tests (@kirs)
|
322
|
+
- add `bin/setup` and `bin/console` to new gems (@indirect)
|
323
|
+
- include configured user-agent in network requests (@indirect)
|
324
|
+
- support `github`, `gist`, and `bitbucket` options on git gems (@indirect)
|
325
|
+
- add `package --cache-path` and `config cache_path` for cache location (@jnraine)
|
326
|
+
- allow `config` to work even when a Gemfile is not present (@dholdren)
|
327
|
+
- add `config gemfile /path` for other Gemfile locations (@dholdren)
|
328
|
+
- add `github` method alonside the `git` method (@BenMorganIO)
|
329
|
+
|
330
|
+
Bugfixes:
|
331
|
+
|
332
|
+
- reduce memory usage with threaded parallel workers (@Who828)
|
333
|
+
- support read-only git gems (@pmahoney)
|
334
|
+
- various resolver performance improvements (@dubek)
|
335
|
+
- untaint git gem paths for Rubygems compatibility (@tdtds)
|
336
|
+
|
337
|
+
Documentation:
|
338
|
+
|
339
|
+
- add missing Gemfile global `path` explanation (@agenteo)
|
340
|
+
|
341
|
+
## 1.7.15 (2015-04-29)
|
342
|
+
|
343
|
+
Bugfixes:
|
344
|
+
|
345
|
+
- Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
|
346
|
+
|
347
|
+
## 1.7.14 (2015-03-30)
|
348
|
+
|
349
|
+
Bugfixes:
|
350
|
+
|
351
|
+
- Keep gems locked when updating another gem from the same source (#3250, @indirect)
|
352
|
+
- Don't add extra quotes around long, quoted config values (@aroben, #3338)
|
353
|
+
|
354
|
+
## 1.7.13 (2015-02-07)
|
355
|
+
|
356
|
+
Bugfixes:
|
357
|
+
|
358
|
+
- Look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
|
359
|
+
- Look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
|
360
|
+
- Request dependencies for no more than 100 gems at a time (#3367, @segiddins)
|
361
|
+
|
362
|
+
## 1.7.12 (2015-01-08)
|
363
|
+
|
364
|
+
Bugfixes:
|
365
|
+
|
366
|
+
- Always send credentials for sources, fixing private Gemfury gems (#3342, @TimMoore)
|
367
|
+
|
368
|
+
## 1.7.11 (2015-01-04)
|
369
|
+
|
370
|
+
Bugfixes:
|
371
|
+
|
372
|
+
- Recognize `:mri_22` and `:mingw_22`, rather than just `:ruby_22` (#3328, @myabc)
|
373
|
+
|
374
|
+
## 1.7.10 (2014-12-29)
|
375
|
+
|
376
|
+
Bugfixes:
|
377
|
+
|
378
|
+
- Fix source blocks sometimes causing deployment mode to fail wrongly (#3298, @TimMoore)
|
379
|
+
|
380
|
+
Features(?):
|
381
|
+
|
382
|
+
- Support `platform :mri_22` and related version bits (#3309, @thomasfedb)
|
383
|
+
|
384
|
+
## 1.7.9 (2014-12-09)
|
385
|
+
|
386
|
+
Bugfixes:
|
387
|
+
|
388
|
+
- Fix an issue where bundler sometime spams one gem in Gemfile.lock (#3216, @Who828)
|
389
|
+
- Ensure bundle update installs the newer version of the gem (#3089, @Who828)
|
390
|
+
- Fix an regression which stopped Bundler from resolving some Gemfiles (#3059, #3248, @Who828)
|
391
|
+
|
392
|
+
## 1.7.8 (2014-12-06)
|
393
|
+
|
394
|
+
Bugfixes:
|
395
|
+
|
396
|
+
- Hide credentials while warning about gems with ambiguous sources (#3256, @TimMoore)
|
397
|
+
|
398
|
+
## 1.7.7 (2014-11-19)
|
399
|
+
|
400
|
+
Bugfixes:
|
401
|
+
|
402
|
+
- Ensure server credentials stored in config or ENV will be used (#3180, @arronmabrey)
|
403
|
+
- Fix race condition causing errors while installing git-based gems (#3174, @Who828)
|
404
|
+
- Use single quotes in config so YAML won't add more quotes (#3261, @indirect)
|
405
|
+
|
406
|
+
## 1.7.6 (2014-11-11)
|
407
|
+
|
408
|
+
Bugfixes:
|
409
|
+
|
410
|
+
- CA certificates that work with all OpenSSLs (@luislavena, @indirect)
|
411
|
+
|
412
|
+
## 1.7.5 (2014-11-10)
|
413
|
+
|
414
|
+
Bugfixes:
|
415
|
+
|
416
|
+
- Fix --deployment with source blocks and non-alphabetical gems (#3224, @TimMoore)
|
417
|
+
- Vendor CA chain to validate new rubygems.org HTTPS certificate (@indirect)
|
418
|
+
|
419
|
+
## 1.7.4 (2014-10-19)
|
420
|
+
|
421
|
+
Bugfixes:
|
422
|
+
|
423
|
+
- Allow --deployment after `pack` while using source blocks (#3167, @TimMoore)
|
424
|
+
- Use dependency API even when HTTP credentials are in ENV (#3191, @fvaleur)
|
425
|
+
- Silence warnings (including root warning) in --quiet mode (#3186, @indirect)
|
426
|
+
- Stop asking gem servers for gems already found locally (#2909, @dubek)
|
427
|
+
|
428
|
+
## 1.7.3 (2014-09-14)
|
429
|
+
|
430
|
+
Bugfixes:
|
431
|
+
|
432
|
+
- `extconf.rb` is now generated with the right path for `create_makefile` (@andremedeiros)
|
433
|
+
- Fix various Ruby warnings (@piotrsanarki, @indirect)
|
434
|
+
|
435
|
+
## 1.7.2 (2014-08-23)
|
436
|
+
|
437
|
+
Bugfixes:
|
438
|
+
|
439
|
+
- Revert gem source sorting in lock files (@indirect)
|
440
|
+
|
441
|
+
## 1.7.1 (2014-08-20)
|
442
|
+
|
443
|
+
Bugfixes:
|
444
|
+
|
445
|
+
- Install gems from one source needed by gems in another source (@indirect)
|
446
|
+
- Install the same gem versions even after some are installed (@TimMoore)
|
447
|
+
- Download specs only when installing from servers (@indirect)
|
448
|
+
|
449
|
+
## 1.7.0 (2014-08-13)
|
450
|
+
|
451
|
+
Security:
|
452
|
+
|
453
|
+
- Fix for CVE-2013-0334, installing gems from an unexpected source (@TimMoore)
|
454
|
+
|
455
|
+
Features:
|
456
|
+
|
457
|
+
- Gemfile `source` calls now take a block containing gems from that source (@TimMoore)
|
458
|
+
- Added the `:source` option to `gem` to specify a source (@TimMoore)
|
459
|
+
|
460
|
+
Bugfixes:
|
461
|
+
|
462
|
+
- Warn on ambiguous gems available from more than one source (@TimMoore)
|
463
|
+
|
464
|
+
## 1.6.7 (2014-10-19)
|
465
|
+
|
466
|
+
Features:
|
467
|
+
|
468
|
+
- warn to upgrade when using useless source blocks (@danfinnie)
|
469
|
+
|
470
|
+
Documentation:
|
471
|
+
|
472
|
+
- explain how to use gem server credentials via ENV (@hwartig)
|
473
|
+
|
474
|
+
## 1.6.6 (2014-08-23)
|
475
|
+
|
476
|
+
Bugfixes:
|
477
|
+
|
478
|
+
- restore Gemfile credentials to Gemfile.lock (@indirect)
|
479
|
+
|
480
|
+
## 1.6.5 (2014-07-23)
|
481
|
+
|
482
|
+
Bugfixes:
|
483
|
+
|
484
|
+
- require openssl explicitly to fix rare HTTPS request failures (@indirect, #3107)
|
485
|
+
|
486
|
+
## 1.6.4 (2014-07-17)
|
487
|
+
|
488
|
+
Bugfixes:
|
489
|
+
|
490
|
+
- fix undefined constant error when can't find gem during binstubs (#3095, @jetaggart)
|
491
|
+
- work when installed git gems are not writable (#3092, @pmahoney)
|
492
|
+
- don't store configured source credentials in Gemfile.lock (#3045, @lhz)
|
493
|
+
- don't include config source credentials in the lockfile (Lars Haugseth)
|
494
|
+
- use threads for jobs on Rubinius (@YorickPeterse)
|
495
|
+
- skip dependencies from other platforms (@mvz)
|
496
|
+
- work when Rubygems was built without SSL (@andremedeiros)
|
497
|
+
|
498
|
+
## 1.6.3 (2014-06-16)
|
499
|
+
|
500
|
+
Bugfixes:
|
501
|
+
|
502
|
+
- fix regression when resolving many conflicts (#2994, @Who828)
|
503
|
+
- use local gemspec for builtin gems during install --local (#3041, @Who828)
|
504
|
+
- don't warn about sudo when installing on Windows (#2984, @indirect)
|
505
|
+
- shell escape `bundle open` arguments (@indirect)
|
506
|
+
|
507
|
+
## 1.6.2 (2014-04-13)
|
508
|
+
|
509
|
+
Bugfixes:
|
510
|
+
|
511
|
+
- fix an exception when using builtin gems (#2915, #2963, @gnufied)
|
512
|
+
- cache gems that are built in to the running ruby (#2975, @indirect)
|
513
|
+
- re-allow deploying cached git gems without git installed (#2968, @aughr)
|
514
|
+
- keep standalone working even with builtin gems (@indirect)
|
515
|
+
- don't update vendor/cache in deployment mode (#2921, @indirect)
|
516
|
+
|
517
|
+
Features:
|
518
|
+
|
519
|
+
- warn informatively when `bundle install` is run as root (#2936, @1337807)
|
520
|
+
|
521
|
+
## 1.6.1 (2014-04-02)
|
522
|
+
|
523
|
+
Bugfixes:
|
524
|
+
|
525
|
+
- update C extensions when git gem versions change (#2948, @dylanahsmith)
|
526
|
+
|
527
|
+
Features:
|
528
|
+
|
529
|
+
- add support for C extensions in sudo mode on Rubygems 2.2
|
530
|
+
|
531
|
+
## 1.6.0 (2014-03-28)
|
532
|
+
|
533
|
+
Bugfixes:
|
534
|
+
|
535
|
+
- many Gemfiles that caused incorrect errors now resolve correctly (@Who828)
|
536
|
+
- redirects across hosts now work on rubies without OpenSSL (#2686, @grddev)
|
537
|
+
- gemspecs now handle filenames with newlines (#2634, @jasonmp85)
|
538
|
+
- support escaped characters in usernames and passwords (@punkie)
|
539
|
+
- no more exception on `update GEM` without lock file (@simi)
|
540
|
+
- allow long config values (#2823, @kgrz)
|
541
|
+
- cache successfully even locked to gems shipped with Ruby (#2869, @aughr)
|
542
|
+
- respect NO_PROXY even if a proxy is configured (#2878, @stlay)
|
543
|
+
- only retry git commands that hit the network (#2899, @timmoore)
|
544
|
+
- fix NameError regression when OpenSSL is not available (#2898, @timmoore)
|
545
|
+
- handle exception installing when build_info owned by root (@Who828)
|
546
|
+
- skip HTTP redirects from rubygems.org, huge speed boost (@Who828)
|
547
|
+
|
548
|
+
Features:
|
549
|
+
|
550
|
+
- resolver rewritten to avoid recursion (@Who828)
|
551
|
+
- add `git_source` for custom options like :github and :gist (@strzalek)
|
552
|
+
- HTTP auth may now be stored in `bundle config` (@smashwilson)
|
553
|
+
- some complex Gemfiles are resolved up to 10x faster (@Who828)
|
554
|
+
- add support for IRB alternatives such as Pry and Ripl (@joallard, @postmodern)
|
555
|
+
- highlight installed or updated gems (#2722, #2741, @yaotti, @simi)
|
556
|
+
- display the `post_install_message` for gems installed via :git (@phallstrom)
|
557
|
+
- `bundle outdated --strict` now only reports allowed updates (@davidblondeau)
|
558
|
+
- `bundle show --verbose` Add gem summary to the output (@lardcanoe)
|
559
|
+
- `bundle gem GEM --ext` now generates a skeleton for a C extension (@superdealloc)
|
560
|
+
- Avoid using threequals operator where possible (@as-cii)
|
561
|
+
- Add `bundle update --group` to update specific group (#2731 @banyan)
|
562
|
+
|
563
|
+
Documentation:
|
564
|
+
|
565
|
+
- Add missing switches for bundle-install(1) and bundle-update(1) (@as-cii)
|
566
|
+
|
567
|
+
## 1.5.3 (2014-02-06)
|
568
|
+
|
569
|
+
Bugfixes:
|
570
|
+
|
571
|
+
- find "missing" gems that are actually present (#2780, #2818, #2854)
|
572
|
+
- use n-1 cores when given n jobs for parallel install (@jdickey)
|
573
|
+
|
574
|
+
## 1.5.2 (2014-01-10)
|
575
|
+
|
576
|
+
Bugfixes:
|
577
|
+
|
578
|
+
- fix integration with Rubygems 1.8.0-1.8.19
|
579
|
+
- handle ENETDOWN exception during network requests
|
580
|
+
- gracefully shut down after interrupt during parallel install (@Who828)
|
581
|
+
- allow Rails to run Thor without debug mode (@rafaelfranca)
|
582
|
+
- set git binstub permissions by umask (@v-yarotsky)
|
583
|
+
- remove parallel install debug log
|
584
|
+
|
585
|
+
## 1.5.1 (2013-12-28)
|
586
|
+
|
587
|
+
Bugfixes:
|
588
|
+
|
589
|
+
- correctly find gems installed with Ruby by default
|
590
|
+
|
591
|
+
## 1.5.0 (2013-12-26)
|
592
|
+
|
593
|
+
Features:
|
594
|
+
|
595
|
+
- install missing gems if their specs are present (@hone)
|
596
|
+
|
597
|
+
Bugfixes:
|
598
|
+
|
599
|
+
- use print for "Installing…" so messages are thread-safe (@TimMoore)
|
600
|
+
|
601
|
+
## 1.5.0.rc.2 (2013-12-18)
|
602
|
+
|
603
|
+
"Features":
|
604
|
+
|
605
|
+
- Support threaded installation on Rubygems 2.0.7+
|
606
|
+
- Debug installation logs in .bundle/install.log
|
607
|
+
|
608
|
+
"Bugfixes":
|
609
|
+
|
610
|
+
- Try to catch gem installation race conditions
|
611
|
+
|
612
|
+
## 1.5.0.rc.1 (2013-11-09)
|
613
|
+
|
614
|
+
Features:
|
615
|
+
|
616
|
+
- bundle update also accepts --jobs (#2692, @mrkn)
|
617
|
+
- add fork URL to README for new `bundle gem` (#2665, @zzak)
|
618
|
+
- add `bundle outdated --strict` (#2685, @davidblondeau)
|
619
|
+
- warn if same gem/version is added twice (#2679, @jendiamond)
|
620
|
+
- don't redownload installed specs for `bundle install` (#2680, @cainlevy)
|
621
|
+
- override gem sources with mirrors (#2650, @danielsdeleo, @mkristian)
|
622
|
+
|
623
|
+
Bugfixes:
|
624
|
+
|
625
|
+
- fix sharing same SSL socket when forking workers for parallel install (#2632)
|
626
|
+
- fix msg typo in GitNotAllowedError (#2654, @joyicecloud)
|
627
|
+
- fix Bundler.which for directories (#2697, @rhysd)
|
628
|
+
- properly require `Capistrano::Version` (#2690, @steveklabnik)
|
629
|
+
- search for git.exe and git
|
630
|
+
- fix the bug that downloads every spec when API fetcher encouters an error
|
631
|
+
- only retry network requests
|
632
|
+
|
633
|
+
## 1.4.0.rc.1 (2013-09-29)
|
634
|
+
|
635
|
+
Features:
|
636
|
+
|
637
|
+
- add support for the x64-mingw32 platform (#2356, #2590, @larskanis)
|
638
|
+
- add :patchlevel option to ruby DSL
|
639
|
+
- add `bundler` bin (#2598, @kirs)
|
640
|
+
- friendly ambiguous error messages (#2581, #2550, @jlsuttles, @jendiamond, @joyicecloud)
|
641
|
+
- add `:jruby_18` and `:jruby_19` platform options (@mcfiredrill)
|
642
|
+
- add X.509 client certificates for auth without passwords (@snackbandit)
|
643
|
+
- add `exec --keep-file-descriptors` for Ruby 1.9-like behavior on 2.0 (@steved555)
|
644
|
+
- print a better error when git is not installed (@joyicecloud)
|
645
|
+
- exit non-zero when `outdated` is run with an unknown gem (@joyicecloud)
|
646
|
+
- add `:ruby_21` platform option (@brandonblack)
|
647
|
+
- add `--retry` to retry failed network and git commands (@schneems)
|
648
|
+
- include command and versions in User-Agent (@indirect, @joyicecloud)
|
649
|
+
|
650
|
+
Bugfixes:
|
651
|
+
|
652
|
+
- allow passwordless Basic Auth (#2606, @rykov)
|
653
|
+
- don't suggest `gem install foo` when `foo` is a git gem that fails (@kirs)
|
654
|
+
- revert #2569, staying compatible with git: instead of https: for :github gems
|
655
|
+
- handle exceptions while installing gems in parallel (@gnufied)
|
656
|
+
|
657
|
+
## 1.4.0.pre.1 (2013-08-04)
|
658
|
+
|
659
|
+
Features:
|
660
|
+
|
661
|
+
- retry network requests while installing gems (#2561, @ascherger)
|
662
|
+
- faster installs using gemspecs from the local system cache (#2497, @mipearson)
|
663
|
+
- add `bundle install -jN` for N parallel gem installations (#2481, @eagletmt)
|
664
|
+
- add `ENV['DEBUG_RESOLVER_TREE']` outputs resolver tree (@dblock)
|
665
|
+
- set $MANPATH so `bundle exec man name` works (#1624, @sunaku)
|
666
|
+
- use `man` instead of `groff` (#2579, @ixti, @simi)
|
667
|
+
- add Gemfile dependency info to bundle outdated output (#2487, @rahearn)
|
668
|
+
- allow `require: true` as an alias for `require: <name>` (#2538, @ndbroadbent)
|
669
|
+
- rescue and report Thor errors (#2478, @pjvds)
|
670
|
+
- detect cyclic dependencies (#2564, @gnufied)
|
671
|
+
- support multiple gems in `binstubs` (#2576, @lucasmazza)
|
672
|
+
- use https instead of git for :github gems (#2569, @fuadsaud)
|
673
|
+
- add quiet option to `bundle package` (#2573, @shtirlic)
|
674
|
+
- use RUBYLIB instead of RUBYOPT for better Windows support (#2536, @equinux)
|
675
|
+
|
676
|
+
Bugfixes:
|
677
|
+
|
678
|
+
- reduce stack size while resolving to fix JRuby overflow (#2510, @headius)
|
679
|
+
- display GitErrors while loading specs in --verbose mode (#2461)
|
680
|
+
- allow the same options hash to be passed to multiple gems (#2447)
|
681
|
+
- handle missing binaries without an exception (#2019, @luismreis)
|
682
|
+
|
683
|
+
## 1.3.6 (8 January 2014)
|
684
|
+
|
685
|
+
Bugfixes:
|
686
|
+
|
687
|
+
- make gemspec path option preserve relative paths in lock file (@bwillis)
|
688
|
+
- use umask when creating binstubs (#1618, @v-yarotsky)
|
689
|
+
- warn if graphviz is not installed (#2435, @Agis-)
|
690
|
+
- show git errors while loading gemspecs
|
691
|
+
- don't mutate gem method options hash (#2447)
|
692
|
+
- print Thor errors (#2478, @pjvds)
|
693
|
+
- print Rubygems system exit errors (James Cook)
|
694
|
+
- more Pathnames into Strings for MacRuby (@kml)
|
695
|
+
- preserve original gemspec path (@bwillis)
|
696
|
+
- remove warning about deps with :git (#1651, @ixti)
|
697
|
+
- split git files on null (#2634, @jasonmp85)
|
698
|
+
- handle cross-host redirects without SSL (#2686, @grddev)
|
699
|
+
- handle Rubygems 2 security exception (@zzak)
|
700
|
+
- reinstall gems if they are missing with spec present
|
701
|
+
- set binstub permissions using umask (#1618, @v-yarotsky)
|
702
|
+
|
703
|
+
## 1.3.5 (3 April 2013)
|
704
|
+
|
705
|
+
Features:
|
706
|
+
|
707
|
+
- progress indicator while resolver is running (@chief)
|
708
|
+
|
709
|
+
Bugfixes:
|
710
|
+
|
711
|
+
- update local overrides with orphaned revisions (@jamesferguson)
|
712
|
+
- revert to working quoting of RUBYOPT on Windows (@ogra)
|
713
|
+
- use basic auth even when SSL is not available (@jayniz)
|
714
|
+
- installing git gems without dependencies in deployment now works
|
715
|
+
|
716
|
+
## 1.3.4 (15 March 2013)
|
717
|
+
|
718
|
+
Bugfixes:
|
719
|
+
|
720
|
+
- load YAML on Rubygems versions that define module YAML
|
721
|
+
- fix regression that broke --without on ruby 1.8.7
|
722
|
+
|
723
|
+
## 1.3.3 (13 March 2013)
|
724
|
+
|
725
|
+
Features:
|
726
|
+
|
727
|
+
- compatible with Rubygems 2.0.2 (higher and lower already work)
|
728
|
+
- mention skipped groups in bundle install and bundle update output (@simi)
|
729
|
+
- `gem` creates rake tasks for minitest (@coop) and rspec
|
730
|
+
|
731
|
+
Bugfixes:
|
732
|
+
|
733
|
+
- require rbconfig for standalone mode
|
734
|
+
|
735
|
+
## 1.3.2 (7 March 2013)
|
736
|
+
|
737
|
+
Features:
|
738
|
+
|
739
|
+
- include rubygems.org CA chain
|
740
|
+
|
741
|
+
Bugfixes:
|
742
|
+
|
743
|
+
- don't store --dry-run as a Bundler setting
|
744
|
+
|
745
|
+
## 1.3.1 (3 March 2013)
|
746
|
+
|
747
|
+
Bugfixes:
|
748
|
+
|
749
|
+
- include manpages in gem, restoring many help pages
|
750
|
+
- handle more SSL certificate verification failures
|
751
|
+
- check for the full version of SSL, which we need (@alup)
|
752
|
+
- gem rake task 'install' now depends on task 'build' (@sunaku)
|
753
|
+
|
754
|
+
## 1.3.0 (24 February 2013)
|
755
|
+
|
756
|
+
Features:
|
757
|
+
|
758
|
+
- raise a useful error when the lockfile contains a merge conflict (@zofrex)
|
759
|
+
- ensure `rake release` checks for uncommitted as well as unstaged (@benmoss)
|
760
|
+
- allow environment variables to be negated with 'false' and '0' (@brettporter)
|
761
|
+
- set $MANPATH inside `exec` for gems with man pages (@sunaku)
|
762
|
+
- partial gem names for `open` and `update` now return a list (@takkanm)
|
763
|
+
|
764
|
+
Bugfixes:
|
765
|
+
|
766
|
+
- `update` now (again) finds gems that aren't listed in the Gemfile
|
767
|
+
- `install` now (again) updates cached gems that aren't in the Gemfile
|
768
|
+
- install Gemfiles with HTTP sources even without OpenSSL present
|
769
|
+
- display CerficateFailureError message in full
|
770
|
+
|
771
|
+
## 1.3.0.pre.8 (12 February 2013)
|
772
|
+
|
773
|
+
Security:
|
774
|
+
|
775
|
+
- validate SSL certificate chain during HTTPS network requests
|
776
|
+
- don't send HTTP Basic Auth creds when redirected to other hosts (@perplexes)
|
777
|
+
- add `--trust-policy` to `install`, like `gem install -P` (@CosmicCat, #2293)
|
778
|
+
|
779
|
+
Features:
|
780
|
+
|
781
|
+
- optimize resolver when too new of a gem is already activated (@rykov, #2248)
|
782
|
+
- update Net::HTTP::Persistent for SSL cert validation and no_proxy ENV
|
783
|
+
- explain SSL cert validation failures
|
784
|
+
- generate gemspecs when installing git repos, removing shellouts
|
785
|
+
- add pager selection (@csgui)
|
786
|
+
- add `licenses` command (@bryanwoods, #1898)
|
787
|
+
- sort output from `outdated` (@richardkmichael, #1896)
|
788
|
+
- add a .travis.yml to `gem -t` (@ndbroadbent, #2143)
|
789
|
+
- inform users when the resolver starts
|
790
|
+
- disable reverse DNS to speed up API requests (@raggi)
|
791
|
+
|
792
|
+
Bugfixes:
|
793
|
+
|
794
|
+
- raise errors while requiring dashed gems (#1807)
|
795
|
+
- quote the Bundler path on Windows (@jgeiger, #1862, #1856)
|
796
|
+
- load gemspecs containing unicode (@gaffneyc, #2301)
|
797
|
+
- support any ruby version in --standalone
|
798
|
+
- resolve some ruby -w warnings (@chastell, #2193)
|
799
|
+
- don't scare users with an error message during API fallback
|
800
|
+
- `install --binstubs` is back to overwriting. thanks, SemVer.
|
801
|
+
|
802
|
+
## 1.3.0.pre.7 (22 January 2013)
|
803
|
+
|
804
|
+
Bugfixes:
|
805
|
+
|
806
|
+
- stubs for gems with dev deps no longer cause exceptions (#2272)
|
807
|
+
- don't suggest binstubs to --binstubs users
|
808
|
+
|
809
|
+
## 1.3.0.pre.6 (22 January 2013)
|
810
|
+
|
811
|
+
Features:
|
812
|
+
|
813
|
+
- `binstubs` lists child gem bins if a gem has no binstubs
|
814
|
+
- `bundle gem --edit` will open the new gemspec (@ndbroadbent)
|
815
|
+
- `bundle gem --test rspec` now makes working tests (@tricknotes)
|
816
|
+
- `bundle env` prints info about bundler's environment (@peeja)
|
817
|
+
- add `BUNDLE_IGNORE_CONFIG` environment variable support (@richo)
|
818
|
+
|
819
|
+
Bugfixes:
|
820
|
+
|
821
|
+
- don't overwrite custom binstubs during `install --binstubs`
|
822
|
+
- don't throw an exception if `binstubs` gem doesn't exist
|
823
|
+
- `bundle config` now works in directories without a Gemfile
|
824
|
+
|
825
|
+
## 1.3.0.pre.5 (Jan 9, 2013)
|
826
|
+
|
827
|
+
Features:
|
828
|
+
|
829
|
+
- make `--standalone` require lines ruby engine/version agnostic
|
830
|
+
- add `--dry-run` to `bundle clean` (@wfarr, #2237)
|
831
|
+
|
832
|
+
Bugfixes:
|
833
|
+
|
834
|
+
- don't skip writing binstubs when doing `bundle install`
|
835
|
+
- distinguish between ruby 1.9/2.0 when using :platforms (@spastorino)
|
836
|
+
|
837
|
+
## 1.3.0.pre.4 (Jan 3, 2013)
|
838
|
+
|
839
|
+
Features:
|
840
|
+
|
841
|
+
- `bundle binstubs <gem>` to setup individual binstubs
|
842
|
+
- `bundle install --binstubs ""` will remove binstubs option
|
843
|
+
- `bundle clean --dry-run` will print out gems instead of removing them
|
844
|
+
|
845
|
+
Bugfixes:
|
846
|
+
|
847
|
+
- Avoid stack traces when Ctrl+C during bundle command (@mitchellh)
|
848
|
+
- fix YAML parsing in in ruby-preview2
|
849
|
+
|
850
|
+
## 1.3.0.pre.3 (Dec 21, 2012)
|
851
|
+
|
852
|
+
Features:
|
853
|
+
|
854
|
+
- pushing gems during `rake release` can be disabled (@trans)
|
855
|
+
- installing gems with `rake install` is much faster (@utkarshkukreti)
|
856
|
+
- added platforms :ruby_20 and :mri_20, since the ABI has changed
|
857
|
+
- added '--edit' option to open generated gemspec in editor
|
858
|
+
|
859
|
+
Bugfixes:
|
860
|
+
|
861
|
+
- :git gems with extensions now work with Rubygems >= 2.0 (@jeremy)
|
862
|
+
- revert SemVer breaking change to :github
|
863
|
+
- `outdated` exits non-zero if outdated gems found (@rohit, #2021)
|
864
|
+
- https Gist URLs for compatibility with Gist 2.0 (@NARKOZ)
|
865
|
+
- namespaced gems no longer generate a superfluous directory (@banyan)
|
866
|
+
|
867
|
+
## 1.3.0.pre.2 (Dec 9, 2012)
|
868
|
+
|
869
|
+
Features:
|
870
|
+
|
871
|
+
- `config` expands local overrides like `local.rack .` (@gkop, #2205)
|
872
|
+
- `gem` generates files correctly for names like `jquery-rails` (@banyan, #2201)
|
873
|
+
- use gems from gists with the :gist option in the Gemfile (@jgaskins)
|
874
|
+
|
875
|
+
Bugfixes:
|
876
|
+
|
877
|
+
- Gemfile sources other than rubygems.org work even when .gemrc contains sources
|
878
|
+
- caching git gems now caches specs, fixing e.g. git ls-files (@bison, #2039)
|
879
|
+
- `show GEM` now warns if the directory has been deleted (@rohit, #2070)
|
880
|
+
- git output hidden when running in --quiet mode (@rohit)
|
881
|
+
|
882
|
+
## 1.3.0.pre (Nov 29, 2012)
|
883
|
+
|
884
|
+
Features:
|
885
|
+
|
886
|
+
- compatibile with Ruby 2.0.0-preview2
|
887
|
+
- compatibile with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
|
888
|
+
- ruby 2.0 added to the `:ruby19` ABI-compatible platform
|
889
|
+
- lazy load YAML, allowing Psych to be specified in the Gemfile
|
890
|
+
- significant performance improvements (@cheald, #2181)
|
891
|
+
- `inject` command for scripted Gemfile additions (Engine Yard)
|
892
|
+
- :github option uses slashless arguements as repo owner (@rking)
|
893
|
+
- `open` suggests gem names for typos (@jdelStrother)
|
894
|
+
- `update` reports non-existent gems (@jdelStrother)
|
895
|
+
- `gem` option --test can generate rspec stubs (@MafcoCinco)
|
896
|
+
- `gem` option --test can generate minitest stubs (@kcurtin)
|
897
|
+
- `gem` command generates MIT license (@BrentWheeldon)
|
898
|
+
- gem rake task 'release' resuses existing tags (@shtirlic)
|
899
|
+
|
900
|
+
Bugfixes:
|
901
|
+
|
902
|
+
- JRuby new works with HTTPS gem sources (@davidcelis)
|
903
|
+
- `install` installs both rake rake-built gems at once (@crowbot, #2107)
|
904
|
+
- handle Errno::ETIMEDOUT errors (@jmoses)
|
905
|
+
- handle Errno::EAGAIN errors on JRuby
|
906
|
+
- disable ANSI coloring when output is redirected (@tomykaira)
|
907
|
+
- raise LoadErrors correctly during Bundler.require (@Empact)
|
908
|
+
- do not swallow --verbose on `bundle exec` (@sol, #2102)
|
909
|
+
- `gem` generates gemspecs that block double-requires
|
910
|
+
- `gem` generates gemspecs that admit they depend on rake
|
911
|
+
|
912
|
+
## 1.2.5 (Feb 24, 2013)
|
913
|
+
|
914
|
+
Bugfixes:
|
915
|
+
|
916
|
+
- install Gemfiles with HTTP sources even without OpenSSL present
|
917
|
+
- display CerficateFailureError message in full
|
918
|
+
|
919
|
+
## 1.2.4 (Feb 12, 2013)
|
920
|
+
|
921
|
+
Features:
|
922
|
+
|
923
|
+
- warn about Ruby 2.0 and Rubygems 2.0
|
924
|
+
- inform users when the resolver starts
|
925
|
+
- disable reverse DNS to speed up API requests (@raggi)
|
926
|
+
|
927
|
+
Bugfixes:
|
928
|
+
|
929
|
+
- don't send user/pass when redirected to another host (@perplexes)
|
930
|
+
- load gemspecs containing unicode (@gaffneyc, #2301)
|
931
|
+
- support any ruby version in --standalone
|
932
|
+
- resolve some ruby -w warnings (@chastell, #2193)
|
933
|
+
- don't scare users with an error message during API fallback
|
934
|
+
|
935
|
+
## 1.2.3 (Nov 29, 2012)
|
936
|
+
|
937
|
+
Bugfixes:
|
938
|
+
|
939
|
+
- fix exceptions while loading some gemspecs
|
940
|
+
|
941
|
+
## 1.2.2 (Nov 14, 2012)
|
942
|
+
|
943
|
+
Bugfixes:
|
944
|
+
|
945
|
+
- support new Psych::SyntaxError for Ruby 2.0.0 (@tenderlove, @sol)
|
946
|
+
- `bundle viz` works with git gems again (@hirochachacha)
|
947
|
+
- recognize more cases when OpenSSL is not present
|
948
|
+
|
949
|
+
## 1.2.1 (Sep 19, 2012)
|
950
|
+
|
951
|
+
Bugfixes:
|
952
|
+
|
953
|
+
- `bundle clean` now works with BUNDLE_WITHOUT groups again
|
954
|
+
- have a net/http read timeout around the Gemcutter API Endpoint
|
955
|
+
|
956
|
+
## 1.2.0 (Aug 30, 2012)
|
957
|
+
|
958
|
+
Bugfixes:
|
959
|
+
|
960
|
+
- raise original error message from LoadError's
|
961
|
+
|
962
|
+
Documentation:
|
963
|
+
|
964
|
+
- `platform` man pages
|
965
|
+
|
966
|
+
## 1.2.0.rc.2 (Aug 8, 2012)
|
967
|
+
|
968
|
+
Bugfixes:
|
969
|
+
|
970
|
+
- `clean` doesn't remove gems that are included in the lockfile
|
971
|
+
|
972
|
+
## 1.2.0.rc (Jul 17, 2012)
|
973
|
+
|
974
|
+
Features:
|
975
|
+
|
976
|
+
- `check` now has a `--dry-run` option (@svenfuchs, #1811)
|
977
|
+
- loosen ruby directive for engines
|
978
|
+
- prune git/path directories inside vendor/cache (@josevalim, #1988)
|
979
|
+
- update vendored thor to 0.15.2 (@sferik)
|
980
|
+
- add .txt to LICENSE (@postmodern, #2001)
|
981
|
+
- add `config disable_local_branch_check` (@josevalim, #1985)
|
982
|
+
- fall back on the full index when experiencing syck errors (#1419)
|
983
|
+
- handle syntax errors in Ruby gemspecs (#1974)
|
984
|
+
|
985
|
+
Bugfixes:
|
986
|
+
|
987
|
+
- fix `pack`/`cache` with `--all` (@josevalim, #1989)
|
988
|
+
- don't display warning message when `cache_all` is set
|
989
|
+
- check for `nil` PATH (#2006)
|
990
|
+
- Always try to keep original GEM_PATH (@drogus, #1920)
|
991
|
+
|
992
|
+
## 1.2.0.pre.1 (May 27, 2012)
|
993
|
+
|
994
|
+
Features:
|
995
|
+
|
996
|
+
- Git gems import submodules of submodules recursively (@nwwatson, #1935)
|
997
|
+
|
998
|
+
Bugfixes:
|
999
|
+
|
1000
|
+
- Exit from `check` with a non-zero status when frozen with no lock
|
1001
|
+
- Use `latest_release` in Capistrano and Vlad integration (#1264)
|
1002
|
+
- Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
|
1003
|
+
|
1004
|
+
Documentation:
|
1005
|
+
|
1006
|
+
- Add instructions for local git repos to the `config` manpage
|
1007
|
+
- Update the `Gemfile` manpage to include ruby versions (@stevenh512)
|
1008
|
+
- When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
|
1009
|
+
- Unknown exceptions now link to ISSUES for help instead of a new ticket
|
1010
|
+
- Correct inline help for `clean --force` (@dougbarth, #1911)
|
1011
|
+
|
1012
|
+
## 1.2.0.pre (May 4, 2012)
|
1013
|
+
|
1014
|
+
Features:
|
1015
|
+
|
1016
|
+
- bundle package now accepts --all to package git and path dependencies
|
1017
|
+
- bundle config now accepts --local, --global and --delete options
|
1018
|
+
- It is possible to override a git repository via configuration.
|
1019
|
+
For instance, if you have a git dependency on rack, you can force
|
1020
|
+
it to use a local repo with `bundle config local.rack ~/path/to/rack`
|
1021
|
+
- Cache gemspec loads for performance (@dekellum, #1635)
|
1022
|
+
- add --full-index flag to `bundle update` (@fluxx, #1829)
|
1023
|
+
- add --quiet flag to `bundle update` (@nashby, #1654)
|
1024
|
+
- Add Bundler::GemHelper.gemspec (@knu, #1637)
|
1025
|
+
- Graceful handling of Gemfile syntax errors (@koraktor, #1661)
|
1026
|
+
- `bundle platform` command
|
1027
|
+
- add ruby to DSL, to specify version of ruby
|
1028
|
+
- error out if the ruby version doesn't match
|
1029
|
+
|
1030
|
+
Performance:
|
1031
|
+
|
1032
|
+
- bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, #1598)
|
1033
|
+
|
1034
|
+
Bugfixes:
|
1035
|
+
|
1036
|
+
- Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, #1604)
|
1037
|
+
- Use the same ruby to run subprocesses as is running rake (@brixen)
|
1038
|
+
|
1039
|
+
Documentation:
|
1040
|
+
|
1041
|
+
- Add :github documentation in DSL (@zofrex, #1848, #1851, #1852)
|
1042
|
+
- Add docs for the --no-cache option (@fluxx, #1796)
|
1043
|
+
- Add basic documentation for bin_path and bundle_path (@radar)
|
1044
|
+
- Add documentation for the run method in Bundler::Installer
|
1045
|
+
|
1046
|
+
## 1.1.5 (Jul 17, 2012)
|
1047
|
+
|
1048
|
+
Features:
|
1049
|
+
|
1050
|
+
- Special case `ruby` directive from 1.2.0, so you can install Gemfiles that use it
|
1051
|
+
|
1052
|
+
## 1.1.4 (May 27, 2012)
|
1053
|
+
|
1054
|
+
Bugfixes:
|
1055
|
+
|
1056
|
+
- Use `latest_release` in Capistrano and Vlad integration (#1264)
|
1057
|
+
- Unknown exceptions now link to ISSUES for help instead of a new ticket
|
1058
|
+
- When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
|
1059
|
+
- Correct inline help for `clean --force` (@dougbarth, #1911)
|
1060
|
+
- Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
|
1061
|
+
|
1062
|
+
## 1.1.3 (March 23, 2012)
|
1063
|
+
|
1064
|
+
Bugfixes:
|
1065
|
+
|
1066
|
+
- escape the bundler root path (@tenderlove, #1789)
|
1067
|
+
|
1068
|
+
## 1.1.2 (March 20, 2012)
|
1069
|
+
|
1070
|
+
Bugfixes:
|
1071
|
+
|
1072
|
+
- Fix --deployment for multiple PATH sections of the same source (#1782)
|
1073
|
+
|
1074
|
+
## 1.1.1 (March 14, 2012)
|
1075
|
+
|
1076
|
+
Bugfixes:
|
1077
|
+
|
1078
|
+
- Rescue EAGAIN so the fetcher works on JRuby on Windows
|
1079
|
+
- Stop asking users to report gem installation errors
|
1080
|
+
- Clarify "no sources" message
|
1081
|
+
- Use $\ so `bundle gem` gemspecs work on Windows (@postmodern)
|
1082
|
+
- URI-encode gem names for dependency API (@rohit, #1672)
|
1083
|
+
- Fix `cache` edge case in rubygems 1.3.7 (#1202)
|
1084
|
+
|
1085
|
+
Performance:
|
1086
|
+
|
1087
|
+
- Reduce invocation of git ls-files in `bundle gem` gemspecs (@knu)
|
1088
|
+
|
1089
|
+
## 1.1.0 (Mar 7, 2012)
|
1090
|
+
|
1091
|
+
Bugfixes:
|
1092
|
+
|
1093
|
+
- Clean up corrupted lockfiles on bundle installs
|
1094
|
+
- Prevent duplicate GIT sources
|
1095
|
+
- Fix post_install_message when uing the endpoint API
|
1096
|
+
|
1097
|
+
## 1.1.rc.8 (Mar 3, 2012)
|
1098
|
+
|
1099
|
+
Performance:
|
1100
|
+
|
1101
|
+
- don't resolve if the Gemfile.lock and Gemfile haven't changed
|
1102
|
+
|
1103
|
+
Bugfixes:
|
1104
|
+
|
1105
|
+
- Load gemspecs from git even when a released gem has the same version (#1609)
|
1106
|
+
- Declare an accurate Ruby version requirement of 1.8.7 or newer (#1619)
|
1107
|
+
- handle gemspec development dependencies correctly (@raggi, #1639)
|
1108
|
+
- Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, #1604)
|
1109
|
+
|
1110
|
+
## 1.1.rc.7 (Dec 29, 2011)
|
1111
|
+
|
1112
|
+
Bugfixes:
|
1113
|
+
|
1114
|
+
- Fix bug where `clean` would break when using :path with no gemspec
|
1115
|
+
|
1116
|
+
## 1.1.rc.6 (Dec 22, 2011)
|
1117
|
+
|
1118
|
+
Bugfixes:
|
1119
|
+
|
1120
|
+
- Fix performance regression from 1.0 (@spastorino, #1511, #1591, #1592)
|
1121
|
+
- Load gems correctly when GEM_HOME is blank
|
1122
|
+
- Refresh gems so Bundler works from inside a bundle
|
1123
|
+
- Handle empty .bundle/config files without an error
|
1124
|
+
|
1125
|
+
## 1.1.rc.5 (Dec 14, 2011)
|
1126
|
+
|
1127
|
+
Bugfixes:
|
1128
|
+
|
1129
|
+
- Fix ASCII encoding errors with gem (rerelease with ruby 1.8)
|
1130
|
+
|
1131
|
+
## 1.1.rc.4 (Dec 14, 2011)
|
1132
|
+
|
1133
|
+
Features:
|
1134
|
+
|
1135
|
+
- `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, #683)
|
1136
|
+
|
1137
|
+
Bugfixes:
|
1138
|
+
|
1139
|
+
- Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, #1588)
|
1140
|
+
- fix `bundle viz` (@hirochachacha, #1586)
|
1141
|
+
|
1142
|
+
## 1.1.rc.3 (Dec 8, 2011)
|
1143
|
+
|
1144
|
+
Bugfixes:
|
1145
|
+
|
1146
|
+
- fix relative_path so it checks Bundler.root is actually in the beginning of the path (#1582)
|
1147
|
+
- fix bundle outdated doesn't list all gems (@joelmoss, #1521)
|
1148
|
+
|
1149
|
+
## 1.1.rc.2 (Dec 6, 2011)
|
1150
|
+
|
1151
|
+
Features:
|
1152
|
+
|
1153
|
+
- Added README.md to `newgem` (@ognevsky, #1574)
|
1154
|
+
- Added LICENSE (MIT) to newgem (@ognevsky, #1571)
|
1155
|
+
|
1156
|
+
Bugfixes:
|
1157
|
+
|
1158
|
+
- only auto-namespace requires for implied requires (#1531)
|
1159
|
+
- fix bundle clean output for git repos (#1473)
|
1160
|
+
- use Gem.bindir for bundle clean (#1544, #1532)
|
1161
|
+
- use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
|
1162
|
+
- differentiate Ruby 2.0 (trunk) from Ruby 1.9 (@tenderlove, #1539)
|
1163
|
+
- `bundle clean` handles 7 length git hash for bundle clean (#1490, #1491)
|
1164
|
+
- fix Psych loading issues
|
1165
|
+
- Search $PATH for a binary rather than shelling out to `which` (@tenderlove, #1573)
|
1166
|
+
- do not clear RG cache unless we actually modify GEM_PATH and GEM_HOME- use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
|
1167
|
+
- `newgem` now uses https://rubygems.org (#1562)
|
1168
|
+
- `bundle init` now uses https://rubygems.org (@jjb, #1522)
|
1169
|
+
- `bundle install/update` does not autoclean when using --path for semver
|
1170
|
+
|
1171
|
+
Documentation:
|
1172
|
+
|
1173
|
+
- added documentation for --shebang option for `bundle install` (@lunks, #1475, #1558)
|
1174
|
+
|
1175
|
+
## 1.1.rc (Oct 3, 2011)
|
1176
|
+
|
1177
|
+
Features:
|
1178
|
+
|
1179
|
+
- add `--shebang` option to bundle install (@bensie, #1467)
|
1180
|
+
- build passes on ruby 1.9.3rc1 (#1458, #1469)
|
1181
|
+
- hide basic auth credentials for custom sources (#1440, #1463)
|
1182
|
+
|
1183
|
+
Bugfixes:
|
1184
|
+
|
1185
|
+
- fix index search result caching (#1446, #1466)
|
1186
|
+
- fix fetcher prints multiple times during install (#1445, #1462)
|
1187
|
+
- don't mention API errors from non-rubygems.org sources
|
1188
|
+
- fix autoclean so it doesn't remove bins that are used (#1459, #1460)
|
1189
|
+
|
1190
|
+
Documentation:
|
1191
|
+
|
1192
|
+
- add :require => [...] to the gemfile(5) manpage (@nono, #1468)
|
1193
|
+
|
1194
|
+
## 1.1.pre.10 (Sep 27, 2011)
|
1195
|
+
|
1196
|
+
Features:
|
1197
|
+
|
1198
|
+
- `config system_bindir foo` added, works like "-n foo" in your .gemrc file
|
1199
|
+
|
1200
|
+
## 1.1.pre.9 (Sep 18, 2011)
|
1201
|
+
|
1202
|
+
Features:
|
1203
|
+
|
1204
|
+
- `clean` will now clean up all old .gem and .gemspec files, cleaning up older pres
|
1205
|
+
- `clean` will be automatically run after bundle install and update when using `--path` (#1420, #1425)
|
1206
|
+
- `clean` now takes a `--force` option (#1247, #1426)
|
1207
|
+
- `clean` will clean up cached git dirs in bundle clean (#1390)
|
1208
|
+
- remove deprecations from DSL (#1119)
|
1209
|
+
- autorequire tries directories for gems with dashed names (#1205)
|
1210
|
+
- adds a `--paths` flag to `bundle show` to list all the paths of bundled gems (@tiegz, #1360)
|
1211
|
+
- load rubygems plugins in the bundle binary (@tpope, #1364)
|
1212
|
+
- make `--standalone` respect `--path` (@cowboyd, #1361)
|
1213
|
+
|
1214
|
+
Bugfixes:
|
1215
|
+
|
1216
|
+
- Fix `clean` to handle nested gems in a git repo (#1329)
|
1217
|
+
- Fix conflict from revert of benchmark tool (@boffbowsh, #1355)
|
1218
|
+
- Fix fatal error when unable to connect to gem source (#1269)
|
1219
|
+
- Fix `outdated` to find pre-release gems that are installed. (#1359)
|
1220
|
+
- Fix color for ui. (#1374)
|
1221
|
+
- Fix installing to user-owned system gems on OS X
|
1222
|
+
- Fix caching issue in the resolver (#1353, #1421)
|
1223
|
+
- Fix :github DSL option
|
1224
|
+
|
1225
|
+
## 1.1.pre.8 (Aug 13, 2011)
|
1226
|
+
|
1227
|
+
Bugfixes:
|
1228
|
+
|
1229
|
+
- Fix `bundle check` to not print fatal error message (@cldwalker, #1347)
|
1230
|
+
- Fix require_sudo when Gem.bindir isn't writeable (#1352)
|
1231
|
+
- Fix not asking Gemcutter API for dependency chain of git gems in --deployment (#1254)
|
1232
|
+
- Fix `install --binstubs` when using --path (#1332)
|
1233
|
+
|
1234
|
+
## 1.1.pre.7 (Aug 8, 2011)
|
1235
|
+
|
1236
|
+
Bugfixes:
|
1237
|
+
|
1238
|
+
- Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
|
1239
|
+
- Fixed exception when sudo was needed to install gems (@spastorino)
|
1240
|
+
|
1241
|
+
## 1.1.pre.6 (Aug 8, 2011)
|
1242
|
+
|
1243
|
+
Bugfixes:
|
1244
|
+
|
1245
|
+
- Fix cross repository dependencies (#1138)
|
1246
|
+
- Fix git dependency fetching from API endpoint (#1254)
|
1247
|
+
- Fixes for bundle outdated (@joelmoss, #1238)
|
1248
|
+
- Fix bundle standalone when using the endpoint (#1240)
|
1249
|
+
|
1250
|
+
Features:
|
1251
|
+
|
1252
|
+
- Implement `to_ary` to avoid calls to method_missing (@tenderlove, #1274)
|
1253
|
+
- bundle clean removes old .gem files (@cldwalker, #1293)
|
1254
|
+
- Correcly identify missing child dependency in error message
|
1255
|
+
- Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, #1120)
|
1256
|
+
- create Gemfile.lock for empty Gemfile (#1218)
|
1257
|
+
|
1258
|
+
## 1.1.pre.5 (June 11, 2011)
|
1259
|
+
|
1260
|
+
Bugfixes:
|
1261
|
+
|
1262
|
+
- Fix LazySpecification on Ruby 1.9 (@dpiddy, #1232)
|
1263
|
+
- Fix HTTP proxy support (@leobessa, #878)
|
1264
|
+
|
1265
|
+
Features:
|
1266
|
+
|
1267
|
+
- Speed up `install --deployment` by using the API endpoint
|
1268
|
+
- Support Basic HTTP Auth for the API endpoint (@dpiddy, #1229)
|
1269
|
+
- Add `install --full-index` to disable the API endpoint, just in case
|
1270
|
+
- Significantly speed up install by removing unneeded gemspec fetches
|
1271
|
+
- `outdated` command shows outdated gems (@joelmoss, #1130)
|
1272
|
+
- Print gem post install messages (@csquared, #1155)
|
1273
|
+
- Reduce memory use by removing Specification.new inside method_missing (@tenderlove, #1222)
|
1274
|
+
- Allow `check --path`
|
1275
|
+
|
1276
|
+
## 1.1.pre.4 (May 5, 2011)
|
1277
|
+
|
1278
|
+
Bugfixes:
|
1279
|
+
|
1280
|
+
- Fix bug that could prevent installing new gems
|
1281
|
+
|
1282
|
+
## 1.1.pre.3 (May 4, 2011)
|
1283
|
+
|
1284
|
+
Features:
|
1285
|
+
|
1286
|
+
- Add `bundle outdated` to show outdated gems (@joelmoss)
|
1287
|
+
- Remove BUNDLE_* from `Bundler.with_clean_env` (@wuputah)
|
1288
|
+
- Add Bundler.clean_system, and clean_exec (@wuputah)
|
1289
|
+
- Use git config for gem author name and email (@krekoten)
|
1290
|
+
|
1291
|
+
Bugfixes:
|
1292
|
+
|
1293
|
+
- Fix error calling Bundler.rubygems.gem_path
|
1294
|
+
- Fix error when Gem.path returns Gem::FS instead of String
|
1295
|
+
|
1296
|
+
## 1.1.pre.2 (April 28, 2011)
|
1297
|
+
|
1298
|
+
Features:
|
1299
|
+
|
1300
|
+
- Add :github option to Gemfile DSL for easy git repos
|
1301
|
+
- Merge all fixes from 1.0.12 and 1.0.13
|
1302
|
+
|
1303
|
+
## 1.1.pre.1 (February 2, 2011)
|
1304
|
+
|
1305
|
+
Bugfixes:
|
1306
|
+
|
1307
|
+
- Compatibility with changes made by Rubygems 1.5
|
1308
|
+
|
1309
|
+
## 1.1.pre (January 21, 2011)
|
1310
|
+
|
1311
|
+
Features:
|
1312
|
+
|
1313
|
+
- Add bundle clean. Removes unused gems from --path directory
|
1314
|
+
- Initial Gemcutter Endpoint API work, BAI Fetching source index
|
1315
|
+
- Added bundle install --standalone
|
1316
|
+
- Ignore Gemfile.lock when buliding new gems
|
1317
|
+
- Make it possible to override a .gemspec dependency's source in the
|
1318
|
+
Gemfile
|
1319
|
+
|
1320
|
+
Removed:
|
1321
|
+
|
1322
|
+
- Removed bundle lock
|
1323
|
+
- Removed bundle install <path>
|
1324
|
+
- Removed bundle install --production
|
1325
|
+
- Removed bundle install --disable-shared-gems
|
1326
|
+
|
1327
|
+
## 1.0.21 (September 30, 2011)
|
1328
|
+
|
1329
|
+
- No changes from RC
|
1330
|
+
|
1331
|
+
## 1.0.21.rc (September 29, 2011)
|
1332
|
+
|
1333
|
+
Bugfixes:
|
1334
|
+
|
1335
|
+
- Load Psych unless Syck is defined, because 1.9.2 defines YAML
|
1336
|
+
|
1337
|
+
## 1.0.20 (September 27, 2011)
|
1338
|
+
|
1339
|
+
Features:
|
1340
|
+
|
1341
|
+
- Add platform :maglev (@timfel, #1444)
|
1342
|
+
|
1343
|
+
Bugfixes:
|
1344
|
+
|
1345
|
+
- Ensure YAML is required even if Psych is found
|
1346
|
+
- Handle directory names that contain invalid regex characters
|
1347
|
+
|
1348
|
+
## 1.0.20.rc (September 18, 2011)
|
1349
|
+
|
1350
|
+
Features:
|
1351
|
+
|
1352
|
+
- Rescue interrupts to `bundle` while loading bundler.rb (#1395)
|
1353
|
+
- Allow clearing without groups by passing `--without ''` (#1259)
|
1354
|
+
|
1355
|
+
Bugfixes:
|
1356
|
+
|
1357
|
+
- Manually sort requirements in the lockfile (#1375)
|
1358
|
+
- Remove several warnings generated by ruby -w (@stephencelis)
|
1359
|
+
- Handle trailing slashes on names passed to `gem` (#1372)
|
1360
|
+
- Name modules for gems like 'test-foo_bar' correctly (#1303)
|
1361
|
+
- Don't require Psych if Syck is already loaded (#1239)
|
1362
|
+
|
1363
|
+
## 1.0.19.rc (September 13, 2011)
|
1364
|
+
|
1365
|
+
Features:
|
1366
|
+
|
1367
|
+
- Compatability with Rubygems 1.8.10 installer changes
|
1368
|
+
- Report gem installation failures clearly (@rwilcox, #1380)
|
1369
|
+
- Useful error for cap and vlad on first deploy (@nexmat, @kirs)
|
1370
|
+
|
1371
|
+
Bugfixes:
|
1372
|
+
|
1373
|
+
- `exec` now works when the command contains 'exec'
|
1374
|
+
- Only touch lock after changes on Windows (@robertwahler, #1358)
|
1375
|
+
- Keep load paths when #setup is called multiple times (@radsaq, #1379)
|
1376
|
+
|
1377
|
+
## 1.0.18 (August 16, 2011)
|
1378
|
+
|
1379
|
+
Bugfixes:
|
1380
|
+
|
1381
|
+
- Fix typo in DEBUG_RESOLVER (@geemus)
|
1382
|
+
- Fixes rake 0.9.x warning (@mtylty, #1333)
|
1383
|
+
- Fix `bundle cache` again for rubygems 1.3.x
|
1384
|
+
|
1385
|
+
Features:
|
1386
|
+
|
1387
|
+
- Run the bundle install earlier in a Capistrano deployment (@cgriego, #1300)
|
1388
|
+
- Support hidden gemspec (@trans, @cldwalker, #827)
|
1389
|
+
- Make fetch_specs faster (@zeha, #1294)
|
1390
|
+
- Allow overriding development deps loaded by #gemspec (@lgierth, #1245)
|
1391
|
+
|
1392
|
+
## 1.0.17 (August 8, 2011)
|
1393
|
+
|
1394
|
+
Bugfixes:
|
1395
|
+
|
1396
|
+
- Fix rake issues with rubygems 1.3.x (#1342)
|
1397
|
+
- Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
|
1398
|
+
|
1399
|
+
## 1.0.16 (August 8, 2011)
|
1400
|
+
|
1401
|
+
Features:
|
1402
|
+
|
1403
|
+
- Performance fix for MRI 1.9 (@efficientcloud, #1288)
|
1404
|
+
- Shortcuts (like `bundle i`) for all commands (@amatsuda)
|
1405
|
+
- Correcly identify missing child dependency in error message
|
1406
|
+
|
1407
|
+
Bugfixes:
|
1408
|
+
|
1409
|
+
- Allow Windows network share paths with forward slashes (@mtscout6, #1253)
|
1410
|
+
- Check for rubygems.org credentials so `rake release` doesn't hang (#980)
|
1411
|
+
- Find cached prerelease gems on rubygems 1.3.x (@dburt, #1202)
|
1412
|
+
- Fix `bundle install --without` on kiji (@tmm1, #1287)
|
1413
|
+
- Get rid of warning in ruby 1.9.3 (@smartinez87, #1231)
|
1414
|
+
|
1415
|
+
Documentation:
|
1416
|
+
|
1417
|
+
- Documentation for `gem ..., :require => false` (@kmayer, #1292)
|
1418
|
+
- Gems provide "executables", they are rarely also binaries (@fxn, #1242)
|
1419
|
+
|
1420
|
+
## 1.0.15 (June 9, 2011)
|
1421
|
+
|
1422
|
+
Features:
|
1423
|
+
|
1424
|
+
- Improved Rubygems integration, removed many deprecation notices
|
1425
|
+
|
1426
|
+
Bugfixes:
|
1427
|
+
|
1428
|
+
- Escape URL arguments to git correctly on Windows (1.0.14 regression)
|
1429
|
+
|
1430
|
+
## 1.0.14 (May 27, 2011)
|
1431
|
+
|
1432
|
+
Features:
|
1433
|
+
|
1434
|
+
- Rubinius platform :rbx (@rkbodenner)
|
1435
|
+
- Include gem rake tasks with "require 'bundler/gem_tasks" (@indirect)
|
1436
|
+
- Include user name and email from git config in new gemspec (@ognevsky)
|
1437
|
+
|
1438
|
+
Bugfixes:
|
1439
|
+
|
1440
|
+
- Set file permissions after checking out git repos (@tissak)
|
1441
|
+
- Remove deprecated call to Gem::SourceIndex#all_gems (@mpj)
|
1442
|
+
- Require the version file in new gemspecs (@rubiii)
|
1443
|
+
- Allow relative paths from the Gemfile in gems with no gemspec (@mbirk)
|
1444
|
+
- Install gems that contain 'bundler', e.g. guard-bundler (@hone)
|
1445
|
+
- Display installed path correctly on Windows (@tadman)
|
1446
|
+
- Escape quotes in git URIs (@mheffner)
|
1447
|
+
- Improve Rake 0.9 support (@quix)
|
1448
|
+
- Handle certain directories already existing (@raggi)
|
1449
|
+
- Escape filenames containing regex characters (@indirect)
|
1450
|
+
|
1451
|
+
## 1.0.13 (May 4, 2011)
|
1452
|
+
|
1453
|
+
Features:
|
1454
|
+
|
1455
|
+
- Compatibility with Rubygems master (soon to be v1.8) (@evanphx)
|
1456
|
+
- Informative error when --path points to a broken symlink
|
1457
|
+
- Support Rake 0.9 and greater (@e2)
|
1458
|
+
- Output full errors for non-TTYs e.g. pow (@josh)
|
1459
|
+
|
1460
|
+
Bugfixes:
|
1461
|
+
|
1462
|
+
- Allow spaces in gem path names for gem tasks (@rslifka)
|
1463
|
+
- Have cap run bundle install from release_path (@martinjagusch)
|
1464
|
+
- Quote git refspec so zsh doesn't expand it (@goneflyin)
|
1465
|
+
|
1466
|
+
## 1.0.12 (April 8, 2011)
|
1467
|
+
|
1468
|
+
Features:
|
1469
|
+
|
1470
|
+
- Add --no-deployment option to `install` for disabling it on dev machines
|
1471
|
+
- Better error message when git fails and cache is present (@parndt)
|
1472
|
+
- Honor :bundle_cmd in cap `rake` command (@voidlock, @cgriego)
|
1473
|
+
|
1474
|
+
Bugfixes:
|
1475
|
+
|
1476
|
+
- Compatibility with Rubygems 1.7 and Rails 2.3 and vendored gems (@evanphx)
|
1477
|
+
- Fix changing gem order in lock (@gucki)
|
1478
|
+
- Remove color escape sequences when displaying man pages (@bgreenlee)
|
1479
|
+
- Fix creating GEM_HOME on both JRuby 1.5 and 1.6 (@nickseiger)
|
1480
|
+
- Fix gems without a gemspec and directories in bin/ (@epall)
|
1481
|
+
- Fix --no-prune option for `bundle install` (@cmeiklejohn)
|
1482
|
+
|
1483
|
+
## 1.0.11 (April 1, 2011)
|
1484
|
+
|
1485
|
+
Features:
|
1486
|
+
|
1487
|
+
- Compatibility with Rubygems 1.6 and 1.7
|
1488
|
+
- Better error messages when a git command fails
|
1489
|
+
|
1490
|
+
Bugfixes:
|
1491
|
+
|
1492
|
+
- Don't always update gemspec gems (@carllerche)
|
1493
|
+
- Remove ivar warnings (@jackdempsey)
|
1494
|
+
- Fix occasional git failures in zsh (@jonah-carbonfive)
|
1495
|
+
- Consistent lock for gems with double deps like Cap (@akahn)
|
1496
|
+
|
1497
|
+
## 1.0.10 (February 1, 2011)
|
1498
|
+
|
1499
|
+
Bugfixes:
|
1500
|
+
|
1501
|
+
- Fix a regression loading YAML gemspecs from :git and :path gems
|
1502
|
+
- Requires, namespaces, etc. to work with changes in Rubygems 1.5
|
1503
|
+
|
1504
|
+
## 1.0.9 (January 19, 2011)
|
1505
|
+
|
1506
|
+
Bugfixes:
|
1507
|
+
|
1508
|
+
- Fix a bug where Bundler.require could remove gems from the load
|
1509
|
+
path. In Rails apps with a default application.rb, this removed
|
1510
|
+
all gems in groups other than :default and Rails.env
|
1511
|
+
|
1512
|
+
## 1.0.8 (January 18, 2011)
|
1513
|
+
|
1514
|
+
Features:
|
1515
|
+
|
1516
|
+
- Allow overriding gemspec() deps with :git deps
|
1517
|
+
- Add --local option to `bundle update`
|
1518
|
+
- Ignore Gemfile.lock in newly generated gems
|
1519
|
+
- Use `less` as help pager instead of `more`
|
1520
|
+
- Run `bundle exec rake` instead of `rake` in Capistrano tasks
|
1521
|
+
|
1522
|
+
Bugfixes:
|
1523
|
+
|
1524
|
+
- Fix --no-cache option for `bundle install`
|
1525
|
+
- Allow Vlad deploys to work without Capistrano gem installed
|
1526
|
+
- Fix group arguments to `bundle console`
|
1527
|
+
- Allow groups to be loaded even if other groups were loaded
|
1528
|
+
- Evaluate gemspec() gemspecs in their directory not the cwd
|
1529
|
+
- Count on Rake to chdir to the right place in GemHelper
|
1530
|
+
- Change Pathnames to Strings for MacRuby
|
1531
|
+
- Check git process exit status correctly
|
1532
|
+
- Fix some warnings in 1.9.3-trunk (thanks tenderlove)
|
1533
|
+
|
1534
|
+
## 1.0.7 (November 17, 2010)
|
1535
|
+
|
1536
|
+
Bugfixes:
|
1537
|
+
|
1538
|
+
- Remove Bundler version from the lockfile because it broke
|
1539
|
+
backwards compatibility with 1.0.0-1.0.5. Sorry. :(
|
1540
|
+
|
1541
|
+
## 1.0.6 (November 16, 2010)
|
1542
|
+
|
1543
|
+
Bugfixes:
|
1544
|
+
|
1545
|
+
- Fix regression in `update` that caused long/wrong results
|
1546
|
+
- Allow git gems on other platforms while installing (#579)
|
1547
|
+
|
1548
|
+
Features:
|
1549
|
+
|
1550
|
+
- Speed up `install` command using various optimizations
|
1551
|
+
- Significantly increase performance of resolver
|
1552
|
+
- Use upcoming Rubygems performance improvements (@tmm1)
|
1553
|
+
- Warn if the lockfile was generated by a newer version
|
1554
|
+
- Set generated gems' homepage to "", so Rubygems will warn
|
1555
|
+
|
1556
|
+
## 1.0.5 (November 13, 2010)
|
1557
|
+
|
1558
|
+
Bugfixes:
|
1559
|
+
|
1560
|
+
- Fix regression disabling all operations that employ sudo
|
1561
|
+
|
1562
|
+
## 1.0.4 (November 12, 2010)
|
1563
|
+
|
1564
|
+
Bugfixes:
|
1565
|
+
|
1566
|
+
- Expand relative :paths from Bundler.root (eg ./foogem)
|
1567
|
+
- Allow git gems in --without groups while --frozen
|
1568
|
+
- Allow gem :ref to be a symbol as well as a string
|
1569
|
+
- Fix exception when Gemfile needs a newer Bundler version
|
1570
|
+
- Explanation when the current Bundler version conflicts
|
1571
|
+
- Explicit error message if Gemfile needs newer Bundler
|
1572
|
+
- Ignore an empty string BUNDLE_GEMFILE
|
1573
|
+
- Skeleton gemspec now works with older versions of git
|
1574
|
+
- Fix shell quoting and ref fetching in GemHelper
|
1575
|
+
- Disable colored output in --deployment
|
1576
|
+
- Preserve line endings in lock file
|
1577
|
+
|
1578
|
+
Features:
|
1579
|
+
|
1580
|
+
- Add support for 'mingw32' platform (aka RubyInstaller)
|
1581
|
+
- Large speed increase when Gemfile.lock is already present
|
1582
|
+
- Huge speed increase when many (100+) system gems are present
|
1583
|
+
- Significant expansion of ISSUES, man pages, and docs site
|
1584
|
+
- Remove Open3 from GemHelper (now it works on Windows™®©)
|
1585
|
+
- Allow setting roles in built-in cap and vlad tasks
|
1586
|
+
|
1587
|
+
## 1.0.3 (October 15, 2010)
|
1588
|
+
|
1589
|
+
Bugfixes:
|
1590
|
+
|
1591
|
+
- Use bitwise or in #hash to reduce the chance of overflow
|
1592
|
+
- `bundle update` now works with :git + :tag updates
|
1593
|
+
- Record relative :path options in the Gemfile.lock
|
1594
|
+
- :groups option on gem method in Gemfile now works
|
1595
|
+
- Add #platform method and :platform option to Gemfile DSL
|
1596
|
+
- --without now accepts a quoted, space-separated list
|
1597
|
+
- Installing after --deployment with no lock is now possible
|
1598
|
+
- Binstubs can now be symlinked
|
1599
|
+
- Print warning if cache for --local install is missing gems
|
1600
|
+
- Improve output when installing to a path
|
1601
|
+
- The tests all pass! Yay!
|
1602
|
+
|
1603
|
+
## 1.0.2 (October 2, 2010)
|
1604
|
+
|
1605
|
+
Bugfix:
|
1606
|
+
|
1607
|
+
- Actually include the man pages in the gem, so help works
|
1608
|
+
|
1609
|
+
## 1.0.1 (October 1, 2010)
|
1610
|
+
|
1611
|
+
Features:
|
1612
|
+
|
1613
|
+
- Vlad deployment recipe, `require 'bundler/vlad'`
|
1614
|
+
- Prettier bundle graphs
|
1615
|
+
- Improved gem skeleton for `bundle gem`
|
1616
|
+
- Prompt on file clashes when generating a gem
|
1617
|
+
- Option to generate binary with gem skeleton
|
1618
|
+
- Allow subclassing of GemHelper for custom tasks
|
1619
|
+
- Chdir to gem directory during `bundle open`
|
1620
|
+
|
1621
|
+
Bugfixes:
|
1622
|
+
|
1623
|
+
- Allow gemspec requirements with a list of versions
|
1624
|
+
- Accept lockfiles with windows line endings
|
1625
|
+
- Respect BUNDLE_WITHOUT env var
|
1626
|
+
- Allow `gem "foo", :platform => :jruby`
|
1627
|
+
- Specify loaded_from path in fake gemspec
|
1628
|
+
- Flesh out gem_helper tasks, raise errors correctly
|
1629
|
+
- Respect RBConfig::CONFIG['ruby_install_name'] in binstubs
|
1630
|
+
|
1631
|
+
## 1.0.0 (August 29, 2010)
|
1632
|
+
|
1633
|
+
Features:
|
1634
|
+
|
1635
|
+
- You can now define `:bundle_cmd` in the capistrano task
|
1636
|
+
|
1637
|
+
Bugfixes:
|
1638
|
+
|
1639
|
+
- Various bugfixes to the built-in rake helpers
|
1640
|
+
- Fix a bug where shortrefs weren't unique enough and were
|
1641
|
+
therfore colliding
|
1642
|
+
- Fix a small bug involving checking whether a local git
|
1643
|
+
clone is up to date
|
1644
|
+
- Correctly handle explicit '=' dependencies with gems
|
1645
|
+
pinned to a git source
|
1646
|
+
- Fix an issue with Windows-generated lockfiles by reading
|
1647
|
+
and writing the lockfile in binary mode
|
1648
|
+
- Fix an issue with shelling out to git in Windows by
|
1649
|
+
using double quotes around paths
|
1650
|
+
- Detect new Rubygems sources in the Gemfile and update
|
1651
|
+
the lockfile
|
1652
|
+
|
1653
|
+
## 1.0.0.rc.6 (August 23, 2010)
|
1654
|
+
|
1655
|
+
Features:
|
1656
|
+
|
1657
|
+
- Much better documentation for most of the commands and Gemfile
|
1658
|
+
format
|
1659
|
+
|
1660
|
+
Bugfixes:
|
1661
|
+
|
1662
|
+
- Don't attempt to create directories if they already exist
|
1663
|
+
- Fix the capistrano task so that it actually runs
|
1664
|
+
- Update the Gemfile template to reference rubygems.org instead
|
1665
|
+
of :gemcutter
|
1666
|
+
- bundle exec should exit with a non zero exit code when the gem
|
1667
|
+
binary does not exist or the file is not executable.
|
1668
|
+
- Expand paths in Gemfile relative to the Gemfile and not the current
|
1669
|
+
working directory.
|
1670
|
+
|
1671
|
+
## 1.0.0.rc.5 (August 10, 2010)
|
1672
|
+
|
1673
|
+
Features:
|
1674
|
+
|
1675
|
+
- Make the Capistrano task more concise.
|
1676
|
+
|
1677
|
+
Bugfixes:
|
1678
|
+
|
1679
|
+
- Fix a regression with determining whether or not to use sudo
|
1680
|
+
- Allow using the --gemfile flag with the --deployment flag
|
1681
|
+
|
1682
|
+
## 1.0.0.rc.4 (August 9, 2010)
|
1683
|
+
|
1684
|
+
Features:
|
1685
|
+
|
1686
|
+
- `bundle gem NAME` command to generate a new gem with Gemfile
|
1687
|
+
- Bundle config file location can be specified by BUNDLE_APP_CONFIG
|
1688
|
+
- Add --frozen to disable updating the Gemfile.lock at runtime
|
1689
|
+
(default with --deployment)
|
1690
|
+
- Basic Capistrano task now added as 'bundler/capistrano'
|
1691
|
+
|
1692
|
+
Bugfixes:
|
1693
|
+
|
1694
|
+
- Multiple bundler process no longer share a tmp directory
|
1695
|
+
- `bundle update GEM` always updates dependencies of GEM as well
|
1696
|
+
- Deleting the cache directory no longer causes errors
|
1697
|
+
- Moving the bundle after installation no longer causes git errors
|
1698
|
+
- Bundle path is now correctly remembered on a read-only filesystem
|
1699
|
+
- Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
|
1700
|
+
- Fetch gems from vendor/cache, even without --local
|
1701
|
+
- Sort lockfile by platform as well as spec
|
1702
|
+
|
1703
|
+
## 1.0.0.rc.3 (August 3, 2010)
|
1704
|
+
|
1705
|
+
Features:
|
1706
|
+
|
1707
|
+
- Deprecate --production flag for --deployment, since the former
|
1708
|
+
was causing confusion with the :production group
|
1709
|
+
- Add --gemfile option to `bundle check`
|
1710
|
+
- Reduce memory usage of `bundle install` by 2-4x
|
1711
|
+
- Improve message from `bundle check` under various conditions
|
1712
|
+
- Better error when a changed Gemfile conflicts with Gemfile.lock
|
1713
|
+
|
1714
|
+
Bugfixes:
|
1715
|
+
|
1716
|
+
- Create bin/ directory if it is missing, then install binstubs
|
1717
|
+
- Error nicely on the edge case of a pinned gem with no spec
|
1718
|
+
- Do not require gems for other platforms
|
1719
|
+
- Update git sources along with the gems they contain
|
1720
|
+
|
1721
|
+
## 1.0.0.rc.2 (July 29, 2010)
|
1722
|
+
|
1723
|
+
- `bundle install path` was causing confusion, so we now print
|
1724
|
+
a clarifying warning. The preferred way to install to a path
|
1725
|
+
(which will not print the warning) is
|
1726
|
+
`bundle install --path path/to/install`.
|
1727
|
+
- `bundle install --system` installs to the default system
|
1728
|
+
location ($BUNDLE_PATH or $GEM_HOME) even if you previously
|
1729
|
+
used `bundle install --path`
|
1730
|
+
- completely remove `--disable-shared-gems`. If you install to
|
1731
|
+
system, you will not be isolated, while if you install to
|
1732
|
+
another path, you will be isolated from gems installed to
|
1733
|
+
the system. This was mostly an internal option whose naming
|
1734
|
+
and semantics were extremely confusing.
|
1735
|
+
- Add a `--production` option to `bundle install`:
|
1736
|
+
- by default, installs to `vendor/bundle`. This can be
|
1737
|
+
overridden with the `--path` option
|
1738
|
+
- uses `--local` if `vendor/cache` is found. This will
|
1739
|
+
guarantee that Bundler does not attempt to connect to
|
1740
|
+
Rubygems and will use the gems cached in `vendor/cache`
|
1741
|
+
instead
|
1742
|
+
- Raises an exception if a Gemfile.lock is not found
|
1743
|
+
- Raises an exception if you modify your Gemfile in development
|
1744
|
+
but do not check in an updated Gemfile.lock
|
1745
|
+
- Fixes a bug where switching a source from Rubygems to git
|
1746
|
+
would always say "the git source is not checked out" when
|
1747
|
+
running `bundle install`
|
1748
|
+
|
1749
|
+
NOTE: We received several reports of "the git source has not
|
1750
|
+
been checked out. Please run bundle install". As far as we
|
1751
|
+
can tell, these problems have two possible causes:
|
1752
|
+
|
1753
|
+
1. `bundle install ~/.bundle` in one user, but actually running
|
1754
|
+
the application as another user. Never install gems to a
|
1755
|
+
directory scoped to a user (`~` or `$HOME`) in deployment.
|
1756
|
+
2. A bug that happened when changing a gem to a git source.
|
1757
|
+
|
1758
|
+
To mitigate several common causes of `(1)`, please use the
|
1759
|
+
new `--production` flag. This flag is simply a roll-up of
|
1760
|
+
the best practices we have been encouraging people to use
|
1761
|
+
for deployment.
|
1762
|
+
|
1763
|
+
If you want to share gems across deployments, and you use
|
1764
|
+
Capistrano, symlink release_path/current/vendor/bundle to
|
1765
|
+
release_path/shared/bundle. This will keep deployments
|
1766
|
+
snappy while maintaining the benefits of clean, deploy-time
|
1767
|
+
isolation.
|
1768
|
+
|
1769
|
+
## 1.0.0.rc.1 (July 26, 2010)
|
1770
|
+
|
1771
|
+
- Fixed a bug with `bundle install` on multiple machines and git
|
1772
|
+
|
1773
|
+
## 1.0.0.beta.10 (July 25, 2010)
|
1774
|
+
|
1775
|
+
- Last release before 1.0.0.rc.1
|
1776
|
+
- Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
|
1777
|
+
- Fix `bundle install` immediately after modifying the :submodule option
|
1778
|
+
- Don't write to Gemfile.lock if nothing has changed, fixing situations
|
1779
|
+
where bundle install was run with a different user than the app
|
1780
|
+
itself
|
1781
|
+
- Fix a bug where other platforms were being wiped on `bundle update`
|
1782
|
+
- Don't ask for root password on `bundle install` if not needed
|
1783
|
+
- Avoid setting `$GEM_HOME` where not needed
|
1784
|
+
- First solid pass of `bundle config`
|
1785
|
+
- Add build options
|
1786
|
+
- `bundle config build.mysql --with-mysql-config=/path/to/config`
|
1787
|
+
|
1788
|
+
## 1.0.0.beta.9 (July 21, 2010)
|
1789
|
+
|
1790
|
+
- Fix install failure when switching from a path to git source
|
1791
|
+
- Fix `bundle exec bundle *` in a bundle with --disable-shared-gems
|
1792
|
+
- Fix `bundle *` from inside a bundle with --disable-shared-gem
|
1793
|
+
- Shim Gem.refresh. This is used by Unicorn
|
1794
|
+
- Fix install failure when a path's dependencies changed
|
1795
|
+
|
1796
|
+
## 1.0.0.beta.8 (July 20, 2010)
|
1797
|
+
|
1798
|
+
- Fix a Beta 7 bug involving Ruby 1.9
|
1799
|
+
|
1800
|
+
## 1.0.0.beta.7 (July 20, 2010, yanked)
|
1801
|
+
|
1802
|
+
- Running `bundle install` twice in a row with a git source always crashed
|
1803
|
+
|
1804
|
+
## 1.0.0.beta.6 (July 20, 2010, yanked)
|
1805
|
+
|
1806
|
+
- Create executables with bundle install --binstubs
|
1807
|
+
- You can customize the location (default is app/bin) with --binstubs other/location
|
1808
|
+
- Fix a bug where the Gemfile.lock would be deleted even if the update was exited
|
1809
|
+
- Fix a bug where cached gems for other platforms were sometimes deleted
|
1810
|
+
- Clean up output when nothing was deleted from cache (it previously said
|
1811
|
+
"Removing outdated gems ...")
|
1812
|
+
- Improve performance of bundle install if the git gem was already checked out,
|
1813
|
+
and the revision being used already exists locally
|
1814
|
+
- Fix bundle show bundler in some cases
|
1815
|
+
- Fix bugs with bundle update
|
1816
|
+
- Don't ever run git commands at runtime (fixes a number of common passenger issues)
|
1817
|
+
- Fixes an obscure bug where switching the source of a gem could fail to correctly
|
1818
|
+
change the source of its dependencies
|
1819
|
+
- Support multiple version dependencies in the Gemfile
|
1820
|
+
(gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
|
1821
|
+
- Raise an exception for ambiguous uses of multiple declarations of the same gem
|
1822
|
+
(for instance, with different versions or sources).
|
1823
|
+
- Fix cases where the same dependency appeared several times in the Gemfile.lock
|
1824
|
+
- Fix a bug where require errors were being swallowed during Bundler.require
|
1825
|
+
|
1826
|
+
## 1.0.0.beta.1
|
1827
|
+
|
1828
|
+
- No `bundle lock` command. Locking happens automatically on install or update
|
1829
|
+
- No .bundle/environment.rb. Require 'bundler/setup' instead.
|
1830
|
+
- $BUNDLE_HOME defaults to $GEM_HOME instead of ~/.bundle
|
1831
|
+
- Remove lockfiles generated by 0.9
|
1832
|
+
|
1833
|
+
## 0.9.26
|
1834
|
+
|
1835
|
+
Features:
|
1836
|
+
|
1837
|
+
- error nicely on incompatible 0.10 lockfiles
|
1838
|
+
|
1839
|
+
## 0.9.25 (May 3, 2010)
|
1840
|
+
|
1841
|
+
Bugfixes:
|
1842
|
+
|
1843
|
+
- explicitly coerce Pathname objects to Strings for Ruby 1.9
|
1844
|
+
- fix some newline weirdness in output from install command
|
1845
|
+
|
1846
|
+
## 0.9.24 (April 22, 2010)
|
1847
|
+
|
1848
|
+
Features:
|
1849
|
+
|
1850
|
+
- fetch submodules for git sources
|
1851
|
+
- limit the bundled version of bundler to the same as the one installing
|
1852
|
+
- force relative paths in git gemspecs to avoid raising Gem::NameTooLong
|
1853
|
+
- serialize GemCache sources correctly, so locking works
|
1854
|
+
- raise Bundler::GemNotFound instead of calling exit! inside library code
|
1855
|
+
- Rubygems 1.3.5 compatibility for the adventurous, not supported by me :)
|
1856
|
+
|
1857
|
+
Bugfixes:
|
1858
|
+
|
1859
|
+
- don't try to regenerate environment.rb if it is read-only
|
1860
|
+
- prune outdated gems with the platform "ruby"
|
1861
|
+
- prune cache without errors when there are directories or non-gem files
|
1862
|
+
- don't re-write environment.rb if running after it has been loaded
|
1863
|
+
- do not monkeypatch Specification#load_paths twice when inside a bundle
|
1864
|
+
|
1865
|
+
## 0.9.23 (April 20, 2010)
|
1866
|
+
|
1867
|
+
Bugfixes:
|
1868
|
+
|
1869
|
+
- cache command no longer prunes gems created by an older rubygems version
|
1870
|
+
- cache command no longer prunes gems that are for other platforms
|
1871
|
+
|
1872
|
+
## 0.9.22 (April 20, 2010)
|
1873
|
+
|
1874
|
+
Features:
|
1875
|
+
|
1876
|
+
- cache command now prunes stale .gem files from vendor/cache
|
1877
|
+
- init --gemspec command now generates development dependencies
|
1878
|
+
- handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED (#287)
|
1879
|
+
- remove .gem files generated after installing a gem from a :path (#286)
|
1880
|
+
- improve install/lock messaging (#284)
|
1881
|
+
|
1882
|
+
Bugfixes:
|
1883
|
+
|
1884
|
+
- ignore cached gems that are for another platform (#288)
|
1885
|
+
- install Windows gems that have no architecture set, like rcov (#277)
|
1886
|
+
- exec command while locked now includes the bundler lib in $LOAD_PATH (#293)
|
1887
|
+
- fix the `rake install` task
|
1888
|
+
- add GemspecError so it can be raised without (further) error (#292)
|
1889
|
+
- create a parent directory before cloning for git 1.5 compatibility (#285)
|
1890
|
+
|
1891
|
+
## 0.9.21 (April 16, 2010)
|
1892
|
+
|
1893
|
+
Bugfixes:
|
1894
|
+
|
1895
|
+
- don't raise 'omg wtf' when lockfile is outdated
|
1896
|
+
|
1897
|
+
## 0.9.20 (April 15, 2010)
|
1898
|
+
|
1899
|
+
Features:
|
1900
|
+
|
1901
|
+
- load YAML format gemspecs
|
1902
|
+
- no backtraces when calling Bundler.setup if gems are missing
|
1903
|
+
- no backtraces when trying to exec a file without the executable bit
|
1904
|
+
|
1905
|
+
Bugfixes:
|
1906
|
+
|
1907
|
+
- fix infinite recursion in Bundler.setup after loading a bundled Bundler gem
|
1908
|
+
- request install instead of lock when env.rb is out of sync with Gemfile.lock
|
1909
|
+
|
1910
|
+
## 0.9.19 (April 12, 2010)
|
1911
|
+
|
1912
|
+
Features:
|
1913
|
+
|
1914
|
+
- suggest `bundle install --relock` when the Gemfile has changed (#272)
|
1915
|
+
- source support for Rubygems servers without prerelease gem indexes (#262)
|
1916
|
+
|
1917
|
+
Bugfixes:
|
1918
|
+
|
1919
|
+
- don't set up all groups every time Bundler.setup is called while locked (#263)
|
1920
|
+
- fix #full_gem_path for git gems while locked (#268)
|
1921
|
+
- eval gemspecs at the top level, not inside the Bundler class (#269)
|
1922
|
+
|
1923
|
+
|
1924
|
+
## 0.9.18 (April 8, 2010)
|
1925
|
+
|
1926
|
+
Features:
|
1927
|
+
|
1928
|
+
- console command that runs irb with bundle (and optional group) already loaded
|
1929
|
+
|
1930
|
+
Bugfixes:
|
1931
|
+
|
1932
|
+
- Bundler.setup now fully disables system gems, even when unlocked (#266, #246)
|
1933
|
+
- fixes Yard, which found plugins in Gem.source_index that it could not load
|
1934
|
+
- makes behaviour of `Bundler.require` consistent between locked and unlocked loads
|
1935
|
+
|
1936
|
+
## 0.9.17 (April 7, 2010)
|
1937
|
+
|
1938
|
+
Features:
|
1939
|
+
|
1940
|
+
- Bundler.require now calls Bundler.setup automatically
|
1941
|
+
- Gem::Specification#add_bundler_dependencies added for gemspecs
|
1942
|
+
|
1943
|
+
Bugfixes:
|
1944
|
+
|
1945
|
+
- Gem paths are not longer duplicated while loading bundler
|
1946
|
+
- exec no longer duplicates RUBYOPT if it is already set correctly
|
1947
|
+
|
1948
|
+
## 0.9.16 (April 3, 2010)
|
1949
|
+
|
1950
|
+
Features:
|
1951
|
+
|
1952
|
+
- exit gracefully on INT signal
|
1953
|
+
- resolver output now indicates whether remote sources were checked
|
1954
|
+
- print error instead of backtrace when exec cannot find a binary (#241)
|
1955
|
+
|
1956
|
+
Bugfixes:
|
1957
|
+
|
1958
|
+
- show, check, and open commands work again while locked (oops)
|
1959
|
+
- show command for git gems
|
1960
|
+
- outputs branch names other than master
|
1961
|
+
- gets the correct sha from the checkout
|
1962
|
+
- doesn't print sha twice if :ref is set
|
1963
|
+
- report errors from bundler/setup.rb without backtraces (#243)
|
1964
|
+
- fix Gem::Spec#git_version to not error on unloaded specs
|
1965
|
+
- improve deprecation, Gemfile, and command error messages (#242)
|
1966
|
+
|
1967
|
+
## 0.9.15 (April 1, 2010)
|
1968
|
+
|
1969
|
+
Features:
|
1970
|
+
|
1971
|
+
- use the env_file if possible instead of doing a runtime resolve
|
1972
|
+
- huge speedup when calling Bundler.setup while locked
|
1973
|
+
- ensures bundle exec is fast while locked
|
1974
|
+
- regenerates env_file if it was generated by an older version
|
1975
|
+
- update cached/packed gems when you update gems via bundle install
|
1976
|
+
|
1977
|
+
Bugfixes:
|
1978
|
+
|
1979
|
+
- prep for Rubygems 1.3.7 changes
|
1980
|
+
- install command now pulls git branches correctly (#211)
|
1981
|
+
- raise errors on invalid options in the Gemfile
|
1982
|
+
|
1983
|
+
## 0.9.14 (March 30, 2010)
|
1984
|
+
|
1985
|
+
Features:
|
1986
|
+
|
1987
|
+
- install command output vastly improved
|
1988
|
+
- installation message now accurate, with 'using' and 'installing'
|
1989
|
+
- bundler gems no longer listed as 'system gems'
|
1990
|
+
- show command output now includes sha and branch name for git gems
|
1991
|
+
- init command now takes --gemspec option for bootstrapping gem Gemfiles
|
1992
|
+
- Bundler.with_clean_env for shelling out to ruby scripts
|
1993
|
+
- show command now aliased as 'list'
|
1994
|
+
- VISUAL env var respected for GUI editors
|
1995
|
+
|
1996
|
+
Bugfixes:
|
1997
|
+
|
1998
|
+
- exec command now finds binaries from gems with no gemspec
|
1999
|
+
- note source of Gemfile resolver errors
|
2000
|
+
- don't blow up if git urls are changed
|
2001
|
+
|
2002
|
+
## 0.9.13 (March 23, 2010)
|
2003
|
+
|
2004
|
+
Bugfixes:
|
2005
|
+
|
2006
|
+
- exec command now finds binaries from gems installed via :path
|
2007
|
+
- gem dependencies are pulled in even if their type is nil
|
2008
|
+
- paths with spaces have double-quotes to work on Windows
|
2009
|
+
- set GEM_PATH in environment.rb so generators work with Rails 2
|
2010
|
+
|
2011
|
+
## 0.9.12 (March 17, 2010)
|
2012
|
+
|
2013
|
+
- refactoring, internal cleanup, more solid specs
|
2014
|
+
|
2015
|
+
Features:
|
2016
|
+
|
2017
|
+
- check command takes a --without option
|
2018
|
+
- check command exits 1 if the check fails
|
2019
|
+
|
2020
|
+
Bugfixes:
|
2021
|
+
|
2022
|
+
- perform a topological sort on resolved gems (#191)
|
2023
|
+
- gems from git work even when paths or repos have spaces (#196)
|
2024
|
+
- Specification#loaded_from returns a String, like Gem::Specification (#197)
|
2025
|
+
- specs eval from inside the gem directory, even when locked
|
2026
|
+
- virtual gemspecs are now saved in environment.rb for use when loading
|
2027
|
+
- unify the Installer's local index and the runtime index (#204)
|
2028
|
+
|
2029
|
+
## 0.9.11 (March 9, 2010)
|
2030
|
+
|
2031
|
+
- added roadmap with future development plans
|
2032
|
+
|
2033
|
+
Features:
|
2034
|
+
|
2035
|
+
- install command can take the path to the gemfile with --gemfile (#125)
|
2036
|
+
- unknown command line options are now rejected (#163)
|
2037
|
+
- exec command hugely sped up while locked (#177)
|
2038
|
+
- show command prints the install path if you pass it a gem name (#148)
|
2039
|
+
- open command edits an installed gem with $EDITOR (#148)
|
2040
|
+
- Gemfile allows assigning an array of groups to a gem (#114)
|
2041
|
+
- Gemfile allows :tag option on :git sources
|
2042
|
+
- improve backtraces when a gemspec is invalid
|
2043
|
+
- improve performance by installing gems from the cache if present
|
2044
|
+
|
2045
|
+
Bugfixes:
|
2046
|
+
|
2047
|
+
- normalize parameters to Bundler.require (#153)
|
2048
|
+
- check now checks installed gems rather than cached gems (#162)
|
2049
|
+
- don't update the gem index when installing after locking (#169)
|
2050
|
+
- bundle parenthesises arguments for 1.8.6 (#179)
|
2051
|
+
- gems can now be assigned to multiple groups without problems (#135)
|
2052
|
+
- fix the warning when building extensions for a gem from git with Rubygems 1.3.6
|
2053
|
+
- fix a Dependency.to_yaml error due to accidentally including sources and groups
|
2054
|
+
- don't reinstall packed gems
|
2055
|
+
- fix gems with git sources that are private repositories
|
2056
|
+
|
2057
|
+
## 0.9.10 (March 1, 2010)
|
2058
|
+
|
2059
|
+
- depends on Rubygems 1.3.6
|
2060
|
+
|
2061
|
+
Bugfixes:
|
2062
|
+
|
2063
|
+
- support locking after install --without
|
2064
|
+
- don't reinstall gems from the cache if they're already in the bundle
|
2065
|
+
- fixes for Ruby 1.8.7 and 1.9
|
2066
|
+
|
2067
|
+
## 0.9.9 (February 25, 2010)
|
2068
|
+
|
2069
|
+
Bugfixes:
|
2070
|
+
|
2071
|
+
- don't die if GEM_HOME is an empty string
|
2072
|
+
- fixes for Ruby 1.8.6 and 1.9
|
2073
|
+
|
2074
|
+
## 0.9.8 (February 23, 2010)
|
2075
|
+
|
2076
|
+
Features:
|
2077
|
+
|
2078
|
+
- pack command which both caches and locks
|
2079
|
+
- descriptive error if a cached gem is missing
|
2080
|
+
- remember the --without option after installing
|
2081
|
+
- expand paths given in the Gemfile via the :path option
|
2082
|
+
- add block syntax to the git and group options in the Gemfile
|
2083
|
+
- support gems with extensions that don't admit they depend on rake
|
2084
|
+
- generate gems using gem build gemspec so git gems can have native extensions
|
2085
|
+
- print a useful warning if building a gem fails
|
2086
|
+
- allow manual configuration via BUNDLE_PATH
|
2087
|
+
|
2088
|
+
Bugfixes:
|
2089
|
+
|
2090
|
+
- eval gemspecs in the gem directory so relative paths work
|
2091
|
+
- make default spec for git sources valid
|
2092
|
+
- don't reinstall gems that are already packed
|
2093
|
+
|
2094
|
+
## 0.9.7 (February 17, 2010)
|
2095
|
+
|
2096
|
+
Bugfixes:
|
2097
|
+
|
2098
|
+
- don't say that a gem from an excluded group is "installing"
|
2099
|
+
- improve crippling rubygems in locked scenarios
|
2100
|
+
|
2101
|
+
## 0.9.6 (February 16, 2010)
|
2102
|
+
|
2103
|
+
Features:
|
2104
|
+
|
2105
|
+
- allow String group names
|
2106
|
+
- a number of improvements in the documentation and error messages
|
2107
|
+
|
2108
|
+
Bugfixes:
|
2109
|
+
|
2110
|
+
- set SourceIndex#spec_dirs to solve a problem involving Rails 2.3 in unlocked mode
|
2111
|
+
- ensure Rubygems is fully loaded in Ruby 1.9 before patching it
|
2112
|
+
- fix `bundle install` for a locked app without a .bundle directory
|
2113
|
+
- require gems in the order that the resolver determines
|
2114
|
+
- make the tests platform agnostic so we can confirm that they're green on JRuby
|
2115
|
+
- fixes for Ruby 1.9
|
2116
|
+
|
2117
|
+
## 0.9.5 (Feburary 12, 2010)
|
2118
|
+
|
2119
|
+
Features:
|
2120
|
+
|
2121
|
+
- added support for :path => "relative/path"
|
2122
|
+
- added support for older versions of git
|
2123
|
+
- added `bundle install --disable-shared-gems`
|
2124
|
+
- Bundler.require fails silently if a library does not have a file on the load path with its name
|
2125
|
+
- Basic support for multiple rubies by namespacing the default bundle path using the version and engine
|
2126
|
+
|
2127
|
+
Bugfixes:
|
2128
|
+
|
2129
|
+
- if the bundle is locked and .bundle/environment.rb is not present when Bundler.setup is called, generate it
|
2130
|
+
- same if it's not present with `bundle check`
|
2131
|
+
- same if it's not present with `bundle install`
|