Sha256: b19f66e91d3270cfdfad7b08d2643535743838ad0ec95c5fd83a878838669c0e

Contents?: true

Size: 1.39 KB

Versions: 4

Compression:

Stored size: 1.39 KB

Contents

# 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 = ["morissetcl87@gmail.com"]

  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.13", "< 0.15"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pry-byetypo-1.3.4 pry-byetypo.gemspec
pry-byetypo-1.3.3 pry-byetypo.gemspec
pry-byetypo-1.3.2 pry-byetypo.gemspec
pry-byetypo-1.3.1 pry-byetypo.gemspec