Sha256: 66cdeb29d7bec4116f0ccce22c44bfa931961d648aea26edec8cb300ac42bebd
Contents?: true
Size: 466 Bytes
Versions: 1
Compression:
Stored size: 466 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 # Try loading bundler if it's possible begin require 'bundler' require 'bundler/setup' begin Bundler.require(:default) rescue Bundler::GemfileNotFound # no problem end rescue LoadError # no problem end if File.file?('Gemfile') # Add lib to load path $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + '/../lib')) # Load nanoc require 'nanoc' require 'nanoc/cli' # Run base Nanoc::CLI.run(ARGV)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nanoc-3.8.0 | bin/nanoc |