xapian-full 1.1.3.3 → 1.1.3.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/Rakefile +6 -1
  2. data/xapian-full.gemspec +1 -1
  3. metadata +1 -1
data/Rakefile CHANGED
@@ -29,6 +29,11 @@ task :default do
29
29
  end
30
30
 
31
31
  system! "mkdir -p lib"
32
- system! "cp -a #{bindings}/ruby/.libs/_xapian.* lib"
32
+ if File.exists? "#{bindings}/ruby/.libs/_xapian.bundle"
33
+ system! "cp #{bindings}/ruby/.libs/_xapian.bundle lib"
34
+ system! "cp -r #{bindings}/ruby/.libs/_xapian.bundle.dSYM lib"
35
+ else
36
+ system! "cp #{bindings}/ruby/.libs/_xapian.so lib"
37
+ end
33
38
  system! "cp #{bindings}/ruby/xapian.rb lib"
34
39
  end
data/xapian-full.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{xapian-full}
5
- s.version = "1.1.3.3"
5
+ s.version = "1.1.3.4"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Tom Adams", "Rich Lane"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xapian-full
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3.3
4
+ version: 1.1.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Adams