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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d128363fd286e119d7f8f884ffa5d0a5861d0b99e9544be024a7edcfe7b81eaf
4
- data.tar.gz: 102436bc68c25d633d1c63eb9e464b9347696313263a1f7d2ec88d7f67eb0f36
3
+ metadata.gz: 297e3c820936d501dd4d5d9ffed5f8cdb05d3a1fa84ce4be25d06db58b95323c
4
+ data.tar.gz: 4606ade76ba7b06a09237fcf43cccfb74a1750dc87c1784fbe7fc9ad520642d5
5
5
  SHA512:
6
- metadata.gz: 93f41cc53478e5c6bd40bda2330cbb5720dc23e689f5a671725fcffe1d8651eedbd0419121506a9785d4a8644b9b10d39de32f69ad20b30e3567616db306ea6b
7
- data.tar.gz: 7ad1bf0574d2c2aee764e0e1c4071a37c75e94baa86bc2f1e5a63a43c52de7d7ccd13775289957445c4fe66bf3b0adfa84d294fc78ca7353bc4ba2884129ed74
6
+ metadata.gz: ef41fa7883bfc7ff22a088e39a959c204130d4a0cfaa88731d7e5a57857066036612e1c0cccfee14f2ee48ce41268e7ffdc41fd8b0bb1f784e5f59efccde2498
7
+ data.tar.gz: 6c3851f92b7c481c70fa471f931626e811bafd584bdce96cff262261fe34952e9d83ba544c14ef41cf12c0f384d34954cee872f168a970eebe50d596907d0ec5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.2] - 2022-03-05
4
+
5
+ - Require MFA for rubygems
6
+ - Update gemspec's description, requirements
7
+
3
8
  ## [0.1.1] - 2022-03-05
4
9
 
5
10
  - Probably fixed the issues getting the bundler plugin system to work with this gem.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bundler-install_dash_docs (0.1.1-universal-darwin)
4
+ bundler-install_dash_docs (0.1.2-universal-darwin)
5
5
  addressable (~> 2.2)
6
6
  thor (~> 1.2)
7
7
 
@@ -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"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Bundler
4
4
  module InstallDashDocs
5
- VERSION = "0.1.1"
5
+ VERSION = "0.1.2"
6
6
  end
7
7
  end
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.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