Skip to content

Commit

Permalink
Kill more useless stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
andreyvit committed Nov 25, 2013
1 parent d46d65c commit d07eb1e
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion Rakefile
Expand Up @@ -195,7 +195,7 @@ class PluginTask

File.open(@versions_json, 'w') { |f| f.puts JSON.pretty_generate(dep_versions) }

sh "find . -name example -or -name examples -or -name test -or -name tests -or -name spec -or -name docs | xargs rm -rf"
sh "find . -name example -or -name examples -or -name test -or -name tests -or -name spec -or -name docs -or -name tmp -or -name .idea -or -name dist | xargs rm -rf"

puts "Committing #{@name}..."
Dir.chdir @plugin_dir do
Expand All @@ -208,6 +208,16 @@ class PluginTask
end


class NewPluginTask

include Rake::DSL

def initialize name, options={}
end

end


desc "Bundle the latest stable versions of all compilers"
task 'all'

Expand All @@ -234,6 +244,8 @@ PluginTask.new 'HAML', :gems => %w(haml tilt)
PluginTask.new 'SLIM', :gems => %w(slim temple tilt)
PluginTask.new 'SASS', :gems => %w(sass compass chunky_png html5-boilerplate compass-h5bp compass-960-plugin susy zurb-foundation compass-colors fancy-buttons compass-slickmap grid-coordinates compass-rgbapng compass-baseline compass-vgrid-plugin compass-less-plugin sassy-buttons compass-thesquaregrid compass-fancybox-plugin font-stack compass-squaregrid-plugin compass_formalize compass-lucid-grid stitch), :important => %w(sass compass)

NewPluginTask.new 'SASS'

task :default do
puts ENV['INSTALL']
puts find_gem('compass', :prerelease => true )
Expand Down

0 comments on commit d07eb1e

Please sign in to comment.