Rakefile in my_help-0.5.2 vs Rakefile in my_help-0.6.0
- old
+ new
@@ -1,8 +1,8 @@
# -*- coding: utf-8 -*-
require "bundler/gem_tasks"
-require "rspec/core/rake_task"
+#require "rspec/core/rake_task"
require 'fileutils'
require 'open3'
p base_path = File.expand_path('..', __FILE__)
p basename = File.basename(base_path)
@@ -79,10 +79,10 @@
desc "clean up exe dir"
task :clean_exe do
files = Dir.entries('exe')
files.each{|file|
next if ["my_help",".","..",".DS_Store",
- "emacs_help","e_h","my_todo"].include?(file)
+ "emacs_help","e_h","my_todo","org_help"].include?(file)
FileUtils.rm(File.join('./exe',file), :verbose=>true)
}
end