ivy4r 0.10.2 → 0.10.3
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/History.txt +3 -0
- data/lib/buildr/ivy_extension.rb +3 -3
- data/lib/ivy4r.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
data/lib/buildr/ivy_extension.rb
CHANGED
|
@@ -670,13 +670,13 @@ module IvyExtension
|
|
|
670
670
|
task :clean
|
|
671
671
|
|
|
672
672
|
desc 'Clean the local Ivy result cache to force execution of ivy targets'
|
|
673
|
-
task :
|
|
673
|
+
task :clean_result_cache
|
|
674
674
|
|
|
675
675
|
desc 'Enable the local Ivy result cache by creating the marker file'
|
|
676
|
-
task :
|
|
676
|
+
task :enable_result_cache
|
|
677
677
|
|
|
678
678
|
desc 'Disable the local Ivy result cache by removing the marker file'
|
|
679
|
-
task :
|
|
679
|
+
task :disable_result_cache
|
|
680
680
|
end
|
|
681
681
|
end
|
|
682
682
|
|
data/lib/ivy4r.rb
CHANGED