ivy4r 0.9.4 → 0.9.5

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ === 0.9.5 / 2009-12-01
2
+
3
+ * Bugfix for manifest handling in packages. The custom set manifest informations are not lost,
4
+ ivy informations for manifest are merged into the configured manifest.
5
+
1
6
  === 0.9.4 / 2009-12-01
2
7
 
3
8
  * ivy.deps for buildr supports three argument types:
@@ -548,7 +548,7 @@ For more configuration options see IvyConfig.
548
548
  pkgs.each do |pkg|
549
549
  name = "#{pkg.name}manifest"
550
550
  task = project.task name => project.ivy.file_project.task('ivy:resolve') do
551
- pkg.with :manifest => project.manifest.merge(project.ivy.manifest)
551
+ pkg.with :manifest => pkg.manifest.merge(project.manifest.merge(project.ivy.manifest))
552
552
  info "Adding manifest entries to package '#{pkg.name}'"
553
553
  end
554
554
  project.task :build => task
data/lib/ivy4r.rb CHANGED
@@ -35,7 +35,7 @@ is
35
35
  }
36
36
  =end
37
37
  class Ivy4r
38
- VERSION = '0.9.4'
38
+ VERSION = '0.9.5'
39
39
 
40
40
  # Set the ant home directory to load ant classes from if no custom __antwrap__ is provided
41
41
  # and the default provided ant version 1.7.1 should not be used.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ivy4r
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.4
4
+ version: 0.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Klaas Prause