xapian-core 1.2.19.1 → 1.2.20.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of xapian-core might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 06aee73e59cfc457cce52f664eae0e552c01dbc8
4
- data.tar.gz: 05a5d329321bd87db2e16fac27ad7d4919f9655a
3
+ metadata.gz: 0abd0b09087d8fbf861bfc466b834b8e3805f028
4
+ data.tar.gz: 986bc83a688ce6330d6f74848b8e546109a8d24a
5
5
  SHA512:
6
- metadata.gz: 1436961ebd12485f715f4006f9de46b76a0bbdc8a78190864fa6e9f187219078d07eabba533c6b234ee4552c7de780b364ebfc83593924a16d096d9538c8ded3
7
- data.tar.gz: 313ae704a20c34200ddb5cda8c6710d2657debeb299639324ff25c0065a89d89c17e0b02a0fbaa75d1ffa56f487f7665657a9a0cdeeb5030be0ccbbe4eaf90a2
6
+ metadata.gz: 0fddeb47d8b36c4d47ca3c54d4616c1314114a6edd7cda97a5d770b3ae69303771a00ace94c5c26d7a3bea74073b9f77241ad47b5e202fc98face630db6bee2c
7
+ data.tar.gz: dc712389398736da74d6b9f58903f5865eb0696ebbb1c4fb73877f2841bb7a5e7145e9e503bbc5eae3657808099a3eaedd130fdb1cb5248529bbffb0b22aa0bc
data/README.md CHANGED
@@ -6,15 +6,15 @@ Provides Xapian and it's Ruby bindings.
6
6
 
7
7
  Add this line to your application's Gemfile:
8
8
 
9
- gem 'xapian-core'
9
+ gem 'xapian-core'
10
10
 
11
11
  And then execute:
12
12
 
13
- $ bundle
13
+ $ bundle
14
14
 
15
15
  Or install it yourself as:
16
16
 
17
- $ gem install xapian-core
17
+ $ gem install xapian-core
18
18
 
19
19
  ## Usage
20
20
 
@@ -28,3 +28,26 @@ Browse the [Xapian](http://xapian.org/docs/overview.html) documentation online.
28
28
  4. Push to the branch (`git push origin my-new-feature`)
29
29
  5. Create new Pull Request
30
30
 
31
+ ## License
32
+
33
+ This code is dual licensed under the MIT license and GPLv3 license.
34
+
35
+ Copyright, 2015, by [Samuel G. D. Williams](http://www.codeotaku.com/samuel-williams).
36
+
37
+ Permission is hereby granted, free of charge, to any person obtaining a copy
38
+ of this software and associated documentation files (the "Software"), to deal
39
+ in the Software without restriction, including without limitation the rights
40
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
41
+ copies of the Software, and to permit persons to whom the Software is
42
+ furnished to do so, subject to the following conditions:
43
+
44
+ The above copyright notice and this permission notice shall be included in
45
+ all copies or substantial portions of the Software.
46
+
47
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
48
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
49
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
50
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
51
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
52
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
53
+ THE SOFTWARE.
@@ -1,19 +1,19 @@
1
1
  require 'rbconfig'
2
- c = Config::CONFIG
2
+ c = RbConfig::CONFIG
3
3
 
4
4
  def system!(cmd)
5
5
  puts cmd
6
6
  system(cmd) or raise
7
7
  end
8
8
 
9
- ver = '1.2.19'
9
+ ver = '1.2.20'
10
10
  core = "xapian-core-#{ver}"
11
11
  bindings = "xapian-bindings-#{ver}"
12
12
  xapian_config = "#{Dir.pwd}/#{core}/xapian-config"
13
13
 
14
14
  task :default do
15
15
  [core,bindings].each do |x|
16
- system! "tar -xzvf #{x}.tar.xz"
16
+ system! "tar -xvf #{x}.tar.xz"
17
17
  end
18
18
 
19
19
  prefix = File.dirname(Dir.pwd)
@@ -1,5 +1,5 @@
1
1
  module Xapian
2
2
  module Core
3
- VERSION = "1.2.19.1"
3
+ VERSION = "1.2.20.2"
4
4
  end
5
5
  end
@@ -19,6 +19,8 @@ Gem::Specification.new do |spec|
19
19
 
20
20
  spec.extensions << "ext/Rakefile"
21
21
 
22
+ spec.required_ruby_version = '>= 2.0'
23
+
22
24
  spec.add_development_dependency "bundler", "~> 1.6"
23
25
  spec.add_development_dependency "rake"
24
26
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xapian-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.19.1
4
+ version: 1.2.20.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-07 00:00:00.000000000 Z
11
+ date: 2015-04-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -51,8 +51,8 @@ files:
51
51
  - README.md
52
52
  - Rakefile
53
53
  - ext/Rakefile
54
- - ext/xapian-bindings-1.2.19.tar.xz
55
- - ext/xapian-core-1.2.19.tar.xz
54
+ - ext/xapian-bindings-1.2.20.tar.xz
55
+ - ext/xapian-core-1.2.20.tar.xz
56
56
  - lib/xapian/core/version.rb
57
57
  - test/simpleindex.rb
58
58
  - test/simplesearch.rb
@@ -69,7 +69,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
69
69
  requirements:
70
70
  - - ">="
71
71
  - !ruby/object:Gem::Version
72
- version: '0'
72
+ version: '2.0'
73
73
  required_rubygems_version: !ruby/object:Gem::Requirement
74
74
  requirements:
75
75
  - - ">="
@@ -77,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
77
  version: '0'
78
78
  requirements: []
79
79
  rubyforge_project:
80
- rubygems_version: 2.2.2
80
+ rubygems_version: 2.4.6
81
81
  signing_key:
82
82
  specification_version: 4
83
83
  summary: Provides Xapian libraries and Ruby bindings.