bundler 1.15.1 → 1.17.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bundler might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/CHANGELOG.md +320 -0
- data/README.md +17 -8
- data/bundler.gemspec +25 -9
- data/exe/bundle +1 -6
- data/exe/bundle_ruby +4 -3
- data/lib/bundler/build_metadata.rb +53 -0
- data/lib/bundler/capistrano.rb +5 -0
- data/lib/bundler/cli/add.rb +15 -6
- data/lib/bundler/cli/binstubs.rb +17 -9
- data/lib/bundler/cli/cache.rb +5 -4
- data/lib/bundler/cli/check.rb +3 -5
- data/lib/bundler/cli/clean.rb +5 -6
- data/lib/bundler/cli/common.rb +11 -2
- data/lib/bundler/cli/config.rb +2 -1
- data/lib/bundler/cli/console.rb +2 -1
- data/lib/bundler/cli/doctor.rb +48 -1
- data/lib/bundler/cli/exec.rb +6 -5
- data/lib/bundler/cli/gem.rb +13 -8
- data/lib/bundler/cli/info.rb +0 -1
- data/lib/bundler/cli/init.rb +18 -6
- data/lib/bundler/cli/inject.rb +1 -0
- data/lib/bundler/cli/install.rb +64 -77
- data/lib/bundler/cli/issue.rb +1 -1
- data/lib/bundler/cli/list.rb +58 -0
- data/lib/bundler/cli/lock.rb +0 -1
- data/lib/bundler/cli/open.rb +2 -2
- data/lib/bundler/cli/outdated.rb +20 -9
- data/lib/bundler/cli/package.rb +9 -6
- data/lib/bundler/cli/platform.rb +1 -0
- data/lib/bundler/cli/plugin.rb +1 -0
- data/lib/bundler/cli/pristine.rb +20 -6
- data/lib/bundler/cli/remove.rb +18 -0
- data/lib/bundler/cli/show.rb +0 -1
- data/lib/bundler/cli/update.rb +35 -7
- data/lib/bundler/cli/viz.rb +4 -0
- data/lib/bundler/cli.rb +234 -90
- data/lib/bundler/compact_index_client/cache.rb +1 -2
- data/lib/bundler/compact_index_client/updater.rb +35 -7
- data/lib/bundler/compact_index_client.rb +1 -0
- data/lib/bundler/compatibility_guard.rb +14 -0
- data/lib/bundler/constants.rb +1 -0
- data/lib/bundler/current_ruby.rb +13 -5
- data/lib/bundler/definition.rb +192 -139
- data/lib/bundler/dep_proxy.rb +3 -1
- data/lib/bundler/dependency.rb +9 -9
- data/lib/bundler/deployment.rb +1 -1
- data/lib/bundler/deprecate.rb +15 -3
- data/lib/bundler/dsl.rb +115 -64
- data/lib/bundler/endpoint_specification.rb +10 -1
- data/lib/bundler/env.rb +90 -29
- data/lib/bundler/environment_preserver.rb +27 -6
- data/lib/bundler/errors.rb +1 -0
- data/lib/bundler/feature_flag.rb +46 -4
- data/lib/bundler/fetcher/base.rb +1 -0
- data/lib/bundler/fetcher/compact_index.rb +2 -11
- data/lib/bundler/fetcher/dependency.rb +2 -1
- data/lib/bundler/fetcher/downloader.rb +11 -5
- data/lib/bundler/fetcher/index.rb +3 -2
- data/lib/bundler/fetcher.rb +18 -11
- data/lib/bundler/friendly_errors.rb +6 -1
- data/lib/bundler/gem_helper.rb +19 -10
- data/lib/bundler/gem_helpers.rb +1 -0
- data/lib/bundler/gem_remote_fetcher.rb +1 -0
- data/lib/bundler/gem_tasks.rb +1 -0
- data/lib/bundler/gem_version_promoter.rb +17 -2
- data/lib/bundler/gemdeps.rb +1 -0
- data/lib/bundler/graph.rb +1 -0
- data/lib/bundler/index.rb +8 -8
- data/lib/bundler/injector.rb +192 -30
- data/lib/bundler/inline.rb +10 -10
- data/lib/bundler/installer/gem_installer.rb +12 -2
- data/lib/bundler/installer/parallel_installer.rb +78 -42
- data/lib/bundler/installer/standalone.rb +1 -0
- data/lib/bundler/installer.rb +138 -53
- data/lib/bundler/lazy_specification.rb +3 -2
- data/lib/bundler/lockfile_generator.rb +95 -0
- data/lib/bundler/lockfile_parser.rb +10 -4
- data/lib/bundler/match_platform.rb +1 -0
- data/lib/bundler/mirror.rb +8 -5
- data/lib/bundler/plugin/api/source.rb +9 -2
- data/lib/bundler/plugin/events.rb +61 -0
- data/lib/bundler/plugin/index.rb +7 -2
- data/lib/bundler/plugin/installer.rb +7 -6
- data/lib/bundler/plugin/source_list.rb +7 -8
- data/lib/bundler/plugin.rb +13 -5
- data/lib/bundler/process_lock.rb +24 -0
- data/lib/bundler/psyched_yaml.rb +10 -0
- data/lib/bundler/remote_specification.rb +10 -1
- data/lib/bundler/resolver/spec_group.rb +106 -0
- data/lib/bundler/resolver.rb +158 -195
- data/lib/bundler/retry.rb +1 -0
- data/lib/bundler/ruby_dsl.rb +1 -0
- data/lib/bundler/ruby_version.rb +2 -1
- data/lib/bundler/rubygems_ext.rb +5 -4
- data/lib/bundler/rubygems_gem_installer.rb +31 -1
- data/lib/bundler/rubygems_integration.rb +71 -32
- data/lib/bundler/runtime.rb +11 -9
- data/lib/bundler/settings/validator.rb +102 -0
- data/lib/bundler/settings.rb +213 -86
- data/lib/bundler/setup.rb +4 -7
- data/lib/bundler/shared_helpers.rb +131 -26
- data/lib/bundler/similarity_detector.rb +1 -0
- data/lib/bundler/source/gemspec.rb +1 -0
- data/lib/bundler/source/git/git_proxy.rb +21 -11
- data/lib/bundler/source/git.rb +24 -19
- data/lib/bundler/source/metadata.rb +62 -0
- data/lib/bundler/source/path/installer.rb +2 -0
- data/lib/bundler/source/path.rb +11 -7
- data/lib/bundler/source/rubygems/remote.rb +8 -2
- data/lib/bundler/source/rubygems.rb +161 -84
- data/lib/bundler/source.rb +36 -0
- data/lib/bundler/source_list.rb +75 -15
- data/lib/bundler/spec_set.rb +12 -6
- data/lib/bundler/ssl_certs/certificate_manager.rb +2 -1
- data/lib/bundler/stub_specification.rb +1 -0
- data/lib/bundler/templates/.document +1 -0
- data/lib/bundler/templates/Executable +12 -0
- data/lib/bundler/templates/Executable.bundler +105 -0
- data/lib/bundler/templates/Gemfile +3 -0
- data/lib/bundler/templates/gems.rb +8 -0
- data/lib/bundler/templates/newgem/Gemfile.tt +2 -0
- data/lib/bundler/templates/newgem/README.md.tt +1 -1
- data/lib/bundler/templates/newgem/gitignore.tt +0 -1
- data/lib/bundler/templates/newgem/lib/newgem.rb.tt +1 -0
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +12 -3
- data/lib/bundler/templates/newgem/rspec.tt +1 -0
- data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +0 -2
- data/lib/bundler/templates/newgem/{.travis.yml.tt → travis.yml.tt} +2 -0
- data/lib/bundler/ui/rg_proxy.rb +1 -0
- data/lib/bundler/ui/shell.rb +17 -4
- data/lib/bundler/ui/silent.rb +1 -0
- data/lib/bundler/ui.rb +1 -0
- data/lib/bundler/uri_credentials_filter.rb +1 -0
- data/lib/bundler/vendor/fileutils/lib/fileutils.rb +1638 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +26 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +7 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +1 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +1 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +1 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +1 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +1 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +1 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +1 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +1 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +1 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +15 -4
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +3 -2
- data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +75 -7
- data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +2 -1
- data/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +1 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +3 -1
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +491 -148
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +1 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +8 -4
- data/lib/bundler/vendor/molinillo/lib/molinillo.rb +2 -0
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +3 -1
- data/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +1 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +1 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +9 -1
- data/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +45 -8
- data/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +9 -3
- data/lib/bundler/vendor/thor/lib/thor/actions.rb +6 -3
- data/lib/bundler/vendor/thor/lib/thor/base.rb +27 -4
- data/lib/bundler/vendor/thor/lib/thor/command.rb +9 -7
- data/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +12 -0
- data/lib/bundler/vendor/thor/lib/thor/group.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +2 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/option.rb +5 -5
- data/lib/bundler/vendor/thor/lib/thor/parser/options.rb +6 -5
- data/lib/bundler/vendor/thor/lib/thor/runner.rb +6 -4
- data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +10 -9
- data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor.rb +25 -8
- data/lib/bundler/vendored_fileutils.rb +9 -0
- data/lib/bundler/vendored_molinillo.rb +1 -0
- data/lib/bundler/vendored_persistent.rb +35 -0
- data/lib/bundler/vendored_thor.rb +1 -0
- data/lib/bundler/version.rb +6 -2
- data/lib/bundler/version_ranges.rb +1 -0
- data/lib/bundler/vlad.rb +5 -0
- data/lib/bundler/worker.rb +1 -0
- data/lib/bundler/yaml_serializer.rb +3 -3
- data/lib/bundler.rb +86 -52
- data/man/bundle-add.1 +18 -3
- data/man/bundle-add.1.txt +26 -14
- data/man/bundle-add.ronn +13 -2
- data/man/bundle-binstubs.1 +11 -1
- data/man/bundle-binstubs.1.txt +33 -18
- data/man/bundle-binstubs.ronn +15 -1
- data/man/bundle-check.1 +4 -4
- data/man/bundle-check.1.txt +15 -14
- data/man/bundle-check.ronn +3 -3
- data/man/bundle-clean.1 +1 -1
- data/man/bundle-clean.1.txt +10 -10
- data/man/bundle-config.1 +129 -29
- data/man/bundle-config.1.txt +285 -174
- data/man/bundle-config.ronn +167 -88
- data/man/bundle-doctor.1 +44 -0
- data/man/bundle-doctor.1.txt +44 -0
- data/man/bundle-doctor.ronn +33 -0
- data/man/bundle-exec.1 +6 -3
- data/man/bundle-exec.1.txt +78 -71
- data/man/bundle-exec.ronn +10 -3
- data/man/bundle-gem.1 +4 -4
- data/man/bundle-gem.1.txt +41 -40
- data/man/bundle-gem.ronn +3 -2
- data/man/bundle-info.1 +1 -1
- data/man/bundle-info.1.txt +8 -8
- data/man/bundle-init.1 +9 -4
- data/man/bundle-init.1.txt +23 -13
- data/man/bundle-init.ronn +15 -4
- data/man/bundle-inject.1 +4 -4
- data/man/bundle-inject.1.txt +10 -10
- data/man/bundle-inject.ronn +3 -3
- data/man/bundle-install.1 +31 -28
- data/man/bundle-install.1.txt +205 -194
- data/man/bundle-install.ronn +44 -35
- data/man/bundle-list.1 +50 -0
- data/man/bundle-list.1.txt +43 -0
- data/man/bundle-list.ronn +33 -0
- data/man/bundle-lock.1 +1 -1
- data/man/bundle-lock.1.txt +47 -47
- data/man/bundle-lock.ronn +1 -1
- data/man/bundle-open.1 +1 -1
- data/man/bundle-open.1.txt +7 -7
- data/man/bundle-outdated.1 +7 -3
- data/man/bundle-outdated.1.txt +40 -36
- data/man/bundle-outdated.ronn +6 -2
- data/man/bundle-package.1 +6 -3
- data/man/bundle-package.1.txt +44 -39
- data/man/bundle-package.ronn +7 -2
- data/man/bundle-platform.1 +1 -1
- data/man/bundle-platform.1.txt +13 -13
- data/man/bundle-pristine.1 +21 -3
- data/man/bundle-pristine.1.txt +33 -10
- data/man/bundle-pristine.ronn +24 -3
- data/man/bundle-remove.1 +31 -0
- data/man/bundle-remove.1.txt +34 -0
- data/man/bundle-remove.ronn +23 -0
- data/man/bundle-show.1 +3 -3
- data/man/bundle-show.1.txt +14 -12
- data/man/bundle-show.ronn +3 -2
- data/man/bundle-update.1 +13 -9
- data/man/bundle-update.1.txt +133 -130
- data/man/bundle-update.ronn +21 -17
- data/man/bundle-viz.1 +7 -7
- data/man/bundle-viz.1.txt +17 -15
- data/man/bundle-viz.ronn +6 -6
- data/man/bundle.1 +31 -32
- data/man/bundle.1.txt +63 -75
- data/man/bundle.ronn +35 -47
- data/man/gemfile.5 +44 -8
- data/man/gemfile.5.ronn +54 -8
- data/man/gemfile.5.txt +218 -165
- data/man/index.txt +25 -15
- metadata +36 -44
- data/.codeclimate.yml +0 -25
- data/.gitignore +0 -18
- data/.rspec +0 -3
- data/.rubocop.yml +0 -131
- data/.rubocop_todo.yml +0 -418
- data/.travis.yml +0 -122
- data/CODE_OF_CONDUCT.md +0 -42
- data/CONTRIBUTING.md +0 -17
- data/Rakefile +0 -346
- data/bin/rake +0 -19
- data/bin/rspec +0 -15
- data/bin/rubocop +0 -17
- data/bin/with_rubygems +0 -39
- data/doc/README.md +0 -30
- data/doc/TROUBLESHOOTING.md +0 -64
- data/doc/contributing/BUG_TRIAGE.md +0 -36
- data/doc/contributing/COMMUNITY.md +0 -13
- data/doc/contributing/GETTING_HELP.md +0 -11
- data/doc/contributing/HOW_YOU_CAN_HELP.md +0 -27
- data/doc/contributing/ISSUES.md +0 -51
- data/doc/contributing/README.md +0 -38
- data/doc/development/NEW_FEATURES.md +0 -10
- data/doc/development/PULL_REQUESTS.md +0 -40
- data/doc/development/README.md +0 -19
- data/doc/development/RELEASING.md +0 -9
- data/doc/development/SETUP.md +0 -29
- data/doc/documentation/README.md +0 -29
- data/doc/documentation/VISION.md +0 -26
- data/doc/documentation/WRITING.md +0 -54
- data/lib/bundler/postit_trampoline.rb +0 -73
- data/lib/bundler/vendor/postit/lib/postit/environment.rb +0 -44
- data/lib/bundler/vendor/postit/lib/postit/installer.rb +0 -28
- data/lib/bundler/vendor/postit/lib/postit/parser.rb +0 -21
- data/lib/bundler/vendor/postit/lib/postit/setup.rb +0 -12
- data/lib/bundler/vendor/postit/lib/postit/version.rb +0 -3
- data/lib/bundler/vendor/postit/lib/postit.rb +0 -15
- data/task/release.rake +0 -116
data/.rubocop_todo.yml
DELETED
@@ -1,418 +0,0 @@
|
|
1
|
-
# This configuration was generated by
|
2
|
-
# `rubocop --auto-gen-config`
|
3
|
-
# on 2017-04-08 17:26:10 -0500 using RuboCop version 0.48.0.
|
4
|
-
# The point is for the user to remove these configuration records
|
5
|
-
# one by one as the offenses are removed from the code base.
|
6
|
-
# Note that changes in the inspected code, or installation of new
|
7
|
-
# versions of RuboCop, may require this file to be generated again.
|
8
|
-
|
9
|
-
# Offense count: 23
|
10
|
-
Lint/AmbiguousBlockAssociation:
|
11
|
-
Exclude:
|
12
|
-
- 'lib/bundler/definition.rb'
|
13
|
-
- 'lib/bundler/resolver.rb'
|
14
|
-
- 'lib/bundler/runtime.rb'
|
15
|
-
- 'lib/bundler/source/path.rb'
|
16
|
-
- 'spec/bundler/compact_index_client/updater_spec.rb'
|
17
|
-
- 'spec/commands/init_spec.rb'
|
18
|
-
- 'spec/commands/install_spec.rb'
|
19
|
-
- 'spec/install/gems/flex_spec.rb'
|
20
|
-
- 'spec/lock/lockfile_spec.rb'
|
21
|
-
- 'spec/runtime/setup_spec.rb'
|
22
|
-
- 'spec/support/indexes.rb'
|
23
|
-
|
24
|
-
# Offense count: 2
|
25
|
-
Lint/EmptyWhen:
|
26
|
-
Exclude:
|
27
|
-
- 'lib/bundler/friendly_errors.rb'
|
28
|
-
- 'spec/support/builders.rb'
|
29
|
-
|
30
|
-
# Offense count: 4
|
31
|
-
Lint/HandleExceptions:
|
32
|
-
Exclude:
|
33
|
-
- 'lib/bundler/installer.rb'
|
34
|
-
- 'lib/bundler/psyched_yaml.rb'
|
35
|
-
- 'lib/bundler/vendored_persistent.rb'
|
36
|
-
|
37
|
-
# Offense count: 1
|
38
|
-
Lint/IneffectiveAccessModifier:
|
39
|
-
Exclude:
|
40
|
-
- 'lib/bundler/settings.rb'
|
41
|
-
|
42
|
-
# Offense count: 3
|
43
|
-
Lint/NestedMethodDefinition:
|
44
|
-
Exclude:
|
45
|
-
- 'lib/bundler/inline.rb'
|
46
|
-
- 'spec/support/builders.rb'
|
47
|
-
|
48
|
-
# Offense count: 5
|
49
|
-
Lint/RescueException:
|
50
|
-
Exclude:
|
51
|
-
- 'lib/bundler/cli.rb'
|
52
|
-
- 'lib/bundler/dsl.rb'
|
53
|
-
- 'lib/bundler/friendly_errors.rb'
|
54
|
-
- 'lib/bundler/rubygems_integration.rb'
|
55
|
-
- 'lib/bundler/worker.rb'
|
56
|
-
|
57
|
-
# Offense count: 2
|
58
|
-
Lint/ShadowedException:
|
59
|
-
Exclude:
|
60
|
-
- 'lib/bundler.rb'
|
61
|
-
- 'lib/bundler/rubygems_integration.rb'
|
62
|
-
|
63
|
-
# Offense count: 1
|
64
|
-
# Configuration parameters: ContextCreatingMethods, MethodCreatingMethods.
|
65
|
-
Lint/UselessAccessModifier:
|
66
|
-
Exclude:
|
67
|
-
- 'lib/bundler/fetcher.rb'
|
68
|
-
|
69
|
-
# Offense count: 6
|
70
|
-
Lint/UselessAssignment:
|
71
|
-
Exclude:
|
72
|
-
- 'lib/bundler/index.rb'
|
73
|
-
- 'lib/bundler/installer.rb'
|
74
|
-
|
75
|
-
# Offense count: 451
|
76
|
-
# Configuration parameters: CountComments, ExcludedMethods.
|
77
|
-
Metrics/BlockLength:
|
78
|
-
Max: 988
|
79
|
-
|
80
|
-
# Offense count: 2035
|
81
|
-
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
82
|
-
# URISchemes: http, https
|
83
|
-
Metrics/LineLength:
|
84
|
-
Max: 207
|
85
|
-
|
86
|
-
# Offense count: 7
|
87
|
-
# Cop supports --auto-correct.
|
88
|
-
Performance/RedundantBlockCall:
|
89
|
-
Exclude:
|
90
|
-
- 'lib/bundler/dsl.rb'
|
91
|
-
- 'lib/bundler/gem_helper.rb'
|
92
|
-
- 'lib/bundler/retry.rb'
|
93
|
-
- 'lib/bundler/shared_helpers.rb'
|
94
|
-
- 'spec/support/helpers.rb'
|
95
|
-
|
96
|
-
# Offense count: 2
|
97
|
-
# Cop supports --auto-correct.
|
98
|
-
Performance/RedundantMatch:
|
99
|
-
Exclude:
|
100
|
-
- 'lib/bundler/definition.rb'
|
101
|
-
- 'lib/bundler/lockfile_parser.rb'
|
102
|
-
|
103
|
-
# Offense count: 6
|
104
|
-
# Cop supports --auto-correct.
|
105
|
-
# Configuration parameters: MaxKeyValuePairs.
|
106
|
-
Performance/RedundantMerge:
|
107
|
-
Exclude:
|
108
|
-
- 'lib/bundler/cli/gem.rb'
|
109
|
-
|
110
|
-
# Offense count: 4
|
111
|
-
Security/Eval:
|
112
|
-
Exclude:
|
113
|
-
- 'lib/bundler.rb'
|
114
|
-
- 'lib/bundler/endpoint_specification.rb'
|
115
|
-
- 'spec/support/streams.rb'
|
116
|
-
|
117
|
-
# Offense count: 6
|
118
|
-
Security/MarshalLoad:
|
119
|
-
Exclude:
|
120
|
-
- 'lib/bundler.rb'
|
121
|
-
- 'spec/install/gems/resolving_spec.rb'
|
122
|
-
- 'spec/support/artifice/compact_index.rb'
|
123
|
-
- 'spec/support/artifice/endpoint.rb'
|
124
|
-
|
125
|
-
# Offense count: 2
|
126
|
-
# Cop supports --auto-correct.
|
127
|
-
Security/YAMLLoad:
|
128
|
-
Exclude:
|
129
|
-
- 'spec/bundler/yaml_serializer_spec.rb'
|
130
|
-
- 'spec/commands/inject_spec.rb'
|
131
|
-
|
132
|
-
# Offense count: 1
|
133
|
-
Style/AccessorMethodName:
|
134
|
-
Exclude:
|
135
|
-
- 'lib/bundler/source/git.rb'
|
136
|
-
|
137
|
-
# Offense count: 4
|
138
|
-
Style/CaseEquality:
|
139
|
-
Exclude:
|
140
|
-
- 'lib/bundler/dsl.rb'
|
141
|
-
- 'lib/bundler/match_platform.rb'
|
142
|
-
- 'lib/bundler/rubygems_ext.rb'
|
143
|
-
|
144
|
-
# Offense count: 25
|
145
|
-
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
146
|
-
# SupportedStyles: nested, compact
|
147
|
-
Style/ClassAndModuleChildren:
|
148
|
-
Enabled: false
|
149
|
-
|
150
|
-
# Offense count: 9
|
151
|
-
# Cop supports --auto-correct.
|
152
|
-
# Configuration parameters: EnforcedStyle, SupportedStyles, SingleLineConditionsOnly, IncludeTernaryExpressions.
|
153
|
-
# SupportedStyles: assign_to_condition, assign_inside_condition
|
154
|
-
Style/ConditionalAssignment:
|
155
|
-
Exclude:
|
156
|
-
- 'lib/bundler/cli.rb'
|
157
|
-
- 'lib/bundler/cli/gem.rb'
|
158
|
-
- 'lib/bundler/cli/platform.rb'
|
159
|
-
- 'lib/bundler/dsl.rb'
|
160
|
-
- 'lib/bundler/lazy_specification.rb'
|
161
|
-
- 'lib/bundler/psyched_yaml.rb'
|
162
|
-
- 'lib/bundler/rubygems_integration.rb'
|
163
|
-
- 'lib/bundler/source/git.rb'
|
164
|
-
- 'lib/bundler/source/rubygems.rb'
|
165
|
-
|
166
|
-
# Offense count: 158
|
167
|
-
Style/Documentation:
|
168
|
-
Enabled: false
|
169
|
-
|
170
|
-
# Offense count: 304
|
171
|
-
# Cop supports --auto-correct.
|
172
|
-
Style/EmptyLineAfterMagicComment:
|
173
|
-
Enabled: false
|
174
|
-
|
175
|
-
# Offense count: 2
|
176
|
-
# Cop supports --auto-correct.
|
177
|
-
Style/EmptyLinesAroundExceptionHandlingKeywords:
|
178
|
-
Exclude:
|
179
|
-
- 'Rakefile'
|
180
|
-
|
181
|
-
# Offense count: 17
|
182
|
-
# Cop supports --auto-correct.
|
183
|
-
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
184
|
-
# SupportedStyles: compact, expanded
|
185
|
-
Style/EmptyMethod:
|
186
|
-
Exclude:
|
187
|
-
- 'exe/bundle_ruby'
|
188
|
-
- 'lib/bundler/cli.rb'
|
189
|
-
- 'lib/bundler/plugin/api/source.rb'
|
190
|
-
- 'lib/bundler/rubygems_integration.rb'
|
191
|
-
- 'lib/bundler/ui/silent.rb'
|
192
|
-
- 'spec/support/artifice/fail.rb'
|
193
|
-
|
194
|
-
# Offense count: 2
|
195
|
-
# Cop supports --auto-correct.
|
196
|
-
# Configuration parameters: AllowForAlignment, ForceEqualSignAlignment.
|
197
|
-
Style/ExtraSpacing:
|
198
|
-
Exclude:
|
199
|
-
- 'lib/bundler/cli.rb'
|
200
|
-
|
201
|
-
# Offense count: 2
|
202
|
-
# Configuration parameters: AllowedVariables.
|
203
|
-
Style/GlobalVars:
|
204
|
-
Exclude:
|
205
|
-
- 'lib/bundler/cli.rb'
|
206
|
-
- 'spec/spec_helper.rb'
|
207
|
-
|
208
|
-
# Offense count: 17
|
209
|
-
# Configuration parameters: MinBodyLength.
|
210
|
-
Style/GuardClause:
|
211
|
-
Exclude:
|
212
|
-
- 'lib/bundler/cli/cache.rb'
|
213
|
-
- 'lib/bundler/cli/clean.rb'
|
214
|
-
- 'lib/bundler/cli/install.rb'
|
215
|
-
- 'lib/bundler/cli/outdated.rb'
|
216
|
-
- 'lib/bundler/cli/package.rb'
|
217
|
-
- 'lib/bundler/definition.rb'
|
218
|
-
- 'lib/bundler/dsl.rb'
|
219
|
-
- 'lib/bundler/installer.rb'
|
220
|
-
- 'lib/bundler/runtime.rb'
|
221
|
-
- 'lib/bundler/source/path/installer.rb'
|
222
|
-
- 'lib/bundler/source_list.rb'
|
223
|
-
- 'spec/commands/newgem_spec.rb'
|
224
|
-
- 'spec/support/sometimes.rb'
|
225
|
-
|
226
|
-
# Offense count: 1
|
227
|
-
Style/IfInsideElse:
|
228
|
-
Exclude:
|
229
|
-
- 'lib/bundler/cli/install.rb'
|
230
|
-
|
231
|
-
# Offense count: 1
|
232
|
-
Style/IfUnlessModifierOfIfUnless:
|
233
|
-
Exclude:
|
234
|
-
- 'spec/support/helpers.rb'
|
235
|
-
|
236
|
-
# Offense count: 10
|
237
|
-
# Cop supports --auto-correct.
|
238
|
-
# Configuration parameters: SupportedStyles, IndentationWidth.
|
239
|
-
# SupportedStyles: special_inside_parentheses, consistent, align_brackets
|
240
|
-
Style/IndentArray:
|
241
|
-
EnforcedStyle: consistent
|
242
|
-
|
243
|
-
# Offense count: 34
|
244
|
-
# Cop supports --auto-correct.
|
245
|
-
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
246
|
-
# SupportedStyles: auto_detection, squiggly, active_support, powerpack, unindent
|
247
|
-
Style/IndentHeredoc:
|
248
|
-
Enabled: false
|
249
|
-
|
250
|
-
# Offense count: 9
|
251
|
-
# Cop supports --auto-correct.
|
252
|
-
# Configuration parameters: InverseMethods, InverseBlocks.
|
253
|
-
Style/InverseMethods:
|
254
|
-
Exclude:
|
255
|
-
- 'lib/bundler/cli/doctor.rb'
|
256
|
-
- 'lib/bundler/definition.rb'
|
257
|
-
- 'lib/bundler/dsl.rb'
|
258
|
-
- 'lib/bundler/index.rb'
|
259
|
-
- 'lib/bundler/resolver.rb'
|
260
|
-
|
261
|
-
# Offense count: 6
|
262
|
-
Style/MethodMissing:
|
263
|
-
Exclude:
|
264
|
-
- 'lib/bundler/dep_proxy.rb'
|
265
|
-
- 'lib/bundler/dsl.rb'
|
266
|
-
- 'lib/bundler/lazy_specification.rb'
|
267
|
-
- 'lib/bundler/plugin/dsl.rb'
|
268
|
-
- 'lib/bundler/remote_specification.rb'
|
269
|
-
- 'spec/support/builders.rb'
|
270
|
-
|
271
|
-
# Offense count: 2
|
272
|
-
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
273
|
-
# SupportedStyles: separated, grouped
|
274
|
-
Style/MixinGrouping:
|
275
|
-
Exclude:
|
276
|
-
- 'lib/bundler/spec_set.rb'
|
277
|
-
- 'spec/runtime/setup_spec.rb'
|
278
|
-
|
279
|
-
# Offense count: 2
|
280
|
-
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
281
|
-
# SupportedStyles: module_function, extend_self
|
282
|
-
Style/ModuleFunction:
|
283
|
-
Exclude:
|
284
|
-
- 'lib/bundler/shared_helpers.rb'
|
285
|
-
- 'spec/support/path.rb'
|
286
|
-
|
287
|
-
# Offense count: 11
|
288
|
-
# Cop supports --auto-correct.
|
289
|
-
Style/MultilineIfModifier:
|
290
|
-
Exclude:
|
291
|
-
- 'bin/with_rubygems'
|
292
|
-
- 'lib/bundler/installer.rb'
|
293
|
-
- 'lib/bundler/psyched_yaml.rb'
|
294
|
-
- 'lib/bundler/rubygems_ext.rb'
|
295
|
-
- 'lib/bundler/runtime.rb'
|
296
|
-
- 'lib/bundler/source/rubygems.rb'
|
297
|
-
|
298
|
-
# Offense count: 3
|
299
|
-
# Cop supports --auto-correct.
|
300
|
-
# Configuration parameters: EnforcedStyle, SupportedStyles, IndentationWidth.
|
301
|
-
# SupportedStyles: aligned, indented, indented_relative_to_receiver
|
302
|
-
Style/MultilineMethodCallIndentation:
|
303
|
-
Exclude:
|
304
|
-
- 'lib/bundler/cli/common.rb'
|
305
|
-
- 'spec/bundler/plugin/source_list_spec.rb'
|
306
|
-
|
307
|
-
# Offense count: 3
|
308
|
-
# Cop supports --auto-correct.
|
309
|
-
Style/NestedParenthesizedCalls:
|
310
|
-
Exclude:
|
311
|
-
- 'lib/bundler/resolver.rb'
|
312
|
-
- 'spec/commands/lock_spec.rb'
|
313
|
-
- 'spec/runtime/setup_spec.rb'
|
314
|
-
|
315
|
-
# Offense count: 6
|
316
|
-
# Cop supports --auto-correct.
|
317
|
-
# Configuration parameters: AutoCorrect, EnforcedStyle, SupportedStyles.
|
318
|
-
# SupportedStyles: predicate, comparison
|
319
|
-
Style/NumericPredicate:
|
320
|
-
Exclude:
|
321
|
-
- 'spec/**/*'
|
322
|
-
- 'lib/bundler/gem_helper.rb'
|
323
|
-
- 'lib/bundler/mirror.rb'
|
324
|
-
- 'lib/bundler/source/git/git_proxy.rb'
|
325
|
-
- 'lib/bundler/source/path.rb'
|
326
|
-
|
327
|
-
# Offense count: 9
|
328
|
-
# Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist.
|
329
|
-
# NamePrefix: is_, has_, have_
|
330
|
-
# NamePrefixBlacklist: is_, has_, have_
|
331
|
-
# NameWhitelist: is_a?
|
332
|
-
Style/PredicateName:
|
333
|
-
Exclude:
|
334
|
-
- 'spec/**/*'
|
335
|
-
- 'lib/bundler/definition.rb'
|
336
|
-
- 'lib/bundler/installer/parallel_installer.rb'
|
337
|
-
- 'lib/bundler/settings.rb'
|
338
|
-
- 'lib/bundler/source/git.rb'
|
339
|
-
- 'lib/bundler/source/git/git_proxy.rb'
|
340
|
-
- 'lib/bundler/source/path.rb'
|
341
|
-
|
342
|
-
# Offense count: 24
|
343
|
-
# Cop supports --auto-correct.
|
344
|
-
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
345
|
-
# SupportedStyles: compact, exploded
|
346
|
-
Style/RaiseArgs:
|
347
|
-
Exclude:
|
348
|
-
- 'lib/bundler/cli/install.rb'
|
349
|
-
- 'lib/bundler/deployment.rb'
|
350
|
-
- 'lib/bundler/fetcher/downloader.rb'
|
351
|
-
- 'lib/bundler/fetcher/index.rb'
|
352
|
-
- 'lib/bundler/installer/standalone.rb'
|
353
|
-
- 'lib/bundler/rubygems_integration.rb'
|
354
|
-
- 'lib/bundler/shared_helpers.rb'
|
355
|
-
- 'lib/bundler/source/git/git_proxy.rb'
|
356
|
-
- 'lib/bundler/source/rubygems/remote.rb'
|
357
|
-
- 'spec/bundler/endpoint_specification_spec.rb'
|
358
|
-
- 'spec/bundler/fetcher/dependency_spec.rb'
|
359
|
-
- 'spec/bundler/fetcher/downloader_spec.rb'
|
360
|
-
- 'spec/bundler/fetcher/index_spec.rb'
|
361
|
-
- 'spec/bundler/rubygems_integration_spec.rb'
|
362
|
-
- 'spec/bundler/shared_helpers_spec.rb'
|
363
|
-
|
364
|
-
# Offense count: 2
|
365
|
-
# Cop supports --auto-correct.
|
366
|
-
Style/RedundantParentheses:
|
367
|
-
Exclude:
|
368
|
-
- 'lib/bundler/cli/console.rb'
|
369
|
-
- 'lib/bundler/dsl.rb'
|
370
|
-
|
371
|
-
# Offense count: 1
|
372
|
-
# Cop supports --auto-correct.
|
373
|
-
# Configuration parameters: AllowForAlignment.
|
374
|
-
Style/SpaceAroundOperators:
|
375
|
-
Exclude:
|
376
|
-
- 'lib/bundler/retry.rb'
|
377
|
-
|
378
|
-
# Offense count: 2
|
379
|
-
# Cop supports --auto-correct.
|
380
|
-
# Configuration parameters: EnforcedStyle, SupportedStyles, EnforcedStyleForEmptyBraces, SupportedStylesForEmptyBraces, SpaceBeforeBlockParameters.
|
381
|
-
# SupportedStyles: space, no_space
|
382
|
-
# SupportedStylesForEmptyBraces: space, no_space
|
383
|
-
Style/SpaceInsideBlockBraces:
|
384
|
-
Exclude:
|
385
|
-
- 'lib/bundler/installer/parallel_installer.rb'
|
386
|
-
|
387
|
-
# Offense count: 2
|
388
|
-
# Cop supports --auto-correct.
|
389
|
-
# Configuration parameters: EnforcedStyle, SupportedStyles, AllowSafeAssignment.
|
390
|
-
# SupportedStyles: require_parentheses, require_no_parentheses, require_parentheses_when_complex
|
391
|
-
Style/TernaryParentheses:
|
392
|
-
Exclude:
|
393
|
-
- 'lib/bundler/cli/common.rb'
|
394
|
-
- 'lib/bundler/gem_version_promoter.rb'
|
395
|
-
|
396
|
-
# Offense count: 9
|
397
|
-
# Cop supports --auto-correct.
|
398
|
-
# Configuration parameters: EnforcedStyleForMultiline, SupportedStylesForMultiline.
|
399
|
-
# SupportedStylesForMultiline: comma, consistent_comma, no_comma
|
400
|
-
Style/TrailingCommaInLiteral:
|
401
|
-
Exclude:
|
402
|
-
- 'lib/bundler/cli/gem.rb'
|
403
|
-
- 'lib/bundler/fetcher.rb'
|
404
|
-
- 'lib/bundler/gem_helpers.rb'
|
405
|
-
- 'lib/bundler/graph.rb'
|
406
|
-
- 'lib/bundler/ruby_version.rb'
|
407
|
-
- 'lib/bundler/similarity_detector.rb'
|
408
|
-
- 'spec/support/artifice/endpoint.rb'
|
409
|
-
|
410
|
-
# Offense count: 7
|
411
|
-
# Cop supports --auto-correct.
|
412
|
-
Style/UnneededInterpolation:
|
413
|
-
Exclude:
|
414
|
-
- 'lib/bundler/cli/config.rb'
|
415
|
-
- 'lib/bundler/env.rb'
|
416
|
-
- 'spec/bundler/shared_helpers_spec.rb'
|
417
|
-
- 'spec/cache/git_spec.rb'
|
418
|
-
- 'spec/commands/exec_spec.rb'
|
data/.travis.yml
DELETED
@@ -1,122 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
script: rake spec:travis
|
3
|
-
before_script:
|
4
|
-
- travis_retry rake spec:travis:deps
|
5
|
-
- travis_retry rake man:build
|
6
|
-
- travis_retry rake spec:rubygems:clone_rubygems_$RGV
|
7
|
-
|
8
|
-
branches:
|
9
|
-
only:
|
10
|
-
- master
|
11
|
-
- auto
|
12
|
-
- /.+-dev$/
|
13
|
-
- /.+-stable$/
|
14
|
-
|
15
|
-
notifications:
|
16
|
-
slack:
|
17
|
-
on_success: change
|
18
|
-
on_failure: always
|
19
|
-
rooms:
|
20
|
-
- secure: JxBi7DDJGkIF/7f/FSN/HUHpvV4EKfQccZHTPd1b2pNJn3GXo6u+tNVbAw2WjxYzPyPQI3ZcYBCU9SEXp/i7VmG8uMzh8Kyildw+miSKYKVb90uYqcsXWzbxwyNBgJLvyDkzST45H5lgnyAicee3WkFes/WDZikIajbH7ztdb04=
|
21
|
-
|
22
|
-
addons:
|
23
|
-
code_climate:
|
24
|
-
repo_token:
|
25
|
-
secure: "TrzIv116JLGUxm6PAUskCYrv8KTDguncKROVwbnjVPKTGDAgoDderd8JUdDEXrKoZ9qGLD2TPYKExt9/QDl71E+qHdWnVqWv4HKCUk2P9z/VLKzHuggOUBkCXiJUhjywUieCJhI3N92bfq2EjSBbu2/OFHqWOjLQ+QCooTEBjv8="
|
26
|
-
|
27
|
-
rvm:
|
28
|
-
- 2.4.1
|
29
|
-
- 2.3.4
|
30
|
-
- 2.2.7
|
31
|
-
- 2.1.10
|
32
|
-
- 2.0.0
|
33
|
-
- 1.9.3
|
34
|
-
- 1.8.7
|
35
|
-
|
36
|
-
# Rubygems versions MUST be available as rake tasks
|
37
|
-
# see Rakefile:125 for the list of possible RGV values
|
38
|
-
env:
|
39
|
-
# We need to know if changes to rubygems will break bundler on release
|
40
|
-
- RGV=master
|
41
|
-
# Test the latest rubygems release with all of our supported rubies
|
42
|
-
- RGV=v2.6.8
|
43
|
-
|
44
|
-
matrix:
|
45
|
-
include:
|
46
|
-
# Ruby 2.4, Rubygems 2.6.8 and up
|
47
|
-
# Ruby 2.3, Rubygems 2.5.1 and up
|
48
|
-
- rvm: 2.2.6
|
49
|
-
env: RGV=v2.5.2
|
50
|
-
# Ruby 2.2, Rubygems 2.4.5 and up
|
51
|
-
- rvm: 2.2.6
|
52
|
-
env: RGV=v2.4.8
|
53
|
-
# Ruby 2.1, Rubygems 2.2.2 and up
|
54
|
-
- rvm: 2.1.10
|
55
|
-
env: RGV=v2.2.5
|
56
|
-
# Ruby 2.0.0, Rubygems 2.0.0 and up
|
57
|
-
- rvm: 2.0.0
|
58
|
-
env: RGV=v2.2.5
|
59
|
-
- rvm: 2.0.0
|
60
|
-
env: RGV=v2.1.11
|
61
|
-
- rvm: 2.0.0
|
62
|
-
env: RGV=v2.0.14
|
63
|
-
# Ruby 1.9.3, Rubygems 1.5.3 and up
|
64
|
-
- rvm: 1.9.3
|
65
|
-
env: RGV=v2.2.5
|
66
|
-
- rvm: 1.9.3
|
67
|
-
env: RGV=v2.1.11
|
68
|
-
- rvm: 1.9.3
|
69
|
-
env: RGV=v2.0.14
|
70
|
-
- rvm: 1.9.3
|
71
|
-
env: RGV=v1.8.29
|
72
|
-
- rvm: 1.9.3
|
73
|
-
env: RGV=v1.7.2
|
74
|
-
- rvm: 1.9.3
|
75
|
-
env: RGV=v1.6.2
|
76
|
-
- rvm: 1.9.3
|
77
|
-
env: RGV=v1.5.3
|
78
|
-
|
79
|
-
# Ruby 1.8.7, Rubygems 1.3.6 and up
|
80
|
-
- rvm: 1.8.7
|
81
|
-
env: RGV=v2.2.5
|
82
|
-
# ALLOWED FAILURES
|
83
|
-
# since the great Travis image outage, frequent random segfaults :'(
|
84
|
-
- rvm: 1.8.7
|
85
|
-
env: RGV=v2.0.14
|
86
|
-
- rvm: 1.8.7
|
87
|
-
env: RGV=v1.8.29
|
88
|
-
- rvm: 1.8.7
|
89
|
-
env: RGV=v1.7.2
|
90
|
-
- rvm: 1.8.7
|
91
|
-
env: RGV=v1.6.2
|
92
|
-
- rvm: 1.8.7
|
93
|
-
env: RGV=v1.5.3
|
94
|
-
- rvm: 1.8.7
|
95
|
-
env: RGV=v1.4.2
|
96
|
-
- rvm: 1.8.7
|
97
|
-
env: RGV=v1.3.7
|
98
|
-
- rvm: 1.8.7
|
99
|
-
env: RGV=v1.3.6
|
100
|
-
# Ruby-head (we want to know how we're doing, but not fail the build)
|
101
|
-
- rvm: ruby-head
|
102
|
-
env: RGV=master
|
103
|
-
|
104
|
-
allow_failures:
|
105
|
-
- rvm: 1.8.7
|
106
|
-
env: RGV=v2.0.14
|
107
|
-
- rvm: 1.8.7
|
108
|
-
env: RGV=v1.8.29
|
109
|
-
- rvm: 1.8.7
|
110
|
-
env: RGV=v1.7.2
|
111
|
-
- rvm: 1.8.7
|
112
|
-
env: RGV=v1.6.2
|
113
|
-
- rvm: 1.8.7
|
114
|
-
env: RGV=v1.5.3
|
115
|
-
- rvm: 1.8.7
|
116
|
-
env: RGV=v1.4.2
|
117
|
-
- rvm: 1.8.7
|
118
|
-
env: RGV=v1.3.7
|
119
|
-
- rvm: 1.8.7
|
120
|
-
env: RGV=v1.3.6
|
121
|
-
- rvm: ruby-head
|
122
|
-
env: RGV=master
|
data/CODE_OF_CONDUCT.md
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
# Bundler Code of Conduct
|
2
|
-
|
3
|
-
The Bundler project strongly values contributors from anywhere, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, race, ethnicity, age, religion, or nationality. As a result, the Bundler team has agreed to and enforces this code of conduct in order to provide a harassment-free experience for everyone who participates in the development of Bundler.
|
4
|
-
|
5
|
-
### Summary
|
6
|
-
|
7
|
-
Harassment in code and discussion or violation of physical boundaries is completely unacceptable anywhere in the Bundler project’s codebases, issue trackers, chat rooms, mailing lists, meetups, and any other events. Violators will be warned and then blocked or banned by the core team at or before the 3rd violation.
|
8
|
-
|
9
|
-
### In detail
|
10
|
-
|
11
|
-
Harassment includes offensive verbal comments related to level of experience, gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, race, ethnicity, age, religion, nationality, the use of sexualized language or imagery, deliberate intimidation, stalking, sustained disruption, and unwelcome sexual attention.
|
12
|
-
|
13
|
-
Individuals asked to stop any harassing behavior are expected to comply immediately.
|
14
|
-
|
15
|
-
Maintainers, including the core team, are also subject to the anti-harassment policy.
|
16
|
-
|
17
|
-
If anyone engages in abusive, harassing, or otherwise unacceptable behavior, including maintainers, we may take appropriate action, up to and including warning the offender, deletion of comments, removal from the project’s codebase and communication systems, and escalation to GitHub support.
|
18
|
-
|
19
|
-
If you are being harassed, notice that someone else is being harassed, or have any other concerns, please contact a member of [the core team](http://bundler.io/contributors.html) or [email the core team](mailto:team@bundler.io) immediately.
|
20
|
-
|
21
|
-
We expect everyone to follow these rules anywhere in the Bundler project’s codebases, issue trackers, IRC channel, group chat, and mailing lists.
|
22
|
-
|
23
|
-
This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.
|
24
|
-
|
25
|
-
Finally, don't forget that it is human to make mistakes! We all do. Let’s work together to help each other, resolve issues, and learn from the mistakes that we will all inevitably make from time to time.
|
26
|
-
|
27
|
-
|
28
|
-
### Thanks
|
29
|
-
|
30
|
-
Thanks to the [JSConf Code of Conduct](http://jsconf.com/codeofconduct.html) and [Fedora Code of Conduct](http://fedoraproject.org/code-of-conduct) for inspiration and ideas. Additional thanks to [Contributor Covenant](http://contributor-covenant.org) for the [default code of conduct](https://github.com/bundler/bundler/blob/master/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt) included in generated gems.
|
31
|
-
|
32
|
-
|
33
|
-
### License
|
34
|
-
|
35
|
-
<p class="license" xmlns:dct="http://purl.org/dc/terms/" xmlns:vcard="http://www.w3.org/2001/vcard-rdf/3.0#">
|
36
|
-
To the extent possible under law, <a rel="dct:publisher" href="http://bundler.io">The Bundler Team</a> has waived all copyright and related or neighboring rights to the <span property="dct:title">Bundler Code of Conduct</span>. This work is published from the <span property="vcard:Country" datatype="dct:ISO3166" content="US" about="http://bundler.io">United States.</span>
|
37
|
-
<br>
|
38
|
-
<br>
|
39
|
-
<a rel="license" href="http://creativecommons.org/publicdomain/zero/1.0/">
|
40
|
-
<img src="http://i.creativecommons.org/p/zero/1.0/88x31.png" style="border-style: none;" alt="CC0">
|
41
|
-
</a>
|
42
|
-
</p>
|
data/CONTRIBUTING.md
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
# Contributing to Bundler
|
2
|
-
|
3
|
-
Welcome to Bundler! We are so happy that you're here. We know it can be daunting to joining a new open source project, so here's a quick overview of what you can expect from this documentation.
|
4
|
-
|
5
|
-
Bundler welcomes contributions from *everyone*. While contributing, please follow the project [code of conduct](http://bundler.io/conduct.html), so that everyone can be included.
|
6
|
-
|
7
|
-
## Quick start
|
8
|
-
|
9
|
-
Some guides you might find useful:
|
10
|
-
|
11
|
-
* [Submitting pull requests](doc/development/PULL_REQUESTS.md)
|
12
|
-
* [Filing an issue](doc/contributing/ISSUES.md)
|
13
|
-
* [Bug triage](doc/contributing/BUG_TRIAGE.md)
|
14
|
-
|
15
|
-
## Comprehensive guides
|
16
|
-
|
17
|
-
Not finding what you're looking for? More comprehensive guides are [available here](doc/README.md).
|