ivy4r 0.12.4 → 0.12.5

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.
@@ -1,3 +1,6 @@
1
+ === 0.12.5 / 2010-10-20
2
+ * Fixed typo preventing compile to work properly
3
+
1
4
  === 0.12.4 / 2010-10-19
2
5
  * Fixed next problem regarding removal of "facets/blank": must be able to handle Regexps and Strings so needed to check both for beeing blank
3
6
 
@@ -413,7 +413,7 @@ module Buildr
413
413
  if artifacts
414
414
  artifacts = artifacts.find_all do |lib|
415
415
  lib = File.basename(lib)
416
- includes = includes.reject {|i| i.nil? || (i.respond_to?(:empty) && i.empty?) || (i.respond_to?(:source) && i.source.empty?) }
416
+ includes = includes.reject {|i| i.nil? || (i.respond_to?(:empty?) && i.empty?) || (i.respond_to?(:source) && i.source.empty?) }
417
417
  should_include = includes.empty? || includes.any? {|include| include === lib }
418
418
  should_include && !excludes.any? {|exclude| exclude === lib}
419
419
  end
@@ -36,7 +36,7 @@ is
36
36
  =end
37
37
  class Ivy4r
38
38
 
39
- VERSION = '0.12.4'
39
+ VERSION = '0.12.5'
40
40
 
41
41
  # Set the ant home directory to load ant classes from if no custom __antwrap__ is provided
42
42
  # and the default provided ant version 1.7.1 should not be used.
@@ -280,7 +280,7 @@ module Rake
280
280
  if artifacts
281
281
  artifacts = artifacts.find_all do |lib|
282
282
  lib = File.basename(lib)
283
- includes = includes.reject {|i| i.nil? || || (i.respond_to?(:empty) && i.empty?) || (i.respond_to?(:source) && i.source.empty?) }
283
+ includes = includes.reject {|i| i.nil? || || (i.respond_to?(:empty?) && i.empty?) || (i.respond_to?(:source) && i.source.empty?) }
284
284
  should_include = includes.empty? || includes.any? {|include| include === lib }
285
285
  should_include && !excludes.any? {|exclude| exclude === lib}
286
286
  end
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.12.4
4
+ version: 0.12.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Klaas Reineke
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-10-19 00:00:00 +02:00
12
+ date: 2010-10-20 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency