Sha256: 3550b2974ccab9fe8c0406922727900af45720021e036731313406a0f5442c8d

Contents?: true

Size: 1.35 KB

Versions: 7

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true

module Travis
  SETUP = "travis:setup"
  INSTALL = "travis:install"
  TASKS = "travis:tasks:all"
  GIT = "travis:git:config"
end

module Bundle
  INSTALL = "bundle:install"
  ADD = "bundle:git:add"
  TAG = "rally-point"
  REBUILD = "bundle:rebuild"
  BUILD = "bundle:build"
  ROOT = Dir.getwd
  CONFIG = File.join(ROOT, ".rubocop.yml")
  DIR = File.join(ROOT, "spec/fixtures")
  TMP = File.join(ROOT, "tmp")

  module Simple
    FILE = File.join(DIR, "simple.bundle")
    REPO = File.join(TMP, "simple")
    REBUILD = "bundle:simple:rebuild"
    BUILD = "bundle:simple:build"
    FLUSH = "bundle:simple:flush"
    TEST = "bundle:simple:test"
    TAG = Bundle::TAG
  end

  module Complex
    FILE = File.join(DIR, "complex.bundle")
    REPO = File.join(TMP, "complex")
    GITHUB = "https://github.com/oleander/git-fame-rb"
    REBUILD = "bundle:complex:rebuild"
    BUILD = "bundle:complex:build"
    FLUSH = "bundle:complex:flush"
    TEST = "bundle:complex:test"
    TAG = Bundle::TAG
  end
end

module Vendor
  ROOT = File.expand_path(File.join(__dir__, "../../.."))
  DIR = File.join(ROOT, "vendor/shopify")
  REPO = File.join(DIR, "cli-ui")
  GITHUB = "https://github.com/shopify/cli-ui"
  START = "6058c301bb144c2f33f7910734d08b1490ed8112"
  BUILD = "vendor:shopify:build"
  REBUILD = "vendor:shopify:rebuild"
  TEST = "vendor:shopify:test"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rfix-3.0.1 lib/rfix/rake/paths.rb
rfix-3.0.0 lib/rfix/rake/paths.rb
rfix-2.0.4 lib/rfix/rake/paths.rb
rfix-2.0.3 lib/rfix/rake/paths.rb
rfix-2.0.2 lib/rfix/rake/paths.rb
rfix-2.0.1 lib/rfix/rake/paths.rb
rfix-2.0.0 lib/rfix/rake/paths.rb