bundler 1.16.2 → 1.16.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 +4 -4
- data/CHANGELOG.md +21 -0
- data/lib/bundler.rb +8 -5
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/current_ruby.rb +1 -0
- data/lib/bundler/installer/gem_installer.rb +5 -3
- data/lib/bundler/process_lock.rb +1 -1
- data/lib/bundler/shared_helpers.rb +13 -2
- data/lib/bundler/source/rubygems.rb +6 -2
- data/lib/bundler/source/rubygems/remote.rb +4 -1
- data/lib/bundler/templates/newgem/travis.yml.tt +2 -0
- data/lib/bundler/version.rb +1 -1
- data/man/bundle-add.1 +1 -1
- data/man/bundle-add.1.txt +1 -1
- data/man/bundle-binstubs.1 +2 -2
- data/man/bundle-binstubs.1.txt +2 -2
- data/man/bundle-binstubs.ronn +1 -1
- data/man/bundle-check.1 +1 -1
- data/man/bundle-check.1.txt +1 -1
- data/man/bundle-clean.1 +1 -1
- data/man/bundle-clean.1.txt +1 -1
- data/man/bundle-config.1 +4 -4
- data/man/bundle-config.1.txt +11 -11
- data/man/bundle-config.ronn +4 -4
- data/man/bundle-doctor.1 +1 -1
- data/man/bundle-doctor.1.txt +1 -1
- data/man/bundle-exec.1 +3 -3
- data/man/bundle-exec.1.txt +7 -7
- data/man/bundle-exec.ronn +2 -2
- data/man/bundle-gem.1 +2 -2
- data/man/bundle-gem.1.txt +2 -2
- data/man/bundle-gem.ronn +1 -1
- data/man/bundle-info.1 +1 -1
- data/man/bundle-info.1.txt +1 -1
- data/man/bundle-init.1 +1 -1
- data/man/bundle-init.1.txt +1 -1
- data/man/bundle-inject.1 +1 -1
- data/man/bundle-inject.1.txt +1 -1
- data/man/bundle-install.1 +2 -2
- data/man/bundle-install.1.txt +2 -2
- data/man/bundle-install.ronn +1 -1
- data/man/bundle-list.1 +1 -1
- data/man/bundle-list.1.txt +1 -1
- data/man/bundle-lock.1 +2 -2
- data/man/bundle-lock.1.txt +2 -2
- data/man/bundle-lock.ronn +1 -1
- data/man/bundle-open.1 +1 -1
- data/man/bundle-open.1.txt +1 -1
- data/man/bundle-outdated.1 +2 -2
- data/man/bundle-outdated.1.txt +2 -2
- data/man/bundle-outdated.ronn +1 -1
- data/man/bundle-package.1 +3 -3
- data/man/bundle-package.1.txt +6 -6
- data/man/bundle-package.ronn +3 -3
- data/man/bundle-platform.1 +1 -1
- data/man/bundle-platform.1.txt +1 -1
- data/man/bundle-pristine.1 +1 -1
- data/man/bundle-pristine.1.txt +1 -1
- data/man/bundle-show.1 +1 -1
- data/man/bundle-show.1.txt +1 -1
- data/man/bundle-update.1 +8 -8
- data/man/bundle-update.1.txt +62 -61
- data/man/bundle-update.ronn +8 -8
- data/man/bundle-viz.1 +2 -2
- data/man/bundle-viz.1.txt +3 -3
- data/man/bundle-viz.ronn +1 -1
- data/man/bundle.1 +19 -19
- data/man/bundle.1.txt +19 -19
- data/man/bundle.ronn +18 -18
- data/man/gemfile.5 +9 -3
- data/man/gemfile.5.ronn +15 -2
- data/man/gemfile.5.txt +36 -23
- metadata +3 -3
data/man/bundle.1.txt
CHANGED
@@ -29,67 +29,67 @@ BUNDLE COMMANDS
|
|
29
29
|
We divide bundle subcommands into primary commands and utilities:
|
30
30
|
|
31
31
|
PRIMARY COMMANDS
|
32
|
-
|
32
|
+
bundle install(1) bundle-install.1.html
|
33
33
|
Install the gems specified by the Gemfile or Gemfile.lock
|
34
34
|
|
35
|
-
|
35
|
+
bundle update(1) bundle-update.1.html
|
36
36
|
Update dependencies to their latest versions
|
37
37
|
|
38
|
-
|
38
|
+
bundle package(1) bundle-package.1.html
|
39
39
|
Package the .gem files required by your application into the
|
40
40
|
vendor/cache directory
|
41
41
|
|
42
|
-
|
42
|
+
bundle exec(1) bundle-exec.1.html
|
43
43
|
Execute a script in the current bundle
|
44
44
|
|
45
|
-
|
45
|
+
bundle config(1) bundle-config.1.html
|
46
46
|
Specify and read configuration options for Bundler
|
47
47
|
|
48
48
|
bundle help(1)
|
49
49
|
Display detailed help for each subcommand
|
50
50
|
|
51
51
|
UTILITIES
|
52
|
-
|
52
|
+
bundle add(1) bundle-add.1.html
|
53
53
|
Add the named gem to the Gemfile and run bundle install
|
54
54
|
|
55
|
-
|
55
|
+
bundle binstubs(1) bundle-binstubs.1.html
|
56
56
|
Generate binstubs for executables in a gem
|
57
57
|
|
58
|
-
|
58
|
+
bundle check(1) bundle-check.1.html
|
59
59
|
Determine whether the requirements for your application are
|
60
60
|
installed and available to Bundler
|
61
61
|
|
62
|
-
|
62
|
+
bundle show(1) bundle-show.1.html
|
63
63
|
Show the source location of a particular gem in the bundle
|
64
64
|
|
65
|
-
|
65
|
+
bundle outdated(1) bundle-outdated.1.html
|
66
66
|
Show all of the outdated gems in the current bundle
|
67
67
|
|
68
68
|
bundle console(1)
|
69
69
|
Start an IRB session in the current bundle
|
70
70
|
|
71
|
-
|
71
|
+
bundle open(1) bundle-open.1.html
|
72
72
|
Open an installed gem in the editor
|
73
73
|
|
74
|
-
|
74
|
+
bundle lock(1) bundle-lock.1.hmtl
|
75
75
|
Generate a lockfile for your dependencies
|
76
76
|
|
77
|
-
|
77
|
+
bundle viz(1) bundle-viz.1.html
|
78
78
|
Generate a visual representation of your dependencies
|
79
79
|
|
80
|
-
|
80
|
+
bundle init(1) bundle-init.1.html
|
81
81
|
Generate a simple Gemfile, placed in the current directory
|
82
82
|
|
83
|
-
|
83
|
+
bundle gem(1) bundle-gem.1.html
|
84
84
|
Create a simple gem, suitable for development with Bundler
|
85
85
|
|
86
|
-
|
86
|
+
bundle platform(1) bundle-platform.1.html
|
87
87
|
Display platform compatibility information
|
88
88
|
|
89
|
-
|
89
|
+
bundle clean(1) bundle-clean.1.html
|
90
90
|
Clean up unused gems in your Bundler directory
|
91
91
|
|
92
|
-
bundle doctor(1)
|
92
|
+
bundle doctor(1) bundle-doctor.1.html
|
93
93
|
Display warnings about common problems
|
94
94
|
|
95
95
|
PLUGINS
|
@@ -110,4 +110,4 @@ OBSOLETE
|
|
110
110
|
|
111
111
|
|
112
112
|
|
113
|
-
|
113
|
+
July 2018 BUNDLE(1)
|
data/man/bundle.ronn
CHANGED
@@ -30,20 +30,20 @@ We divide `bundle` subcommands into primary commands and utilities:
|
|
30
30
|
|
31
31
|
## PRIMARY COMMANDS
|
32
32
|
|
33
|
-
* [`bundle install(1)`]
|
33
|
+
* [`bundle install(1)`](bundle-install.1.html):
|
34
34
|
Install the gems specified by the `Gemfile` or `Gemfile.lock`
|
35
35
|
|
36
|
-
* [`bundle update(1)`]
|
36
|
+
* [`bundle update(1)`](bundle-update.1.html):
|
37
37
|
Update dependencies to their latest versions
|
38
38
|
|
39
|
-
* [`bundle package(1)`]
|
39
|
+
* [`bundle package(1)`](bundle-package.1.html):
|
40
40
|
Package the .gem files required by your application into the
|
41
41
|
`vendor/cache` directory
|
42
42
|
|
43
|
-
* [`bundle exec(1)`]
|
43
|
+
* [`bundle exec(1)`](bundle-exec.1.html):
|
44
44
|
Execute a script in the current bundle
|
45
45
|
|
46
|
-
* [`bundle config(1)`]
|
46
|
+
* [`bundle config(1)`](bundle-config.1.html):
|
47
47
|
Specify and read configuration options for Bundler
|
48
48
|
|
49
49
|
* `bundle help(1)`:
|
@@ -51,47 +51,47 @@ We divide `bundle` subcommands into primary commands and utilities:
|
|
51
51
|
|
52
52
|
## UTILITIES
|
53
53
|
|
54
|
-
* [`bundle add(1)`]
|
54
|
+
* [`bundle add(1)`](bundle-add.1.html):
|
55
55
|
Add the named gem to the Gemfile and run `bundle install`
|
56
56
|
|
57
|
-
* [`bundle binstubs(1)`]
|
57
|
+
* [`bundle binstubs(1)`](bundle-binstubs.1.html):
|
58
58
|
Generate binstubs for executables in a gem
|
59
59
|
|
60
|
-
* [`bundle check(1)`]
|
60
|
+
* [`bundle check(1)`](bundle-check.1.html):
|
61
61
|
Determine whether the requirements for your application are installed
|
62
62
|
and available to Bundler
|
63
63
|
|
64
|
-
* [`bundle show(1)`]
|
64
|
+
* [`bundle show(1)`](bundle-show.1.html):
|
65
65
|
Show the source location of a particular gem in the bundle
|
66
66
|
|
67
|
-
* [`bundle outdated(1)`]
|
67
|
+
* [`bundle outdated(1)`](bundle-outdated.1.html):
|
68
68
|
Show all of the outdated gems in the current bundle
|
69
69
|
|
70
70
|
* `bundle console(1)`:
|
71
71
|
Start an IRB session in the current bundle
|
72
72
|
|
73
|
-
* [`bundle open(1)`]
|
73
|
+
* [`bundle open(1)`](bundle-open.1.html):
|
74
74
|
Open an installed gem in the editor
|
75
75
|
|
76
|
-
* [`bundle lock(1)`]
|
76
|
+
* [`bundle lock(1)`](bundle-lock.1.hmtl):
|
77
77
|
Generate a lockfile for your dependencies
|
78
78
|
|
79
|
-
* [`bundle viz(1)`]
|
79
|
+
* [`bundle viz(1)`](bundle-viz.1.html):
|
80
80
|
Generate a visual representation of your dependencies
|
81
81
|
|
82
|
-
* [`bundle init(1)`]
|
82
|
+
* [`bundle init(1)`](bundle-init.1.html):
|
83
83
|
Generate a simple `Gemfile`, placed in the current directory
|
84
84
|
|
85
|
-
* [`bundle gem(1)`]
|
85
|
+
* [`bundle gem(1)`](bundle-gem.1.html):
|
86
86
|
Create a simple gem, suitable for development with Bundler
|
87
87
|
|
88
|
-
* [`bundle platform(1)`]
|
88
|
+
* [`bundle platform(1)`](bundle-platform.1.html):
|
89
89
|
Display platform compatibility information
|
90
90
|
|
91
|
-
* [`bundle clean(1)`]
|
91
|
+
* [`bundle clean(1)`](bundle-clean.1.html):
|
92
92
|
Clean up unused gems in your Bundler directory
|
93
93
|
|
94
|
-
* `bundle doctor(1)
|
94
|
+
* [`bundle doctor(1)`](bundle-doctor.1.html):
|
95
95
|
Display warnings about common problems
|
96
96
|
|
97
97
|
## PLUGINS
|
data/man/gemfile.5
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "GEMFILE" "5" "
|
4
|
+
.TH "GEMFILE" "5" "July 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBGemfile\fR \- A format for describing gem dependencies for Ruby programs
|
@@ -35,7 +35,7 @@ It is possible, but not recommended as of Bundler 1\.7, to add multiple global \
|
|
35
35
|
Sources are checked for gems following the heuristics described in \fISOURCE PRIORITY\fR\. If a gem is found in more than one global source, Bundler will print a warning after installing the gem indicating which source was used, and listing the other sources where the gem is available\. A specific source can be selected for gems that need to use a non\-standard repository, suppressing this warning, by using the \fI\fB:source\fR option\fR or a \fI\fBsource\fR block\fR\.
|
36
36
|
.
|
37
37
|
.SS "CREDENTIALS"
|
38
|
-
Some gem sources require a username and password\. Use
|
38
|
+
Some gem sources require a username and password\. Use bundle config(1) \fIbundle\-config\.1\.html\fR to set the username and password for any of the sources that need it\. The command must be run once on each computer that will install the Gemfile, but this keeps the credentials from being stored in plain text in version control\.
|
39
39
|
.
|
40
40
|
.IP "" 4
|
41
41
|
.
|
@@ -325,7 +325,7 @@ gem "nokogiri", :platforms => [:mri_18, :jruby]
|
|
325
325
|
.IP "" 0
|
326
326
|
.
|
327
327
|
.P
|
328
|
-
All operations involving groups (
|
328
|
+
All operations involving groups (\fBbundle install\fR \fIbundle\-install\.1\.html\fR, \fBBundler\.setup\fR, \fBBundler\.require\fR) behave exactly the same as if any groups not matching the current platform were explicitly excluded\.
|
329
329
|
.
|
330
330
|
.SS "SOURCE"
|
331
331
|
You can select an alternate Rubygems repository for a gem using the \':source\' option\.
|
@@ -349,6 +349,9 @@ Bundler will search for child dependencies of this gem by first looking in the s
|
|
349
349
|
.P
|
350
350
|
Selecting a specific source repository this way also suppresses the ambiguous gem warning described above in \fIGLOBAL SOURCES (#source)\fR\.
|
351
351
|
.
|
352
|
+
.P
|
353
|
+
Using the \fB:source\fR option for an individual gem will also make that source available as a possible global source for any other gems which do not specify explicit sources\. Thus, when adding gems with explicit sources, it is recommended that you also ensure all other gems in the Gemfile are using explicit sources\.
|
354
|
+
.
|
352
355
|
.SS "GIT"
|
353
356
|
If necessary, you can specify that a gem is located at a particular git repository using the \fB:git\fR parameter\. The repository can be accessed via several protocols:
|
354
357
|
.
|
@@ -633,6 +636,9 @@ In the case of the group block form the :optional option can be given to prevent
|
|
633
636
|
.P
|
634
637
|
In the case of the \fBgit\fR block form, the \fB:ref\fR, \fB:branch\fR, \fB:tag\fR, and \fB:submodules\fR options may be passed to the \fBgit\fR method, and all gems in the block will inherit those options\.
|
635
638
|
.
|
639
|
+
.P
|
640
|
+
The presence of a \fBsource\fR block in a Gemfile also makes that source available as a possible global source for any other gems which do not specify explicit sources\. Thus, when defining source blocks, it is recommended that you also ensure all other gems in the Gemfile are using explicit sources, either via source blocks or \fB:source\fR directives on individual gems\.
|
641
|
+
.
|
636
642
|
.SH "INSTALL_IF"
|
637
643
|
The \fBinstall_if\fR method allows gems to be installed based on a proc or lambda\. This is especially useful for optional gems that can only be used if certain software is installed or some other conditions are met\.
|
638
644
|
.
|
data/man/gemfile.5.ronn
CHANGED
@@ -35,7 +35,7 @@ this warning, by using the [`:source` option](#SOURCE) or a
|
|
35
35
|
|
36
36
|
### CREDENTIALS
|
37
37
|
|
38
|
-
Some gem sources require a username and password. Use [bundle config(1)]
|
38
|
+
Some gem sources require a username and password. Use [bundle config(1)](bundle-config.1.html) to set
|
39
39
|
the username and password for any of the sources that need it. The command must
|
40
40
|
be run once on each computer that will install the Gemfile, but this keeps the
|
41
41
|
credentials from being stored in plain text in version control.
|
@@ -228,7 +228,7 @@ As with groups, you can specify one or more platforms:
|
|
228
228
|
gem "ruby-debug", :platforms => :mri_18
|
229
229
|
gem "nokogiri", :platforms => [:mri_18, :jruby]
|
230
230
|
|
231
|
-
All operations involving groups ([`bundle install`]
|
231
|
+
All operations involving groups ([`bundle install`](bundle-install.1.html), `Bundler.setup`,
|
232
232
|
`Bundler.require`) behave exactly the same as if any groups not
|
233
233
|
matching the current platform were explicitly excluded.
|
234
234
|
|
@@ -251,6 +251,12 @@ Selecting a specific source repository this way also suppresses the ambiguous
|
|
251
251
|
gem warning described above in
|
252
252
|
[GLOBAL SOURCES (#source)](#GLOBAL-SOURCES).
|
253
253
|
|
254
|
+
Using the `:source` option for an individual gem will also make that source
|
255
|
+
available as a possible global source for any other gems which do not specify
|
256
|
+
explicit sources. Thus, when adding gems with explicit sources, it is
|
257
|
+
recommended that you also ensure all other gems in the Gemfile are using
|
258
|
+
explicit sources.
|
259
|
+
|
254
260
|
### GIT
|
255
261
|
|
256
262
|
If necessary, you can specify that a gem is located at a particular
|
@@ -453,6 +459,13 @@ In the case of the `git` block form, the `:ref`, `:branch`, `:tag`,
|
|
453
459
|
and `:submodules` options may be passed to the `git` method, and
|
454
460
|
all gems in the block will inherit those options.
|
455
461
|
|
462
|
+
The presence of a `source` block in a Gemfile also makes that source
|
463
|
+
available as a possible global source for any other gems which do not specify
|
464
|
+
explicit sources. Thus, when defining source blocks, it is
|
465
|
+
recommended that you also ensure all other gems in the Gemfile are using
|
466
|
+
explicit sources, either via source blocks or `:source` directives on
|
467
|
+
individual gems.
|
468
|
+
|
456
469
|
## INSTALL_IF
|
457
470
|
|
458
471
|
The `install_if` method allows gems to be installed based on a proc or lambda.
|
data/man/gemfile.5.txt
CHANGED
@@ -40,9 +40,9 @@ GLOBAL SOURCES
|
|
40
40
|
option or a source block.
|
41
41
|
|
42
42
|
CREDENTIALS
|
43
|
-
Some gem sources require a username
|
44
|
-
|
45
|
-
|
43
|
+
Some gem sources require a username and password. Use bundle config(1)
|
44
|
+
bundle-config.1.html to set the username and password for any of the
|
45
|
+
sources that need it. The command must be run once on each computer
|
46
46
|
that will install the Gemfile, but this keeps the credentials from
|
47
47
|
being stored in plain text in version control.
|
48
48
|
|
@@ -286,7 +286,7 @@ GEMS
|
|
286
286
|
|
287
287
|
|
288
288
|
|
289
|
-
All operations involving groups
|
289
|
+
All operations involving groups (bundle install bundle-install.1.html,
|
290
290
|
Bundler.setup, Bundler.require) behave exactly the same as if any
|
291
291
|
groups not matching the current platform were explicitly excluded.
|
292
292
|
|
@@ -312,6 +312,12 @@ GEMS
|
|
312
312
|
Selecting a specific source repository this way also suppresses the
|
313
313
|
ambiguous gem warning described above in GLOBAL SOURCES (#source).
|
314
314
|
|
315
|
+
Using the :source option for an individual gem will also make that
|
316
|
+
source available as a possible global source for any other gems which
|
317
|
+
do not specify explicit sources. Thus, when adding gems with explicit
|
318
|
+
sources, it is recommended that you also ensure all other gems in the
|
319
|
+
Gemfile are using explicit sources.
|
320
|
+
|
315
321
|
GIT
|
316
322
|
If necessary, you can specify that a gem is located at a particular git
|
317
323
|
repository using the :git parameter. The repository can be accessed via
|
@@ -570,9 +576,16 @@ BLOCK FORM OF SOURCE, GIT, PATH, GROUP and PLATFORMS
|
|
570
576
|
modules options may be passed to the git method, and all gems in the
|
571
577
|
block will inherit those options.
|
572
578
|
|
579
|
+
The presence of a source block in a Gemfile also makes that source
|
580
|
+
available as a possible global source for any other gems which do not
|
581
|
+
specify explicit sources. Thus, when defining source blocks, it is rec-
|
582
|
+
ommended that you also ensure all other gems in the Gemfile are using
|
583
|
+
explicit sources, either via source blocks or :source directives on
|
584
|
+
individual gems.
|
585
|
+
|
573
586
|
INSTALL_IF
|
574
|
-
The
|
575
|
-
lambda.
|
587
|
+
The install_if method allows gems to be installed based on a proc or
|
588
|
+
lambda. This is especially useful for optional gems that can only be
|
576
589
|
used if certain software is installed or some other conditions are met.
|
577
590
|
|
578
591
|
|
@@ -584,48 +597,48 @@ INSTALL_IF
|
|
584
597
|
|
585
598
|
|
586
599
|
GEMSPEC
|
587
|
-
The
|
600
|
+
The .gemspec http://guides.rubygems.org/specification-reference/ file
|
588
601
|
is where you provide metadata about your gem to Rubygems. Some required
|
589
|
-
Gemspec
|
590
|
-
gem.
|
602
|
+
Gemspec attributes include the name, description, and homepage of your
|
603
|
+
gem. This is also where you specify the dependencies your gem needs to
|
591
604
|
run.
|
592
605
|
|
593
606
|
If you wish to use Bundler to help install dependencies for a gem while
|
594
|
-
it
|
607
|
+
it is being developed, use the gemspec method to pull in the dependen-
|
595
608
|
cies listed in the .gemspec file.
|
596
609
|
|
597
610
|
The gemspec method adds any runtime dependencies as gem requirements in
|
598
|
-
the
|
599
|
-
requirements
|
611
|
+
the default group. It also adds development dependencies as gem
|
612
|
+
requirements in the development group. Finally, it adds a gem require-
|
600
613
|
ment on your project (:path => '.'). In conjunction with Bundler.setup,
|
601
614
|
this allows you to require project files in your test code as you would
|
602
|
-
if
|
615
|
+
if the project were installed as a gem; you need not manipulate the
|
603
616
|
load path manually or require project files via relative paths.
|
604
617
|
|
605
618
|
The gemspec method supports optional :path, :glob, :name, and :develop-
|
606
619
|
ment_group options, which control where bundler looks for the .gemspec,
|
607
|
-
the
|
608
|
-
spec"),
|
620
|
+
the glob it uses to look for the gemspec (defaults to: "{,,/*}.gem-
|
621
|
+
spec"), what named .gemspec it uses (if more than one is present), and
|
609
622
|
which group development dependencies are included in.
|
610
623
|
|
611
|
-
When
|
612
|
-
tion,
|
613
|
-
even
|
624
|
+
When a gemspec dependency encounters version conflicts during resolu-
|
625
|
+
tion, the local version under development will always be selected --
|
626
|
+
even if there are remote versions that better match other requirements
|
614
627
|
for the gemspec gem.
|
615
628
|
|
616
629
|
SOURCE PRIORITY
|
617
|
-
When
|
630
|
+
When attempting to locate a gem to satisfy a gem requirement, bundler
|
618
631
|
uses the following priority order:
|
619
632
|
|
620
633
|
1. The source explicitly attached to the gem (using :source, :path, or
|
621
634
|
:git)
|
622
635
|
|
623
636
|
2. For implicit gems (dependencies of explicit gems), any source, git,
|
624
|
-
or
|
625
|
-
prioritizing
|
637
|
+
or path repository declared on the parent. This results in bundler
|
638
|
+
prioritizing the ActiveSupport gem from the Rails git repository
|
626
639
|
over ones from rubygems.org
|
627
640
|
|
628
|
-
3. The
|
641
|
+
3. The sources specified via global source lines, searching each
|
629
642
|
source in your Gemfile from last added to first added.
|
630
643
|
|
631
644
|
|
@@ -633,4 +646,4 @@ SOURCE PRIORITY
|
|
633
646
|
|
634
647
|
|
635
648
|
|
636
|
-
|
649
|
+
July 2018 GEMFILE(5)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.16.
|
4
|
+
version: 1.16.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Arko
|
@@ -17,7 +17,7 @@ authors:
|
|
17
17
|
autorequire:
|
18
18
|
bindir: exe
|
19
19
|
cert_chain: []
|
20
|
-
date: 2018-
|
20
|
+
date: 2018-07-17 00:00:00.000000000 Z
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
23
23
|
name: automatiek
|
@@ -432,7 +432,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
432
432
|
version: 1.3.6
|
433
433
|
requirements: []
|
434
434
|
rubyforge_project:
|
435
|
-
rubygems_version: 2.7.
|
435
|
+
rubygems_version: 2.7.7
|
436
436
|
signing_key:
|
437
437
|
specification_version: 4
|
438
438
|
summary: The best way to manage your application's dependencies
|