picky 4.20.2 → 4.21.0
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.
- checksums.yaml +4 -4
- data/bin/picky +1 -1
- data/spec/{aux → tools}/picky/cli_spec.rb +1 -1
- data/{aux → tools}/picky/cli.rb +1 -1
- metadata +11 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 07e373957d9f7d673d29aa262102788d6947cee8
|
|
4
|
+
data.tar.gz: 85ef2b296887de1cdceaff60c488e07260eb8358
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a215df05ec60deedab57995a1ab45d241229ef1d9de5758410dc16992bc3ba51f3bd892899947d39730cdf9c189c3a9f3fe7e93b18054470a3e4273f3ac8ec62
|
|
7
|
+
data.tar.gz: 5b92b5355a5aa033e0e78079b5a5f3cf4c55d14bf6f9eb0806b74cd014a0ad4b35f7168f50f66b27dfb46c438fd2006bcb42fa05f7c7435802099fdd932c92eb
|
data/bin/picky
CHANGED
|
@@ -5,7 +5,7 @@ begin
|
|
|
5
5
|
require 'picky/cli'
|
|
6
6
|
rescue LoadError => e
|
|
7
7
|
require 'rubygems'
|
|
8
|
-
picky_path = File.expand_path '../../
|
|
8
|
+
picky_path = File.expand_path '../../tools', __FILE__
|
|
9
9
|
$:.unshift(picky_path) if File.directory?(picky_path) && !$:.include?(picky_path)
|
|
10
10
|
require 'picky/cli'
|
|
11
11
|
end
|
|
@@ -4,7 +4,7 @@ require 'spec_helper'
|
|
|
4
4
|
|
|
5
5
|
# We need to load the CLI file explicitly as the CLI is not loaded with the Loader (not needed in the server, only for script runs).
|
|
6
6
|
#
|
|
7
|
-
require_relative '../../../
|
|
7
|
+
require_relative '../../../auxiliary/picky/cli'
|
|
8
8
|
|
|
9
9
|
describe Picky::CLI do
|
|
10
10
|
|
data/{aux → tools}/picky/cli.rb
RENAMED
metadata
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: picky
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.21.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Florian Hanke
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-05-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - "
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: multi_json
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -74,7 +74,6 @@ extensions:
|
|
|
74
74
|
- ext/picky/extconf.rb
|
|
75
75
|
extra_rdoc_files: []
|
|
76
76
|
files:
|
|
77
|
-
- aux/picky/cli.rb
|
|
78
77
|
- bin/picky
|
|
79
78
|
- ext/picky/extconf.rb
|
|
80
79
|
- ext/picky/picky.c
|
|
@@ -225,7 +224,6 @@ files:
|
|
|
225
224
|
- lib/tasks/try.rake
|
|
226
225
|
- lib/tasks/try.rb
|
|
227
226
|
- lib/try_compile.rb
|
|
228
|
-
- spec/aux/picky/cli_spec.rb
|
|
229
227
|
- spec/functional/allocations_uniq_by_definition_spec.rb
|
|
230
228
|
- spec/functional/arrays_as_ids_spec.rb
|
|
231
229
|
- spec/functional/automatic_segmentation_spec.rb
|
|
@@ -376,6 +374,8 @@ files:
|
|
|
376
374
|
- spec/lib/tasks/try_spec.rb
|
|
377
375
|
- spec/lib/tokenizer_spec.rb
|
|
378
376
|
- spec/performant_spec.rb
|
|
377
|
+
- spec/tools/picky/cli_spec.rb
|
|
378
|
+
- tools/picky/cli.rb
|
|
379
379
|
homepage: http://florianhanke.com/picky
|
|
380
380
|
licenses:
|
|
381
381
|
- MIT
|
|
@@ -397,12 +397,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
397
397
|
version: '0'
|
|
398
398
|
requirements: []
|
|
399
399
|
rubyforge_project: http://rubyforge.org/projects/picky
|
|
400
|
-
rubygems_version: 2.2.
|
|
400
|
+
rubygems_version: 2.2.0
|
|
401
401
|
signing_key:
|
|
402
402
|
specification_version: 4
|
|
403
403
|
summary: 'Picky: Semantic Search Engine. Clever Interface. Good Tools.'
|
|
404
404
|
test_files:
|
|
405
|
-
- spec/aux/picky/cli_spec.rb
|
|
406
405
|
- spec/functional/allocations_uniq_by_definition_spec.rb
|
|
407
406
|
- spec/functional/arrays_as_ids_spec.rb
|
|
408
407
|
- spec/functional/automatic_segmentation_spec.rb
|
|
@@ -553,3 +552,5 @@ test_files:
|
|
|
553
552
|
- spec/lib/tasks/try_spec.rb
|
|
554
553
|
- spec/lib/tokenizer_spec.rb
|
|
555
554
|
- spec/performant_spec.rb
|
|
555
|
+
- spec/tools/picky/cli_spec.rb
|
|
556
|
+
has_rdoc:
|