Sha256: bc41d8021c58643e643286c34ed171d46cc1594f418745407a5eb30774437de5

Contents?: true

Size: 1.52 KB

Versions: 5

Compression:

Stored size: 1.52 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'install_gem_local/version'

Gem::Specification.new do |spec|
  spec.name          = 'install_gem_local'
  spec.version       = InstallGemLocal::VERSION
  spec.authors       = ['Dhanabal T']
  spec.email         = ['vel.dhanabal@gmail.com']

  spec.summary       = 'install the gem in my local'
  spec.description   = 'to build and install the gem in my local'
  spec.homepage      = 'https://github.com/dhanabalt/install_gem_local'
  spec.license       = 'MIT'

  # 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.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.bindir        = 'exe'
  spec.executables   = ['install_gem_local']
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 2.0'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.0'

  # pretty puts
  spec.add_dependency 'awesome_print', '~> 1.8', '>= 1.8.0'
  # CLI options
  spec.add_dependency 'downup', '~> 0.11', '>= 0.11.7'
  # CLI
  spec.add_dependency 'thor', '~> 0.20', '>= 0.20.3'
  # Execute shell commands with pretty output
  spec.add_dependency 'tty-command', '~> 0.8', '>= 0.8.2'
  # Internationalization
  spec.add_dependency 'i18n', '~> 1.6', '>= 1.6.0'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
install_gem_local-0.1.17 install_gem_local.gemspec
install_gem_local-0.1.16 install_gem_local.gemspec
install_gem_local-0.1.15 install_gem_local.gemspec
install_gem_local-0.1.14 install_gem_local.gemspec
install_gem_local-0.1.13 install_gem_local.gemspec