bundler-install_dash_docs 0.1.0-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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 83327e5b8a5b5b9edd567bc4c15ef462e79ec0bbb50c0b8f71cd0d4ac9e53c75
4
+ data.tar.gz: 74acf93aaab6e169e0bcc3e79b9f2c9a76cb2d65b06ae9be6a394e023b38c8af
5
+ SHA512:
6
+ metadata.gz: 659ffe45b856a624ff3d693f4fc8dc8ebaef077e09083ea6e8759f2bbe32cb84178fe67232063bdd5baf502d210d95a82984a7cd2624e35698a3f19fe23dc857
7
+ data.tar.gz: f5aec2f4868975502426b15e5c66f8b2e78731ae67c9079cf0eedbb3447224a982b30b35032f663da1782801753756c340fef2af266c8e3e9b007afba09c7835
data/.standard.yml ADDED
@@ -0,0 +1,3 @@
1
+ # For available configuration options, see:
2
+ # https://github.com/testdouble/standard
3
+ ruby_version: 2.6
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2022-03-04
4
+
5
+ - Initial release. Invokes `dash-install://` for gems in the lockfile
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at dan@djackson.org. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in bundler-install_dash_docs.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+ gem "minitest", "~> 5.0"
10
+ gem "standard", "~> 1.3"
11
+ gem "gem-release"
data/Gemfile.lock ADDED
@@ -0,0 +1,56 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bundler-install_dash_docs (0.1.0-universal-darwin)
5
+ addressable (~> 2.2)
6
+ thor (~> 1.2)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ addressable (2.8.0)
12
+ public_suffix (>= 2.0.2, < 5.0)
13
+ ast (2.4.2)
14
+ gem-release (2.2.2)
15
+ minitest (5.15.0)
16
+ parallel (1.21.0)
17
+ parser (3.1.0.0)
18
+ ast (~> 2.4.1)
19
+ public_suffix (4.0.6)
20
+ rainbow (3.1.1)
21
+ rake (13.0.6)
22
+ regexp_parser (2.2.1)
23
+ rexml (3.2.5)
24
+ rubocop (1.25.1)
25
+ parallel (~> 1.10)
26
+ parser (>= 3.1.0.0)
27
+ rainbow (>= 2.2.2, < 4.0)
28
+ regexp_parser (>= 1.8, < 3.0)
29
+ rexml
30
+ rubocop-ast (>= 1.15.1, < 2.0)
31
+ ruby-progressbar (~> 1.7)
32
+ unicode-display_width (>= 1.4.0, < 3.0)
33
+ rubocop-ast (1.15.2)
34
+ parser (>= 3.0.1.1)
35
+ rubocop-performance (1.13.2)
36
+ rubocop (>= 1.7.0, < 2.0)
37
+ rubocop-ast (>= 0.4.0)
38
+ ruby-progressbar (1.11.0)
39
+ standard (1.7.2)
40
+ rubocop (= 1.25.1)
41
+ rubocop-performance (= 1.13.2)
42
+ thor (1.2.1)
43
+ unicode-display_width (2.1.0)
44
+
45
+ PLATFORMS
46
+ universal-darwin
47
+
48
+ DEPENDENCIES
49
+ bundler-install_dash_docs!
50
+ gem-release
51
+ minitest (~> 5.0)
52
+ rake (~> 13.0)
53
+ standard (~> 1.3)
54
+
55
+ BUNDLED WITH
56
+ 2.3.7
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Dan Jackson
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # Bundler::InstallDashDocs
2
+
3
+ A [bundler plugin](https://bundler.io/bundle_plugin.html) that reads your Gemfile.lock and installs the matching documentation into
4
+ [Dash.app](https://kapeli.com/dash).
5
+
6
+ This only makes sense on macOS, and due to limitations in the APIs provided by Dash.app, it can only install the current versions. In the future, I'd love if this could manage a docset for a project, but Dash.app doesn't support that yet.
7
+
8
+ Requires Dash v3.1.0 per https://kapeli.com/dash_install
9
+
10
+ ## Installation
11
+
12
+ You probably want to install this at the system level, so it's available for any project that uses bundler. Perhaps:
13
+
14
+ $ gem install bundler-install_dash_docs
15
+
16
+ ## Usage
17
+
18
+ $ bundle install_dash_docs install
19
+
20
+ 👆 is the most likely usage you'll want. Instead of `install` you can ask for the `version`, or get `help`. Flags to `install` can change the verbosity level: `-q` or `--trace`; can ask for a `--dry-run`; or change the subset of gems installed.
21
+
22
+ `bundle install_dash_docs help install` will show all the options available.
23
+
24
+ ## Development
25
+
26
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
27
+
28
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
29
+
30
+ ## Contributing
31
+
32
+ Bug reports and pull requests are welcome on GitHub at https://github.com/e28eta/bundler-install_dash_docs. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/e28eta/bundler-install_dash_docs/blob/main/CODE_OF_CONDUCT.md).
33
+
34
+ ## License
35
+
36
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
37
+
38
+ ## Code of Conduct
39
+
40
+ Everyone interacting in the Bundler::InstallDashDocs project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/bundler-install_dash_docs/blob/main/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
5
+
6
+ Rake::TestTask.new(:test) do |t|
7
+ t.libs << "test"
8
+ t.libs << "lib"
9
+ t.test_files = FileList["test/**/test_*.rb"]
10
+ end
11
+
12
+ require "standard/rake"
13
+
14
+ task default: %i[test standard]
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/bundler/install_dash_docs/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "bundler-install_dash_docs"
7
+ spec.version = Bundler::InstallDashDocs::VERSION
8
+ spec.authors = ["Dan Jackson"]
9
+ spec.email = ["dan@djackson.org"]
10
+
11
+ spec.summary = "Bundler plugin to install gem documentation into the macOS documentation browser Dash https://kapeli.com/dash"
12
+ spec.homepage = "https://github.com/e28eta/bundler-install_dash_docs"
13
+ spec.license = "MIT"
14
+ spec.required_ruby_version = ">= 2.6.0"
15
+ spec.platform = "universal-darwin" # Dash.app is macOS-only, this plugin is broken on other platforms
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = "https://github.com/e28eta/bundler-install_dash_docs"
19
+ spec.metadata["changelog_uri"] = "https://github.com/e28eta/bundler-install_dash_docs/blob/main/CHANGELOG.md"
20
+ spec.metadata["funding_uri"] = "https://github.com/sponsors/e28eta"
21
+
22
+ # Specify which files should be added to the gem when it is released.
23
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
25
+ `git ls-files -z`.split("\x0").reject do |f|
26
+ (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
27
+ end
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_dependency "addressable", "~> 2.2"
34
+ spec.add_dependency "thor", "~> 1.2"
35
+ end
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/install_dash_docs"
4
+ Bundler::InstallDashDocs::CLI.start
@@ -0,0 +1,59 @@
1
+ require "thor"
2
+ require "bundler"
3
+
4
+ module Bundler
5
+ module InstallDashDocs
6
+ class CLI < ::Thor
7
+ ::Bundler::Plugin::API.command("install_dash_docs", self)
8
+
9
+ desc "install", "Install docsets for all gems in this bundle into Dash.app"
10
+ method_option :quiet, type: :boolean, default: false, aliases: "-q", desc: "Supresses normal output of the gem names and versions"
11
+ method_option :dry_run, type: :boolean, default: false, aliases: "-n", desc: "Print out what would be performed, but do not install docsets in Dash"
12
+ method_option :gemfile_lock, type: :string, lazy_default: "", aliases: "-G", desc: "Provide custom path to the Gemfile.lock to parse"
13
+ method_option :trace, type: :boolean, default: false, desc: "Print commands executed"
14
+ method_option :dependencies_only, type: :boolean, default: false, desc: "Default behavior is to install all gems from the Gemfile.lock. This option only installs those found in the Dependencies section, which are the ones explicitly listed in the Gemfile"
15
+ def install
16
+ quiet = options[:quiet]
17
+
18
+ lockfile_contents = read_custom_gemfile_lock(options[:gemfile_lock], quiet)
19
+ lockfile = Lockfile.new(lockfile_contents)
20
+ gems = if options[:dependencies_only]
21
+ puts "Only processing gems from Dependencies section" unless quiet
22
+ lockfile.dependencies
23
+ else
24
+ puts "Processing all gems" unless quiet
25
+ lockfile.all_gems
26
+ end
27
+ puts
28
+
29
+ gems.each { |name, version|
30
+ Dash.install(name, version, quiet: quiet, trace: options[:trace], dry_run: options[:dry_run])
31
+ }
32
+ end
33
+
34
+ desc "version", "Prints bundler-install_dash_docs version"
35
+ def version
36
+ puts "bundler-install_dash_docs #{VERSION}"
37
+ end
38
+
39
+ def self.exit_on_failure?
40
+ true
41
+ end
42
+
43
+ private
44
+
45
+ def read_custom_gemfile_lock(gemfile, quiet)
46
+ if gemfile.nil?
47
+ nil
48
+ elsif gemfile.empty?
49
+ raise(ArgumentError, "--gemfile_lock/-G requires a path")
50
+ elsif !File.exist?(gemfile)
51
+ raise(FileNotFound, "custom Gemfile.lock file not found: #{gemfile}")
52
+ else
53
+ puts "Reading custom Gemfile.lock from `#{gemfile}`" unless quiet
54
+ Bundler.read_file(gemfile)
55
+ end
56
+ end
57
+ end
58
+ end
59
+ end
@@ -0,0 +1,30 @@
1
+ module Bundler
2
+ module InstallDashDocs
3
+ ##
4
+ # Methods for interacting with Dash.app
5
+ class Dash
6
+ ##
7
+ # Installs the provided gem documentation into Dash.app
8
+ #
9
+ # @param [String] gem_name the name of the gem
10
+ # @param [String] version the specific version of the gem
11
+ # @param [Boolean] quiet if set to true, informative log messages are suppressed
12
+ # @param [Boolean] trace if set to true, the `open` command that's executed is logged
13
+ # @param [Boolean] dry_run if set to true, `open` command is not executed (but might be printed if trace == true)
14
+ def self.install(gem_name, version, quiet: false, trace: false, dry_run: false)
15
+ puts "Installing docs for #{gem_name} #{version}" unless quiet
16
+ url = DashInstallUrl.new(gem_name, version)
17
+ command = [
18
+ "open",
19
+ "-g",
20
+ url.to_str
21
+ ]
22
+ puts("+ " + command.join(" ")) if trace
23
+ unless dry_run
24
+ system(*command)
25
+ sleep 2
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,30 @@
1
+ require "addressable/uri"
2
+
3
+ module Bundler
4
+ module InstallDashDocs
5
+ ##
6
+ # A dash-specific URL for installing the given gem's documentation at specified version
7
+ #
8
+ # documentation https://kapeli.com/dash_install
9
+ class DashInstallUrl
10
+ attr_reader :gem_name, :version
11
+
12
+ ##
13
+ # @param [String] gem_name the name of the gem
14
+ # @param [String] version the specific version of the gem
15
+ def initialize(gem_name, version)
16
+ @gem_name = gem_name
17
+ @version = version
18
+ end
19
+
20
+ ##
21
+ # @return [String] properly encoded URL to tell Dash.app to install this gem's documentation
22
+ def to_str
23
+ enc_name = Addressable::URI.encode_component(@gem_name, Addressable::URI::CharacterClasses::UNRESERVED)
24
+ enc_version = Addressable::URI.encode_component(@version, Addressable::URI::CharacterClasses::UNRESERVED)
25
+
26
+ "dash-install://repo_name=Ruby%20Docsets&entry_name=#{enc_name}&version=#{enc_version}"
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,54 @@
1
+ require "bundler"
2
+
3
+ module Bundler
4
+ module InstallDashDocs
5
+ ##
6
+ # Reads & parses a Gemfile.lock Lockfile, to extract the gems listed in it
7
+ #
8
+ # Note that some gems may be listed multiple times, with different versions
9
+ class Lockfile
10
+ ##
11
+ # Array of [gem_name, version] pairs that are listed in the Dependencies section. Most likely ones that're specifically requested
12
+ # by the Gemfile
13
+ attr_reader :dependencies
14
+ ##
15
+ # Array of [gem_name, version] pairs that includes all gems from the Lockfile
16
+ attr_reader :all_gems
17
+
18
+ ##
19
+ # Constructor that parses gem names and versions from the Lockfile
20
+ #
21
+ # @param [String, nil] lockfile_contents if non-nil, this string's contents are used instead of the Bundler.default_lockfile
22
+ def initialize(lockfile_contents = nil)
23
+ lockfile_contents ||= Bundler.default_lockfile.read
24
+ @parser = Bundler::LockfileParser.new(lockfile_contents)
25
+
26
+ # dictionary of gem name to array of Bundler::LazySpecification
27
+ @specs = @parser.specs.group_by(&:name)
28
+
29
+ # create arrays of [name, version] pairs for all specs,
30
+ # and only for dependencies from Gemfile
31
+ @all_gems, @dependencies = [
32
+ @specs,
33
+ @parser.dependencies
34
+ ].map { |hash|
35
+ hash.keys
36
+ .sort
37
+ .flat_map { |name|
38
+ versions_for_name(name).map { |version| [name, version] }
39
+ }
40
+ }
41
+ end
42
+
43
+ private
44
+
45
+ # Returns an array of version strings
46
+ def versions_for_name(name)
47
+ @specs[name]
48
+ .map(&:version).map(&:to_s) # pull version from LazySpecification
49
+ .sort
50
+ .uniq
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Bundler
4
+ module InstallDashDocs
5
+ VERSION = "0.1.0"
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "install_dash_docs/version"
4
+ require_relative "install_dash_docs/cli"
5
+ require_relative "install_dash_docs/dash"
6
+ require_relative "install_dash_docs/dash_install_url"
7
+ require_relative "install_dash_docs/lockfile"
8
+
9
+ module Bundler
10
+ module InstallDashDocs
11
+ class ArgumentError < StandardError; end
12
+
13
+ class FileNotFound < StandardError; end
14
+ end
15
+ end
data/plugins.rb ADDED
@@ -0,0 +1 @@
1
+ require "bundler/install_dash_docs"
@@ -0,0 +1,6 @@
1
+ module Bundler
2
+ module InstallDashDocs
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bundler-install_dash_docs
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: universal-darwin
6
+ authors:
7
+ - Dan Jackson
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-03-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: addressable
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: thor
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.2'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.2'
41
+ description:
42
+ email:
43
+ - dan@djackson.org
44
+ executables:
45
+ - bundler-install_dash_docs
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".standard.yml"
50
+ - CHANGELOG.md
51
+ - CODE_OF_CONDUCT.md
52
+ - Gemfile
53
+ - Gemfile.lock
54
+ - LICENSE.txt
55
+ - README.md
56
+ - Rakefile
57
+ - bundler-install_dash_docs.gemspec
58
+ - exe/bundler-install_dash_docs
59
+ - lib/bundler/install_dash_docs.rb
60
+ - lib/bundler/install_dash_docs/cli.rb
61
+ - lib/bundler/install_dash_docs/dash.rb
62
+ - lib/bundler/install_dash_docs/dash_install_url.rb
63
+ - lib/bundler/install_dash_docs/lockfile.rb
64
+ - lib/bundler/install_dash_docs/version.rb
65
+ - plugins.rb
66
+ - sig/bundler/install_dash_docs.rbs
67
+ homepage: https://github.com/e28eta/bundler-install_dash_docs
68
+ licenses:
69
+ - MIT
70
+ metadata:
71
+ homepage_uri: https://github.com/e28eta/bundler-install_dash_docs
72
+ source_code_uri: https://github.com/e28eta/bundler-install_dash_docs
73
+ changelog_uri: https://github.com/e28eta/bundler-install_dash_docs/blob/main/CHANGELOG.md
74
+ funding_uri: https://github.com/sponsors/e28eta
75
+ post_install_message:
76
+ rdoc_options: []
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: 2.6.0
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ requirements: []
90
+ rubygems_version: 3.3.3
91
+ signing_key:
92
+ specification_version: 4
93
+ summary: Bundler plugin to install gem documentation into the macOS documentation
94
+ browser Dash https://kapeli.com/dash
95
+ test_files: []