Sha256: 70a50cee4702b4399ddcc5f045e8b9df72e146dd1748cde56f53e6f5c7adcf23
Contents?: true
Size: 1.73 KB
Versions: 12
Compression:
Stored size: 1.73 KB
Contents
require 'io/wait' namespace :bt do desc "Symlink registered gems in `./tmp/gems` so their views, etc. can be inspected by Tailwind CSS." task :link => :environment do if Dir.exists?("tmp/gems") puts "Removing previously linked gems." `rm -f tmp/gems/*` else if File.exists?("tmp/gems") raise "A file named `tmp/gems` already exists? It has to be removed before we can create the required directory." end puts "Creating 'tmp/gems' directory." `mkdir tmp/gems` end `touch tmp/gems/.keep` BulletTrain.linked_gems.each do |linked_gem| target = `bundle show #{linked_gem}`.chomp if target.present? puts "Linking '#{linked_gem}' to '#{target}'." `ln -s #{target} tmp/gems/#{linked_gem}` end end end end namespace :bullet_train do desc "Figure out where something is coming from." task :resolve, [:all_options] => :environment do |t, arguments| ARGV.pop while ARGV.any? arguments[:all_options]&.split&.each do |argument| ARGV.push(argument) end if ARGV.include?("--interactive") puts "\nOK, paste what you've got for us and hit <Return>!\n".blue input = $stdin.gets.strip $stdin.getc while $stdin.ready? # Extract absolute paths from XRAY comments. if input.match(/<!--XRAY START \d+ (.*)-->/) input = $1 end ARGV.unshift input.strip end if ARGV.first.present? BulletTrain::Resolver.new(ARGV.first).run(eject: ARGV.include?("--eject"), open: ARGV.include?("--open"), force: ARGV.include?("--force"), interactive: ARGV.include?("--interactive")) else $stderr.puts "\nš Usage: `bin/resolve [path, partial, or URL] (--eject) (--open)`\n".blue end end end
Version data entries
12 entries across 12 versions & 1 rubygems