Sha256: 847e5c2ef48dd684cc8864bf205a92a5f31b98fbfa13ba058eda92c0524f813a

Contents?: true

Size: 500 Bytes

Versions: 73

Compression:

Stored size: 500 Bytes

Contents

#!/usr/bin/env ruby

gem_dir = File.expand_path("..",File.dirname(__FILE__))
$LOAD_PATH.unshift gem_dir # Look in gem directory for resources first.
exec_type = ARGV[0]

if exec_type == 'rake' then
    require 'rake'
    require 'pp'
    pwd=Dir.pwd
    Dir.chdir(gem_dir) # We'll load rakefile from the gem's dir.
    Rake.application.init
    Rake.application.load_rakefile
    Dir.chdir(pwd) # Revert to original pwd for any path args passed to task.
    Rake.application.invoke_task(ARGV[1])
end

Version data entries

73 entries across 73 versions & 10 rubygems

Version Path
just-the-docs-0.10.1 bin/just-the-docs
just-the-docs-0.10.0 bin/just-the-docs
just-the-docs-0.9.0 bin/just-the-docs
opendevsecops-jekyll-0.1.2 bin/just-the-docs
opendevsecops-jekyll-0.1.1 bin/just-the-docs
opendevsecops-jekyll-0.1.0 bin/just-the-docs
just-the-docs-0.8.2 bin/just-the-docs
just-the-docs-0.8.1 bin/just-the-docs
just-the-docs-0.8.0 bin/just-the-docs
just-the-docs-0.7.0 bin/just-the-docs
just-the-docs-0.6.2 bin/just-the-docs
just-the-docs-0.6.1 bin/just-the-docs
just-the-docs-0.6.0 bin/just-the-docs
just-the-docs-0.5.4 bin/just-the-docs
just-the-docs-peter-0.1.3 bin/just-the-docs
just-the-docs-peter-0.1.2 bin/just-the-docs
just-the-docs-peter-0.1.1 bin/just-the-docs
just-the-docs-0.5.3 bin/just-the-docs
just-the-docs-0.5.2 bin/just-the-docs
just-the-docs-0.5.1 bin/just-the-docs