bundler-download 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +14 -12
- data/VERSION +1 -1
- data/bundler-download.gemspec +4 -4
- metadata +5 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b860161609c4b1d4a34cacf44e61390599afa63a01899f5b496f14987a49abd
|
4
|
+
data.tar.gz: 358bd951bd8d0c0391f38f6cc2e10c42d26246cc651145d73851099ba0ff94ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d5fef9c7b0fea7e7e056c33aa88adaaa692d384d3a04c1e82dd276e80464d8ea332c4ce0c42a2751e5d62a24ef75d5ec826b467d20a9c0936235c71d747d8ee
|
7
|
+
data.tar.gz: bfbaa6e691051040bbf71e7a3e94a99d47d6c93737081b1aedb3ce06c58f10b7e66b05d76e717e9eb76f5c68e210563a7c7eb1288332788f2b14c8ac3ab76d73
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# bundler-download - Bundler Plugin - v1.3.
|
1
|
+
# bundler-download - Bundler Plugin - v1.3.2
|
2
2
|
[](http://badge.fury.io/rb/bundler-download)
|
3
3
|
|
4
4
|
Bundler plugin for auto-downloading extra gem files (e.g. large file downloads) specified in [`Downloadfile`](#downloadfile) after `bundle install`
|
@@ -68,23 +68,25 @@ The keyword `download` declares a file to download and takes the following argum
|
|
68
68
|
|
69
69
|
## App Bundler Plugin Instructions
|
70
70
|
|
71
|
-
In plugin mode, all gems declared in Gemfile are inspected for presence of Downloadfile regardless of what group they belong to.
|
71
|
+
In plugin mode, all gems declared in `Gemfile` are inspected for presence of `Downloadfile` regardless of what group they belong to.
|
72
72
|
|
73
|
-
An app can depend on a gem that has a `Downloadfile` by
|
73
|
+
An app can depend on a gem that has a `Downloadfile` by including in `Gemfile` and running:
|
74
74
|
|
75
75
|
```
|
76
|
-
|
77
|
-
|
78
|
-
gem 'some_gem_with_downloadfile'
|
76
|
+
bundle
|
79
77
|
```
|
80
78
|
|
81
|
-
Afterwards
|
79
|
+
Afterwards install the `bundler-download` plugin via:
|
82
80
|
|
83
81
|
```
|
84
|
-
bundle install
|
82
|
+
bundle plugin install bundler-download
|
85
83
|
```
|
86
84
|
|
87
|
-
|
85
|
+
Finally, `bundle` one extra time to activate the `bundler-download` plugin:
|
86
|
+
|
87
|
+
```
|
88
|
+
bundle
|
89
|
+
```
|
88
90
|
|
89
91
|
You should see something like this:
|
90
92
|
|
@@ -102,7 +104,7 @@ Using tty-cursor 0.7.1
|
|
102
104
|
Using tty-screen 0.8.1
|
103
105
|
Using unicode-display_width 1.7.0
|
104
106
|
Using tty-progressbar 0.17.0
|
105
|
-
Using bundler-download 1.3.
|
107
|
+
Using bundler-download 1.3.2
|
106
108
|
Using facets 3.1.0
|
107
109
|
Using glimmer 1.0.0
|
108
110
|
bundle-download plugin gem-after-install-all hook:
|
@@ -117,7 +119,7 @@ Download path: /Users/User/.rvm/gems/ruby-2.7.1@tmp/gems/glimmer-1.0.0/cef/com.m
|
|
117
119
|
Downloading 26% ( 59s ) [============== ]
|
118
120
|
```
|
119
121
|
|
120
|
-
After the initial download of files, running `bundle
|
122
|
+
After the initial download of files, running `bundle` again will keep existing downloads without overwriting them unless you use the [`bundle-download`](#bundler-download-command) command to manually redownload files again.
|
121
123
|
|
122
124
|
### Bundler Download Command
|
123
125
|
|
@@ -165,7 +167,7 @@ bundle download help
|
|
165
167
|
Prints:
|
166
168
|
|
167
169
|
```
|
168
|
-
== bundler-download - Bundler Plugin - v1.3.
|
170
|
+
== bundler-download - Bundler Plugin - v1.3.2 ==
|
169
171
|
|
170
172
|
Commands/Subcommands/Options:
|
171
173
|
bundle download help # Provide help by printing usage instructions
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.
|
1
|
+
1.3.2
|
data/bundler-download.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: bundler-download 1.3.
|
5
|
+
# stub: bundler-download 1.3.2 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "bundler-download".freeze
|
9
|
-
s.version = "1.3.
|
9
|
+
s.version = "1.3.2"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib".freeze]
|
13
13
|
s.authors = ["AndyMaleh".freeze]
|
14
|
-
s.date = "2021-
|
14
|
+
s.date = "2021-08-27"
|
15
15
|
s.description = "bundler-download is a Bundler plugin for auto-downloading gem-specified extra files (e.g. large file downloads) on `bundle install` from a `Downloadfile`".freeze
|
16
16
|
s.email = "andy.am@gmail.com".freeze
|
17
17
|
s.executables = ["bundler-download".freeze]
|
@@ -35,7 +35,7 @@ Gem::Specification.new do |s|
|
|
35
35
|
]
|
36
36
|
s.homepage = "http://github.com/AndyObtiva/bundler-download".freeze
|
37
37
|
s.licenses = ["MIT".freeze]
|
38
|
-
s.post_install_message = "*** bundler-download post install message ***\nSome gems have a Downloadfile! Follow the instructions below to download their files. \
|
38
|
+
s.post_install_message = "*** bundler-download post install message ***\nSome gems have a Downloadfile! Follow the instructions below to download their files. \nRun `bundle plugin install bundler-download`. \nAfterwards, run `bundle` and extra files are downloaded automatically.\nTo force download of extra files with bundler-download plugin, run `bundle download`\nTo get help with bundler-download plugin, run `bundle download help`\nLearn more at: https://www.rubydoc.info/gems/bundler-download".freeze
|
39
39
|
s.rubygems_version = "3.2.3".freeze
|
40
40
|
s.summary = "bundler-download is a Bundler plugin for auto-downloading specified extra files on `bundle install`".freeze
|
41
41
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundler-download
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- AndyMaleh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -201,11 +201,9 @@ licenses:
|
|
201
201
|
- MIT
|
202
202
|
metadata: {}
|
203
203
|
post_install_message: "*** bundler-download post install message ***\nSome gems have
|
204
|
-
a Downloadfile! Follow the instructions below to download their files. \
|
205
|
-
|
206
|
-
|
207
|
-
`bundle plugin install bundler-download`. \nAfterwards, run `bundle` and extra files
|
208
|
-
are downloaded automatically.\nTo force download of extra files with bundler-download
|
204
|
+
a Downloadfile! Follow the instructions below to download their files. \nRun `bundle
|
205
|
+
plugin install bundler-download`. \nAfterwards, run `bundle` and extra files are
|
206
|
+
downloaded automatically.\nTo force download of extra files with bundler-download
|
209
207
|
plugin, run `bundle download`\nTo get help with bundler-download plugin, run `bundle
|
210
208
|
download help`\nLearn more at: https://www.rubydoc.info/gems/bundler-download"
|
211
209
|
rdoc_options: []
|