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
data/man/index.txt
ADDED
metadata
ADDED
@@ -0,0 +1,346 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: shopify-bundler
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.10.7
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- André Arko
|
8
|
+
- Terence Lee
|
9
|
+
- Carl Lerche
|
10
|
+
- Yehuda Katz
|
11
|
+
autorequire:
|
12
|
+
bindir: exe
|
13
|
+
cert_chain: []
|
14
|
+
date: 2015-10-07 00:00:00.000000000 Z
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: automatiek
|
18
|
+
requirement: !ruby/object:Gem::Requirement
|
19
|
+
requirements:
|
20
|
+
- - "~>"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.1.0
|
23
|
+
type: :development
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.1.0
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: mustache
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
requirements:
|
34
|
+
- - '='
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 0.99.6
|
37
|
+
type: :development
|
38
|
+
prerelease: false
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - '='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 0.99.6
|
44
|
+
- !ruby/object:Gem::Dependency
|
45
|
+
name: rake
|
46
|
+
requirement: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - "~>"
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '10.0'
|
51
|
+
type: :development
|
52
|
+
prerelease: false
|
53
|
+
version_requirements: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - "~>"
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '10.0'
|
58
|
+
- !ruby/object:Gem::Dependency
|
59
|
+
name: rdiscount
|
60
|
+
requirement: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - "~>"
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '1.6'
|
65
|
+
type: :development
|
66
|
+
prerelease: false
|
67
|
+
version_requirements: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - "~>"
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '1.6'
|
72
|
+
- !ruby/object:Gem::Dependency
|
73
|
+
name: ronn
|
74
|
+
requirement: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - "~>"
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 0.7.3
|
79
|
+
type: :development
|
80
|
+
prerelease: false
|
81
|
+
version_requirements: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - "~>"
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: 0.7.3
|
86
|
+
- !ruby/object:Gem::Dependency
|
87
|
+
name: rspec
|
88
|
+
requirement: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - "~>"
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '3.0'
|
93
|
+
type: :development
|
94
|
+
prerelease: false
|
95
|
+
version_requirements: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - "~>"
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '3.0'
|
100
|
+
description: Bundler manages an application's dependencies through its entire life,
|
101
|
+
across many machines, systematically and repeatably
|
102
|
+
email:
|
103
|
+
- andre.arko+terence.lee@gmail.com
|
104
|
+
executables:
|
105
|
+
- bundle
|
106
|
+
- bundler
|
107
|
+
extensions: []
|
108
|
+
extra_rdoc_files: []
|
109
|
+
files:
|
110
|
+
- ".gitignore"
|
111
|
+
- ".rspec"
|
112
|
+
- ".rubocop.yml"
|
113
|
+
- ".rubocop_todo.yml"
|
114
|
+
- ".travis.yml"
|
115
|
+
- CHANGELOG.md
|
116
|
+
- CODE_OF_CONDUCT.md
|
117
|
+
- CONTRIBUTING.md
|
118
|
+
- DEVELOPMENT.md
|
119
|
+
- ISSUES.md
|
120
|
+
- LICENSE.md
|
121
|
+
- README.md
|
122
|
+
- Rakefile
|
123
|
+
- bin/rake
|
124
|
+
- bin/rspec
|
125
|
+
- bin/rubocop
|
126
|
+
- bundler.gemspec
|
127
|
+
- exe/bundle
|
128
|
+
- exe/bundle_ruby
|
129
|
+
- exe/bundler
|
130
|
+
- lib/bundler.rb
|
131
|
+
- lib/bundler/capistrano.rb
|
132
|
+
- lib/bundler/cli.rb
|
133
|
+
- lib/bundler/cli/binstubs.rb
|
134
|
+
- lib/bundler/cli/cache.rb
|
135
|
+
- lib/bundler/cli/check.rb
|
136
|
+
- lib/bundler/cli/clean.rb
|
137
|
+
- lib/bundler/cli/common.rb
|
138
|
+
- lib/bundler/cli/config.rb
|
139
|
+
- lib/bundler/cli/console.rb
|
140
|
+
- lib/bundler/cli/exec.rb
|
141
|
+
- lib/bundler/cli/gem.rb
|
142
|
+
- lib/bundler/cli/init.rb
|
143
|
+
- lib/bundler/cli/inject.rb
|
144
|
+
- lib/bundler/cli/install.rb
|
145
|
+
- lib/bundler/cli/lock.rb
|
146
|
+
- lib/bundler/cli/open.rb
|
147
|
+
- lib/bundler/cli/outdated.rb
|
148
|
+
- lib/bundler/cli/package.rb
|
149
|
+
- lib/bundler/cli/platform.rb
|
150
|
+
- lib/bundler/cli/show.rb
|
151
|
+
- lib/bundler/cli/update.rb
|
152
|
+
- lib/bundler/cli/viz.rb
|
153
|
+
- lib/bundler/constants.rb
|
154
|
+
- lib/bundler/current_ruby.rb
|
155
|
+
- lib/bundler/definition.rb
|
156
|
+
- lib/bundler/dep_proxy.rb
|
157
|
+
- lib/bundler/dependency.rb
|
158
|
+
- lib/bundler/deployment.rb
|
159
|
+
- lib/bundler/deprecate.rb
|
160
|
+
- lib/bundler/dsl.rb
|
161
|
+
- lib/bundler/endpoint_specification.rb
|
162
|
+
- lib/bundler/env.rb
|
163
|
+
- lib/bundler/environment.rb
|
164
|
+
- lib/bundler/fetcher.rb
|
165
|
+
- lib/bundler/fetcher/base.rb
|
166
|
+
- lib/bundler/fetcher/dependency.rb
|
167
|
+
- lib/bundler/fetcher/downloader.rb
|
168
|
+
- lib/bundler/fetcher/index.rb
|
169
|
+
- lib/bundler/friendly_errors.rb
|
170
|
+
- lib/bundler/gem_helper.rb
|
171
|
+
- lib/bundler/gem_helpers.rb
|
172
|
+
- lib/bundler/gem_installer.rb
|
173
|
+
- lib/bundler/gem_path_manipulation.rb
|
174
|
+
- lib/bundler/gem_tasks.rb
|
175
|
+
- lib/bundler/graph.rb
|
176
|
+
- lib/bundler/index.rb
|
177
|
+
- lib/bundler/injector.rb
|
178
|
+
- lib/bundler/inline.rb
|
179
|
+
- lib/bundler/installer.rb
|
180
|
+
- lib/bundler/installer/parallel_installer.rb
|
181
|
+
- lib/bundler/installer/standalone.rb
|
182
|
+
- lib/bundler/lazy_specification.rb
|
183
|
+
- lib/bundler/lockfile_parser.rb
|
184
|
+
- lib/bundler/man/bundle
|
185
|
+
- lib/bundler/man/bundle-config
|
186
|
+
- lib/bundler/man/bundle-config.txt
|
187
|
+
- lib/bundler/man/bundle-exec
|
188
|
+
- lib/bundler/man/bundle-exec.txt
|
189
|
+
- lib/bundler/man/bundle-gem
|
190
|
+
- lib/bundler/man/bundle-gem.txt
|
191
|
+
- lib/bundler/man/bundle-install
|
192
|
+
- lib/bundler/man/bundle-install.txt
|
193
|
+
- lib/bundler/man/bundle-package
|
194
|
+
- lib/bundler/man/bundle-package.txt
|
195
|
+
- lib/bundler/man/bundle-platform
|
196
|
+
- lib/bundler/man/bundle-platform.txt
|
197
|
+
- lib/bundler/man/bundle-update
|
198
|
+
- lib/bundler/man/bundle-update.txt
|
199
|
+
- lib/bundler/man/bundle.txt
|
200
|
+
- lib/bundler/man/gemfile.5
|
201
|
+
- lib/bundler/man/gemfile.5.txt
|
202
|
+
- lib/bundler/match_platform.rb
|
203
|
+
- lib/bundler/psyched_yaml.rb
|
204
|
+
- lib/bundler/remote_specification.rb
|
205
|
+
- lib/bundler/resolver.rb
|
206
|
+
- lib/bundler/retry.rb
|
207
|
+
- lib/bundler/ruby_dsl.rb
|
208
|
+
- lib/bundler/ruby_version.rb
|
209
|
+
- lib/bundler/rubygems_ext.rb
|
210
|
+
- lib/bundler/rubygems_integration.rb
|
211
|
+
- lib/bundler/runtime.rb
|
212
|
+
- lib/bundler/settings.rb
|
213
|
+
- lib/bundler/setup.rb
|
214
|
+
- lib/bundler/shared_helpers.rb
|
215
|
+
- lib/bundler/similarity_detector.rb
|
216
|
+
- lib/bundler/source.rb
|
217
|
+
- lib/bundler/source/git.rb
|
218
|
+
- lib/bundler/source/git/git_proxy.rb
|
219
|
+
- lib/bundler/source/path.rb
|
220
|
+
- lib/bundler/source/path/installer.rb
|
221
|
+
- lib/bundler/source/rubygems.rb
|
222
|
+
- lib/bundler/source/rubygems/remote.rb
|
223
|
+
- lib/bundler/source_list.rb
|
224
|
+
- lib/bundler/spec_set.rb
|
225
|
+
- lib/bundler/ssl_certs/.document
|
226
|
+
- lib/bundler/ssl_certs/AddTrustExternalCARoot-2048.pem
|
227
|
+
- lib/bundler/ssl_certs/AddTrustExternalCARoot.pem
|
228
|
+
- lib/bundler/ssl_certs/Class3PublicPrimaryCertificationAuthority.pem
|
229
|
+
- lib/bundler/ssl_certs/DigiCertHighAssuranceEVRootCA.pem
|
230
|
+
- lib/bundler/ssl_certs/EntrustnetSecureServerCertificationAuthority.pem
|
231
|
+
- lib/bundler/ssl_certs/GeoTrustGlobalCA.pem
|
232
|
+
- lib/bundler/ssl_certs/certificate_manager.rb
|
233
|
+
- lib/bundler/stub_specification.rb
|
234
|
+
- lib/bundler/templates/Executable
|
235
|
+
- lib/bundler/templates/Executable.standalone
|
236
|
+
- lib/bundler/templates/Gemfile
|
237
|
+
- lib/bundler/templates/newgem/.travis.yml.tt
|
238
|
+
- lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt
|
239
|
+
- lib/bundler/templates/newgem/Gemfile.tt
|
240
|
+
- lib/bundler/templates/newgem/LICENSE.txt.tt
|
241
|
+
- lib/bundler/templates/newgem/README.md.tt
|
242
|
+
- lib/bundler/templates/newgem/Rakefile.tt
|
243
|
+
- lib/bundler/templates/newgem/bin/console.tt
|
244
|
+
- lib/bundler/templates/newgem/bin/setup.tt
|
245
|
+
- lib/bundler/templates/newgem/exe/newgem.tt
|
246
|
+
- lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt
|
247
|
+
- lib/bundler/templates/newgem/ext/newgem/newgem.c.tt
|
248
|
+
- lib/bundler/templates/newgem/ext/newgem/newgem.h.tt
|
249
|
+
- lib/bundler/templates/newgem/gitignore.tt
|
250
|
+
- lib/bundler/templates/newgem/lib/newgem.rb.tt
|
251
|
+
- lib/bundler/templates/newgem/lib/newgem/version.rb.tt
|
252
|
+
- lib/bundler/templates/newgem/newgem.gemspec.tt
|
253
|
+
- lib/bundler/templates/newgem/rspec.tt
|
254
|
+
- lib/bundler/templates/newgem/spec/newgem_spec.rb.tt
|
255
|
+
- lib/bundler/templates/newgem/spec/spec_helper.rb.tt
|
256
|
+
- lib/bundler/templates/newgem/test/newgem_test.rb.tt
|
257
|
+
- lib/bundler/templates/newgem/test/test_helper.rb.tt
|
258
|
+
- lib/bundler/ui.rb
|
259
|
+
- lib/bundler/ui/rg_proxy.rb
|
260
|
+
- lib/bundler/ui/shell.rb
|
261
|
+
- lib/bundler/ui/silent.rb
|
262
|
+
- lib/bundler/vendor/molinillo/lib/molinillo.rb
|
263
|
+
- lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb
|
264
|
+
- lib/bundler/vendor/molinillo/lib/molinillo/errors.rb
|
265
|
+
- lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb
|
266
|
+
- lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb
|
267
|
+
- lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb
|
268
|
+
- lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb
|
269
|
+
- lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb
|
270
|
+
- lib/bundler/vendor/molinillo/lib/molinillo/state.rb
|
271
|
+
- lib/bundler/vendor/net/http/faster.rb
|
272
|
+
- lib/bundler/vendor/net/http/persistent.rb
|
273
|
+
- lib/bundler/vendor/net/http/persistent/ssl_reuse.rb
|
274
|
+
- lib/bundler/vendor/thor/lib/thor.rb
|
275
|
+
- lib/bundler/vendor/thor/lib/thor/actions.rb
|
276
|
+
- lib/bundler/vendor/thor/lib/thor/actions/create_file.rb
|
277
|
+
- lib/bundler/vendor/thor/lib/thor/actions/create_link.rb
|
278
|
+
- lib/bundler/vendor/thor/lib/thor/actions/directory.rb
|
279
|
+
- lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb
|
280
|
+
- lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb
|
281
|
+
- lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb
|
282
|
+
- lib/bundler/vendor/thor/lib/thor/base.rb
|
283
|
+
- lib/bundler/vendor/thor/lib/thor/command.rb
|
284
|
+
- lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
|
285
|
+
- lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb
|
286
|
+
- lib/bundler/vendor/thor/lib/thor/core_ext/ordered_hash.rb
|
287
|
+
- lib/bundler/vendor/thor/lib/thor/error.rb
|
288
|
+
- lib/bundler/vendor/thor/lib/thor/group.rb
|
289
|
+
- lib/bundler/vendor/thor/lib/thor/invocation.rb
|
290
|
+
- lib/bundler/vendor/thor/lib/thor/line_editor.rb
|
291
|
+
- lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb
|
292
|
+
- lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb
|
293
|
+
- lib/bundler/vendor/thor/lib/thor/parser.rb
|
294
|
+
- lib/bundler/vendor/thor/lib/thor/parser/argument.rb
|
295
|
+
- lib/bundler/vendor/thor/lib/thor/parser/arguments.rb
|
296
|
+
- lib/bundler/vendor/thor/lib/thor/parser/option.rb
|
297
|
+
- lib/bundler/vendor/thor/lib/thor/parser/options.rb
|
298
|
+
- lib/bundler/vendor/thor/lib/thor/rake_compat.rb
|
299
|
+
- lib/bundler/vendor/thor/lib/thor/runner.rb
|
300
|
+
- lib/bundler/vendor/thor/lib/thor/shell.rb
|
301
|
+
- lib/bundler/vendor/thor/lib/thor/shell/basic.rb
|
302
|
+
- lib/bundler/vendor/thor/lib/thor/shell/color.rb
|
303
|
+
- lib/bundler/vendor/thor/lib/thor/shell/html.rb
|
304
|
+
- lib/bundler/vendor/thor/lib/thor/util.rb
|
305
|
+
- lib/bundler/vendor/thor/lib/thor/version.rb
|
306
|
+
- lib/bundler/vendored_molinillo.rb
|
307
|
+
- lib/bundler/vendored_persistent.rb
|
308
|
+
- lib/bundler/vendored_thor.rb
|
309
|
+
- lib/bundler/version.rb
|
310
|
+
- lib/bundler/vlad.rb
|
311
|
+
- lib/bundler/worker.rb
|
312
|
+
- man/bundle-config.ronn
|
313
|
+
- man/bundle-exec.ronn
|
314
|
+
- man/bundle-gem.ronn
|
315
|
+
- man/bundle-install.ronn
|
316
|
+
- man/bundle-package.ronn
|
317
|
+
- man/bundle-platform.ronn
|
318
|
+
- man/bundle-update.ronn
|
319
|
+
- man/bundle.ronn
|
320
|
+
- man/gemfile.5.ronn
|
321
|
+
- man/index.txt
|
322
|
+
homepage: http://bundler.io
|
323
|
+
licenses:
|
324
|
+
- MIT
|
325
|
+
metadata: {}
|
326
|
+
post_install_message:
|
327
|
+
rdoc_options: []
|
328
|
+
require_paths:
|
329
|
+
- lib
|
330
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
331
|
+
requirements:
|
332
|
+
- - ">="
|
333
|
+
- !ruby/object:Gem::Version
|
334
|
+
version: 1.8.7
|
335
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
336
|
+
requirements:
|
337
|
+
- - ">="
|
338
|
+
- !ruby/object:Gem::Version
|
339
|
+
version: 1.3.6
|
340
|
+
requirements: []
|
341
|
+
rubyforge_project:
|
342
|
+
rubygems_version: 2.4.5.1
|
343
|
+
signing_key:
|
344
|
+
specification_version: 4
|
345
|
+
summary: The best way to manage your application's dependencies
|
346
|
+
test_files: []
|