Sha256: a9773024fecadd8abc1920b2eb509b2056c3e24144deae8ff045ba7d1ae36496
Contents?: true
Size: 816 Bytes
Versions: 11
Compression:
Stored size: 816 Bytes
Contents
#!/usr/bin/env ruby require 'rubygems' path = File.dirname(__FILE__) if File.exists?("#{path}/../.gitignore") %w(aws-cfn-decompiler aws-cfn-compiler cloudformation-ruby-dsl).each do |mod| add_path = File.expand_path(File.join(path, "../../#{mod}", "lib")) $:.unshift(add_path) end else # Borrowing from "whiches" gem ... cmd = File.basename(__FILE__, '.rb') exes = [] exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') : [''] ENV['PATH'].split(File::PATH_SEPARATOR).each do |path| exts.each { |ext| exe = File.join(path, "#{cmd}#{ext}") exes << exe if File.executable? exe } end if exes.size > 0 path = File.dirname(exes[0]) end end add_path = File.expand_path(File.join(path, "..", "lib")) $:.unshift(add_path) require 'aws/cfn/dsl' Aws::Cfn::Dsl::Main.new.run
Version data entries
11 entries across 11 versions & 1 rubygems