social_cheesecake 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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)