Sha256: f9cd45188894e8514a8ed3421c343be89405fa00bc0353a2f610e740a6165319

Contents?: true

Size: 1.45 KB

Versions: 4

Compression:

Stored size: 1.45 KB

Contents

# -*- encoding: utf-8 -*-

require File.expand_path("../lib/jazz_fingers/version", __FILE__)

Gem::Specification.new do |gem|
  gem.name          = "jazz_fingers"
  gem.version       = JazzFingers::VERSION
  gem.author        = "Paulo Henrique Lopes Ribeiro"
  gem.email         = "plribeiro3000@gmail.com"
  gem.license       = "MIT"
  gem.homepage      = "https://github.com/plribeiro3000/jazz_fingers"
  gem.summary       = "Exercise those fingers. Pry-based enhancements for the default Ruby console."
  gem.description   = "Spending hours in the ruby console? Spruce it up and show off those hard-working hands! jazz_fingers replaces IRB with Pry, improves output through awesome_print, and has some other goodies up its sleeves."

  gem.executables   = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
  gem.files         = `git ls-files`.split("\n")
  gem.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  gem.require_paths = ["lib"]

  # Dependencies
  gem.required_ruby_version = ">= 2.0"
  gem.add_runtime_dependency "pry", "~> 0.10"
  gem.add_runtime_dependency "pry-doc", "~> 0.6"
  gem.add_runtime_dependency "pry-git", "~> 0.2"
  gem.add_runtime_dependency "pry-remote", ">= 0.1.7"
  gem.add_runtime_dependency "pry-byebug", "~> 3.1"
  gem.add_runtime_dependency "hirb", "~> 0.7"
  gem.add_runtime_dependency "pry-coolline", "~> 0.2"
  gem.add_runtime_dependency "awesome_print", "~> 1.6"

  gem.add_development_dependency "rubocop"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jazz_fingers-2.0.2 jazz_fingers.gemspec
jazz_fingers-2.0.2.rc1 jazz_fingers.gemspec
jazz_fingers-2.0.1 jazz_fingers.gemspec
jazz_fingers-2.0.1.rc1 jazz_fingers.gemspec