-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpry-byetypo.gemspec
33 lines (28 loc) · 1.38 KB
/
pry-byetypo.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
require_relative "lib/pry-byetypo/version"
Gem::Specification.new do |gem|
gem.name = "pry-byetypo"
gem.version = Pry::Byetypo::VERSION
gem.authors = ["Clément Morisset"]
gem.email = ["[email protected]"]
gem.summary = "Autocorrects typos in your Pry console"
gem.description = "This Pry plugin captures exceptions that could be due to typos and deduces the correct command based on your database information."
gem.homepage = "https://github.com/morissetcl/pry-byetypo"
gem.license = "MIT"
gem.required_ruby_version = ">= 2.7.0"
gem.metadata["homepage_uri"] = gem.homepage
gem.metadata["source_code_uri"] = "https://github.com/morissetcl/pry-byetypo"
gem.metadata["changelog_uri"] = "https://github.com/morissetcl/pry-byetypo/blob/master/CHANGELOG.md"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
gem.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor])
end
end
gem.bindir = "exe"
gem.executables = gem.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.add_development_dependency "rails", "~> 7.0"
gem.add_runtime_dependency "pry", "~> 0.15"
end