Sha256: d0c907e63075394985d2fccb21b5709cca2c4eb9b543f263468d48b17570c52f

Contents?: true

Size: 1.81 KB

Versions: 1

Compression:

Stored size: 1.81 KB

Contents

# coding: utf-8
# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.name          = "cobra_commander"
  spec.version       = CobraCommander::VERSION
  spec.authors       = [
    "Ben Langfeld",
    "Garett Arrowood",
    "Carlos Palhares",
  ]
  spec.email         = [
    "blangfeld@powerhrg.com",
    "garett.arrowood@powerhrg.com",
    "carlos.palhares@powerhrg.com",
  ]
  spec.summary       = "Tools for working with Component Based Rails Apps"
  spec.description   = <<~DESCRIPTION
    Tools for working with Component Based Rails Apps (see http://shageman.github.io/cbra.info/).
    Includes tools for graphing the components of an app and their relationships, as well as selectively
    testing components based on changes made.
DESCRIPTION
  spec.homepage      = "http://tech.powerhrg.com/cobra_commander/"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "bundler", "~> 1.17"
  spec.add_dependency "thor", ["< 2.0", ">= 0.18.1"]
  spec.add_dependency "ruby-graphviz", "~> 1.2.3"
  spec.add_dependency "tty-command", "~> 0.9.0"
  spec.add_dependency "tty-spinner", "~> 0.9.3"

  spec.add_development_dependency "bundler", "~> 1.17"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.5"
  spec.add_development_dependency "guard-rspec"
  spec.add_development_dependency "aruba", "~> 0.14.2"
  spec.add_development_dependency "rubocop", "0.48.1"
  spec.add_development_dependency "pry"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cobra_commander-0.9.0 cobra_commander.gemspec