Sha256: aa2ae00403cd1841c93c4cfdd30acdafec5bd2a0f0cdb35ad349d67be6c96504

Contents?: true

Size: 687 Bytes

Versions: 2

Compression:

Stored size: 687 Bytes

Contents

# frozen_string_literal: true

require "cobra_commander/cli"
require "cobra_commander/component_tree"
require "cobra_commander/version"
require "cobra_commander/graph"
require "cobra_commander/change"
require "cobra_commander/affected"
require "cobra_commander/output"
require "cobra_commander/executor"

# 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.
module CobraCommander
  UMBRELLA_APP_NAME = "App"

  def self.umbrella_tree(path)
    ComponentTree.new(UMBRELLA_APP_NAME, path)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cobra_commander-0.5.1 lib/cobra_commander.rb
cobra_commander-0.5.0 lib/cobra_commander.rb