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 +2 -2
- data/app/assets/javascripts/kinetic.js +710 -407
- data/app/assets/javascripts/socialcheesecake/_header.js +1 -1
- data/app/assets/javascripts/socialcheesecake/actor.js +30 -6
- data/app/assets/javascripts/socialcheesecake/cheesecake.js +388 -64
- data/app/assets/javascripts/socialcheesecake/grid.js +63 -34
- data/app/assets/javascripts/socialcheesecake/search.js +26 -0
- data/app/assets/javascripts/socialcheesecake/sector.js +326 -62
- data/app/assets/javascripts/socialcheesecake/text.js +25 -2
- data/lib/social_cheesecake/version.rb +1 -1
- data/test/dummy/public/index.html +18 -19
- metadata +5 -4
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["
|
|
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
|
|
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)
|