Sha256: 64a3e4902206b211d9f2da7c746a64fa316ebb8f9ced5776cb4c1be0a463b496

Contents?: true

Size: 355 Bytes

Versions: 3

Compression:

Stored size: 355 Bytes

Contents

require 'fileutils'

task :default do
  destination = File.join(File.expand_path("~/Library/RubyMotion/template"), "osx-status-bar-app")
  source = File.join(File.expand_path(File.dirname(__FILE__)), "template", "osx-status-bar-app")
  
  FileUtils.mkdir_p(File.dirname(destination))
  FileUtils.rm_rf destination

  FileUtils.ln_s source, destination
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
osx-status-bar-app-template-0.0.3 Rakefile
osx-status-bar-app-template-0.0.2 Rakefile
osx-status-bar-app-template-0.0.1 Rakefile