bundler-install_dash_docs 0.1.1-universal-darwin → 0.1.2-universal-darwin
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/CHANGELOG.md +5 -0
- data/Gemfile.lock +1 -1
- data/bundler-install_dash_docs.gemspec +14 -0
- data/lib/bundler/install_dash_docs/version.rb +1 -1
- metadata +15 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 297e3c820936d501dd4d5d9ffed5f8cdb05d3a1fa84ce4be25d06db58b95323c
|
4
|
+
data.tar.gz: 4606ade76ba7b06a09237fcf43cccfb74a1750dc87c1784fbe7fc9ad520642d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef41fa7883bfc7ff22a088e39a959c204130d4a0cfaa88731d7e5a57857066036612e1c0cccfee14f2ee48ce41268e7ffdc41fd8b0bb1f784e5f59efccde2498
|
7
|
+
data.tar.gz: 6c3851f92b7c481c70fa471f931626e811bafd584bdce96cff262261fe34952e9d83ba544c14ef41cf12c0f384d34954cee872f168a970eebe50d596907d0ec5
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -9,11 +9,25 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.email = ["dan@djackson.org"]
|
10
10
|
|
11
11
|
spec.summary = "Bundler plugin to install gem documentation into the macOS documentation browser Dash https://kapeli.com/dash"
|
12
|
+
spec.description = <<-EOF
|
13
|
+
Bundler plugin that can be installed system-wide (`gem install bundler-install_dash_docs`) or on a per-project basis
|
14
|
+
(`bundle plugin install bundler-install_dash_docs`).
|
15
|
+
|
16
|
+
Once installed, primary command is `bundle install_dash_docs install`
|
17
|
+
|
18
|
+
This will read your Gemfile.lock, and use the Dash.app (v3.1.0 and later) custom url scheme `dash-install:` to
|
19
|
+
request that Dash.app install the matching documentation for each gem at the specific version. It currently takes ~2 seconds
|
20
|
+
per gem, so its a long process for large projects.
|
21
|
+
|
22
|
+
I'd love to do more, but Dash.app does not yet support anything more interesting (removing older versions? updating a search profile?).
|
23
|
+
EOF
|
12
24
|
spec.homepage = "https://github.com/e28eta/bundler-install_dash_docs"
|
13
25
|
spec.license = "MIT"
|
14
26
|
spec.required_ruby_version = ">= 2.6.0"
|
15
27
|
spec.platform = "universal-darwin" # Dash.app is macOS-only, this plugin is broken on other platforms
|
28
|
+
spec.requirements << "Dash.app, v3.1.0 or later, from https://kapeli.com/dash"
|
16
29
|
|
30
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
17
31
|
spec.metadata["homepage_uri"] = spec.homepage
|
18
32
|
spec.metadata["source_code_uri"] = "https://github.com/e28eta/bundler-install_dash_docs"
|
19
33
|
spec.metadata["changelog_uri"] = "https://github.com/e28eta/bundler-install_dash_docs/blob/main/CHANGELOG.md"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundler-install_dash_docs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: universal-darwin
|
6
6
|
authors:
|
7
7
|
- Dan Jackson
|
@@ -38,7 +38,17 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '1.2'
|
41
|
-
description:
|
41
|
+
description: |2
|
42
|
+
Bundler plugin that can be installed system-wide (`gem install bundler-install_dash_docs`) or on a per-project basis
|
43
|
+
(`bundle plugin install bundler-install_dash_docs`).
|
44
|
+
|
45
|
+
Once installed, primary command is `bundle install_dash_docs install`
|
46
|
+
|
47
|
+
This will read your Gemfile.lock, and use the Dash.app (v3.1.0 and later) custom url scheme `dash-install:` to
|
48
|
+
request that Dash.app install the matching documentation for each gem at the specific version. It currently takes ~2 seconds
|
49
|
+
per gem, so its a long process for large projects.
|
50
|
+
|
51
|
+
I'd love to do more, but Dash.app does not yet support anything more interesting (removing older versions? updating a search profile?).
|
42
52
|
email:
|
43
53
|
- dan@djackson.org
|
44
54
|
executables:
|
@@ -69,6 +79,7 @@ homepage: https://github.com/e28eta/bundler-install_dash_docs
|
|
69
79
|
licenses:
|
70
80
|
- MIT
|
71
81
|
metadata:
|
82
|
+
rubygems_mfa_required: 'true'
|
72
83
|
homepage_uri: https://github.com/e28eta/bundler-install_dash_docs
|
73
84
|
source_code_uri: https://github.com/e28eta/bundler-install_dash_docs
|
74
85
|
changelog_uri: https://github.com/e28eta/bundler-install_dash_docs/blob/main/CHANGELOG.md
|
@@ -87,7 +98,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
98
|
- - ">="
|
88
99
|
- !ruby/object:Gem::Version
|
89
100
|
version: '0'
|
90
|
-
requirements:
|
101
|
+
requirements:
|
102
|
+
- Dash.app, v3.1.0 or later, from https://kapeli.com/dash
|
91
103
|
rubygems_version: 3.3.3
|
92
104
|
signing_key:
|
93
105
|
specification_version: 4
|