social_cheesecake 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -63,11 +63,11 @@ namespace :cheesecake do
63
63
 
64
64
  def compile_js(files)
65
65
  unless File.exist?(compiler_jar_path)
66
- Rake::Task["javascript:download_jar"].invoke
66
+ Rake::Task["cheesecake:download_jar"].invoke
67
67
  end
68
68
  unless File.exist?(compiler_jar_path)
69
69
  puts "#{compiler_jar_path} not found !"
70
- raise "try to run `rake javascript:download_jar` manually to download the compiler jar"
70
+ raise "try to run `rake cheesecake:download_jar` manually to download the compiler jar"
71
71
  end
72
72
 
73
73
  files = [ files ] unless files.is_a?(Array)