Sha256: 6c4a98634eb7028b279b9854e4f12f17ff6ff96b689830afe1b724dcadff5d6a
Contents?: true
Size: 790 Bytes
Versions: 1
Compression:
Stored size: 790 Bytes
Contents
#!/usr/bin/env ruby require 'rubygems' unless defined?(Gem) # Useful only on --dev mode require 'bundler/setup' if %w(Gemfile .components).all? { |f| File.exist?(f) } tennpipes_gen_path = File.expand_path('../../lib', __FILE__) $:.unshift(tennpipes_gen_path) if File.directory?(tennpipes_gen_path) && !$:.include?(tennpipes_gen_path) # We try to load the vendored tennpipes-base if exist (useful also for --dev mode) tennpipes_core_path = File.expand_path('../../../tennpipes-base/lib', __FILE__) $:.unshift(tennpipes_core_path) if File.directory?(tennpipes_core_path) && !$:.include?(tennpipes_core_path) require 'tennpipes-init' require 'tennpipes-init/generators/cli' # We need our config boot because we need to load registered generators so: Tennpipes::Generators::Cli.start(ARGV)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tennpipes-init-3.6.6 | bin/tennpipes-init |