bundler-download 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/README.md +10 -10
- data/VERSION +1 -1
- data/bundler-download.gemspec +5 -5
- metadata +9 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 412a3a0c968ed4619de629dcc476a4198a6fd4421926d4e2b6f2a1aaed432ebb
|
4
|
+
data.tar.gz: 061a72ad65c7d5eb49e34846a66989c964df8270dffc2cc9d96f284f7f1798f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a6f1a2672104d50b7605265da51e1f1ec0787c374c00630707a2e834e30b33fdcdd8d007b2ce79ba4b4571bb0f27e34064cc173bfb04d56052bf3eb82f18f4a
|
7
|
+
data.tar.gz: f4336df546c2ec3e82e467ce9fd20e08182d60b673845f61b3376abe05cb5506a5780b3e57129e93f87dd48d1d19de36f5dfd53244febfa63c9f8aa14df67d1a
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 1.3.1
|
4
|
+
|
5
|
+
- Improve instructions to help ensure correct and successful usage
|
6
|
+
|
3
7
|
## 1.3.0
|
4
8
|
|
5
|
-
- Setup Bundler default group only when using as an API to avoid loading :development/:test group gems into a production app
|
9
|
+
- Setup Bundler default group only when using as an API to avoid loading :development/:test group gems into a production app
|
6
10
|
- Announce that download files are missing for `bundler download show` when a Downloadfile exists but downloads have not been made
|
7
11
|
- Document options (e.g. --keep-existing and --all-operating-systems) in `bundle download help`
|
8
12
|
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# bundler-download - Bundler Plugin - v1.3.
|
1
|
+
# bundler-download - Bundler Plugin - v1.3.1
|
2
2
|
[![Gem Version](https://badge.fury.io/rb/bundler-download.svg)](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`
|
@@ -9,7 +9,7 @@ The RubyGem ecosystem, famous for gems like Rails for web development, Devise fo
|
|
9
9
|
|
10
10
|
That said, you would not want to package extremely large files, like the OpenAI GPT-3 175 billion parameter models, in a RubyGem.
|
11
11
|
|
12
|
-
Enter [bundler-download](https://rubygems.org/gems/bundler-download), a Bundler Plugin that enables downloading extra gem files after installing with
|
12
|
+
Enter [bundler-download](https://rubygems.org/gems/bundler-download), a Bundler Plugin that enables downloading extra gem files after installing with `bundle install` by declaring gem downloads in a [Downloadfile](#downloadfile)
|
13
13
|
|
14
14
|
## How It Works
|
15
15
|
|
@@ -55,7 +55,7 @@ Example `Downloadfile`:
|
|
55
55
|
|
56
56
|
```
|
57
57
|
download 'http://dl.maketechnology.io/chromium-cef/rls/repository/plugins/com.make.chromium.cef.gtk.linux.x86_64_0.4.0.202005172227.jar' # downloads into gem root directory
|
58
|
-
download 'http://dl.maketechnology.io/chromium-cef/rls/repository/plugins/com.make.chromium.cef.cocoa.macosx.x86_64_0.4.0.202005172227.jar',
|
58
|
+
download 'http://dl.maketechnology.io/chromium-cef/rls/repository/plugins/com.make.chromium.cef.cocoa.macosx.x86_64_0.4.0.202005172227.jar',
|
59
59
|
to: 'cef' # downloads into 'cef' directory under the gem installation directory
|
60
60
|
download 'http://dl.maketechnology.io/chromium-cef/rls/repository/plugins/com.make.chromium.cef.win32.win32.x86_64_0.4.0.202005172227.jar',
|
61
61
|
to: 'cef/windows', os: 'windows' # downloads into 'cef/windows' directory under the gem installation directory in Windows OS only
|
@@ -102,7 +102,7 @@ Using tty-cursor 0.7.1
|
|
102
102
|
Using tty-screen 0.8.1
|
103
103
|
Using unicode-display_width 1.7.0
|
104
104
|
Using tty-progressbar 0.17.0
|
105
|
-
Using bundler-download 1.3.
|
105
|
+
Using bundler-download 1.3.1
|
106
106
|
Using facets 3.1.0
|
107
107
|
Using glimmer 1.0.0
|
108
108
|
bundle-download plugin gem-after-install-all hook:
|
@@ -160,12 +160,12 @@ Run the `help` subcommand (or usage) to bring up usage instructions:
|
|
160
160
|
|
161
161
|
```
|
162
162
|
bundle download help
|
163
|
-
```
|
163
|
+
```
|
164
164
|
|
165
165
|
Prints:
|
166
166
|
|
167
167
|
```
|
168
|
-
== bundler-download - Bundler Plugin - v1.3.
|
168
|
+
== bundler-download - Bundler Plugin - v1.3.1 ==
|
169
169
|
|
170
170
|
Commands/Subcommands/Options:
|
171
171
|
bundle download help # Provide help by printing usage instructions
|
@@ -186,7 +186,7 @@ Run the `clear` subcommand to clear downloads by deleting them under all gems:
|
|
186
186
|
|
187
187
|
```
|
188
188
|
bundle download clear
|
189
|
-
```
|
189
|
+
```
|
190
190
|
|
191
191
|
Example printout:
|
192
192
|
|
@@ -200,7 +200,7 @@ Run the `list` subcommand to list downloads by printing Downloadfile content for
|
|
200
200
|
|
201
201
|
```
|
202
202
|
bundle download list
|
203
|
-
```
|
203
|
+
```
|
204
204
|
|
205
205
|
Example printout:
|
206
206
|
|
@@ -208,7 +208,7 @@ Example printout:
|
|
208
208
|
Listing /Users/User/.rvm/gems/ruby-2.7.1@bundler-download/gems/glimmer-cw-browser-chromium-1.0.0/Downloadfile
|
209
209
|
download 'http://dl.maketechnology.io/chromium-cef/rls/repository/plugins/com.make.chromium.cef.gtk.linux.x86_64_0.4.0.202005172227.jar',
|
210
210
|
to: 'vendor/jars/linux', os: 'linux'
|
211
|
-
download 'http://dl.maketechnology.io/chromium-cef/rls/repository/plugins/com.make.chromium.cef.cocoa.macosx.x86_64_0.4.0.202005172227.jar',
|
211
|
+
download 'http://dl.maketechnology.io/chromium-cef/rls/repository/plugins/com.make.chromium.cef.cocoa.macosx.x86_64_0.4.0.202005172227.jar',
|
212
212
|
to: 'vendor/jars/mac', os: 'mac'
|
213
213
|
download 'http://dl.maketechnology.io/chromium-cef/rls/repository/plugins/com.make.chromium.cef.win32.win32.x86_64_0.4.0.202005172227.jar',
|
214
214
|
to: 'vendor/jars/windows', os: 'windows'
|
@@ -220,7 +220,7 @@ Run the `show` subcommand to show downloaded files for all gems:
|
|
220
220
|
|
221
221
|
```
|
222
222
|
bundle download show
|
223
|
-
```
|
223
|
+
```
|
224
224
|
|
225
225
|
Example printout:
|
226
226
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.
|
1
|
+
1.3.1
|
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.1 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.1"
|
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 = "
|
14
|
+
s.date = "2021-02-13"
|
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,8 +35,8 @@ 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. \nAdd `plugin 'bundler-download'`
|
39
|
-
s.rubygems_version = "3.
|
38
|
+
s.post_install_message = "*** bundler-download post install message ***\nSome gems have a Downloadfile! Follow the instructions below to download their files. \nAdd `plugin 'bundler-download'` above all gems in Gemfile and run `bundle` twice (bundler-download is activated the second time to download extra files) \nor alternatively just run `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
|
+
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
|
|
42
42
|
if s.respond_to? :specification_version then
|
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.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- AndyMaleh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -202,9 +202,12 @@ licenses:
|
|
202
202
|
metadata: {}
|
203
203
|
post_install_message: "*** bundler-download post install message ***\nSome gems have
|
204
204
|
a Downloadfile! Follow the instructions below to download their files. \nAdd `plugin
|
205
|
-
'bundler-download'`
|
206
|
-
|
207
|
-
|
205
|
+
'bundler-download'` above all gems in Gemfile and run `bundle` twice (bundler-download
|
206
|
+
is activated the second time to download extra files) \nor alternatively just run
|
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
|
209
|
+
plugin, run `bundle download`\nTo get help with bundler-download plugin, run `bundle
|
210
|
+
download help`\nLearn more at: https://www.rubydoc.info/gems/bundler-download"
|
208
211
|
rdoc_options: []
|
209
212
|
require_paths:
|
210
213
|
- lib
|
@@ -219,7 +222,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
219
222
|
- !ruby/object:Gem::Version
|
220
223
|
version: '0'
|
221
224
|
requirements: []
|
222
|
-
rubygems_version: 3.
|
225
|
+
rubygems_version: 3.2.3
|
223
226
|
signing_key:
|
224
227
|
specification_version: 4
|
225
228
|
summary: bundler-download is a Bundler plugin for auto-downloading specified extra
|