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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 48213f688488361aa4c09b943c2be94e956e19b1
4
- data.tar.gz: 1ec6a4dc8d8dced3c2c2a7b6a8ce9f7176acb592
3
+ metadata.gz: 07e373957d9f7d673d29aa262102788d6947cee8
4
+ data.tar.gz: 85ef2b296887de1cdceaff60c488e07260eb8358
5
5
  SHA512:
6
- metadata.gz: e3eb94fd9f3a4cbf3695f1611f6a54aae9193c934e8d63e7a072b81f1766d54224d164cc01d665f143f756dc309d09ee14146746b25d3e343b028e82a4dd5d8e
7
- data.tar.gz: 8407ce2fa8aa9a423e6387d2bdb13b98da910576e815bbd021c9d6853b11c837390977f4871d67304a2321ccc5f50bbc5dc7b106fc74eec4471dad0fec04098e
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 '../../aux', __FILE__
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 '../../../aux/picky/cli'
7
+ require_relative '../../../auxiliary/picky/cli'
8
8
 
9
9
  describe Picky::CLI do
10
10
 
@@ -74,7 +74,7 @@ module Picky
74
74
  usage(name, params) || exit(1) unless url_or_path
75
75
 
76
76
  require 'picky-client'
77
- require 'picky-client/aux/terminal'
77
+ require 'picky-client/tools/terminal'
78
78
  terminal = Terminal.new url_or_path, ids
79
79
  terminal.run
80
80
  rescue LoadError => e
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.20.2
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-04-18 00:00:00.000000000 Z
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: '3'
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: '3'
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.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: