Sha256: 2cb9a382568f5db47a7d49121fd1b8960a96fbd2d33498a93be6c755dc56b1ff
Contents?: true
Size: 559 Bytes
Versions: 1
Compression:
Stored size: 559 Bytes
Contents
require 'rubygems' require 'rake' require 'rake/clean' require 'fileutils' require 'echoe' version = YAML.load_file(File.join(File.dirname(__FILE__), 'VERSION.yml')).join('.') rescue nil echoe = Echoe.new('random_text', version) do |p| p.author = 'toy' p.summary = 'A library to generate random strings.' p.runtime_dependencies = ['activesupport'] end desc "Replace system gem with symlink to this folder" task :ghost do path = Gem.searcher.find(echoe.name).full_gem_path system 'sudo', 'rm', '-r', path symlink File.expand_path('.'), path end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
random_text-0.0.6.5 | Rakefile |