Sha256: 74824b59010d63d58e29ae6ef140023645059d3c3918a0c021f0a87f27dd154a

Contents?: true

Size: 1.18 KB

Versions: 2

Compression:

Stored size: 1.18 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "dude/version"

Gem::Specification.new do |spec|
  spec.name          = "dude-cli"
  spec.version       = Dude::VERSION
  spec.authors       = ["Nikita Pupko"]
  spec.email         = ["lazynick7@gmail.com"]
  spec.summary       = %q{Daily assistant}
  spec.description   = %q{A daily assistant in the hard work of a programmer}
  spec.homepage      = "https://github.com/Random4405/dude"
  spec.license       = "MIT"
  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "bin"
  # spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.executables   = ["dude"]
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.16"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "byebug"
  spec.add_development_dependency "rspec", "~> 3.0"

  spec.add_runtime_dependency "thor"
  spec.add_runtime_dependency "colorize"
  spec.add_runtime_dependency "gitlab"
  spec.add_runtime_dependency "git"
  spec.add_runtime_dependency "rest-client"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dude-cli-0.2.2 dude.gemspec
dude-cli-0.2.1 dude.gemspec