pacer 2.0.8-java → 2.0.10-java
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 +13 -5
- data/.travis.yml +14 -4
- data/Gemfile +1 -0
- data/lib/pacer/core/graph/element_route.rb +5 -0
- data/lib/pacer/pipes.rb +1 -0
- data/lib/pacer/version.rb +1 -1
- data/lib/pacer.rb +0 -7
- metadata +21 -20
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
YzdlZjBiNTQ3ZTAzYTZkMmVjNzU1YWY1NTg5MDkxNmIzYmNlYjM5NQ==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
ZTA3YzZkZjQxZjE5ODgzY2E1MWY5MGIyM2I3OWVmMWFhYzZiY2U1OA==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
OWQxYTU4NGEyY2FkNWM3NzQzY2M2ZmE1ZmUzMGZmMTQxOWVmN2U3N2ZlMTIz
|
10
|
+
M2M2ZWIwNTExMDUyZmZlYzlmYmE1MDAwMDllMjZmNTFmNjhkMjY2YjcwM2Nj
|
11
|
+
ODU0NmI1MzQ3NDliMTNjMThhODFhODQ2YmNhY2ZmOGQ1NDgwMjA=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
YWMyMTM5MzIzZjRhNmUzZjViYTM3YzgwYmVmYzAyOTkzOTgxNjdmZmNlMjFm
|
14
|
+
ZDZhN2E5ZDUyYzYxNzgxMDJmODVmMTRlYzgyNjJhNzQ5MDVkOWE0ODg3Zjcx
|
15
|
+
NWNkMmViNmM1NDJlYTA1MjhiMWIyYzNjM2E1NDQzNjRkOTNhYzk=
|
data/.travis.yml
CHANGED
@@ -1,7 +1,17 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
before_install:
|
2
|
+
- rvm uninstall jruby
|
3
|
+
- rvm use jruby-1.7.18 --install
|
4
4
|
language: ruby
|
5
|
+
jdk:
|
6
|
+
- oraclejdk7
|
5
7
|
rvm:
|
6
|
-
|
8
|
+
- jruby-1.7.18
|
7
9
|
script: bundle exec rspec && (bundle exec rake release || echo "Not released")
|
10
|
+
deploy:
|
11
|
+
provider: rubygems
|
12
|
+
api_key:
|
13
|
+
secure: I9uNSIU6Ob+UlxXzSdUnzg9YVT8tsZULQwYDd0ENLrTE1CdCDiShw7oXP3AYAr/SOQg8yrURkNIW0QV5h4nKoZb+rGpZBMyY9wTtFpek4daYNRJKxUsrFX/Jv84zjqEO/AFEwTtlVKhpUOcCOp26bdCVaBaFgJMZPcObmm7z2bc=
|
14
|
+
gem: pacer
|
15
|
+
on:
|
16
|
+
branch: master
|
17
|
+
repo: pangloss/pacer
|
data/Gemfile
CHANGED
@@ -33,6 +33,11 @@ module Pacer::Core::Graph
|
|
33
33
|
map(element_type: :hash) { |v| v.properties }
|
34
34
|
end
|
35
35
|
|
36
|
+
def raw_property_maps
|
37
|
+
chain_route(:element_type => :object,
|
38
|
+
:pipe_class => Pacer::Pipes::PropertyMapPipe)
|
39
|
+
end
|
40
|
+
|
36
41
|
# Create a new TinkerGraph based on the paths of all matching elements.
|
37
42
|
#
|
38
43
|
# @return [TinkerGraph] the subgraph
|
data/lib/pacer/pipes.rb
CHANGED
@@ -13,6 +13,7 @@ module Pacer
|
|
13
13
|
|
14
14
|
import com.tinkerpop.pipes.transform.IdPipe
|
15
15
|
import com.tinkerpop.pipes.transform.PropertyPipe
|
16
|
+
import com.tinkerpop.pipes.transform.PropertyMapPipe
|
16
17
|
|
17
18
|
IN = com.tinkerpop.blueprints.Direction::IN
|
18
19
|
OUT = com.tinkerpop.blueprints.Direction::OUT
|
data/lib/pacer/version.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
module Pacer
|
2
|
-
VERSION = "2.0.
|
2
|
+
VERSION = "2.0.10"
|
3
3
|
# Clients may optionally define the following constants in the Pacer namespace:
|
4
4
|
# - LOAD_JARS : set to false to manage jar loading in the client. Be sure to load the jars defined in JARFILES.
|
5
5
|
# - LOCKJAR_LOCK_OPTS : set some options to be passed to LockJar.lock (ie. :lockfile, :download_artifacts, :local_repo)
|
data/lib/pacer.rb
CHANGED
metadata
CHANGED
@@ -1,44 +1,45 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pacer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.10
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Darrick Wiebe
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-12-
|
11
|
+
date: 2014-12-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: lock_jar
|
15
|
-
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 0.10.2
|
20
|
-
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
21
23
|
requirements:
|
22
24
|
- - ~>
|
23
25
|
- !ruby/object:Gem::Version
|
24
26
|
version: 0.10.2
|
25
|
-
prerelease: false
|
26
|
-
type: :runtime
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: xn_gem_release_tasks
|
29
|
-
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - '>='
|
31
|
+
- - ! '>='
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
|
-
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
35
37
|
requirements:
|
36
|
-
- - '>='
|
38
|
+
- - ! '>='
|
37
39
|
- !ruby/object:Gem::Version
|
38
40
|
version: '0'
|
39
|
-
|
40
|
-
|
41
|
-
description: Pacer defines composeable routes through a graph and then traverses them very quickly.
|
41
|
+
description: Pacer defines composeable routes through a graph and then traverses them
|
42
|
+
very quickly.
|
42
43
|
email: dw@xnlogic.com
|
43
44
|
executables: []
|
44
45
|
extensions: []
|
@@ -255,24 +256,24 @@ homepage: http://github.com/pangloss/pacer
|
|
255
256
|
licenses:
|
256
257
|
- MIT
|
257
258
|
metadata: {}
|
258
|
-
post_install_message:
|
259
|
+
post_install_message:
|
259
260
|
rdoc_options: []
|
260
261
|
require_paths:
|
261
262
|
- lib
|
262
263
|
required_ruby_version: !ruby/object:Gem::Requirement
|
263
264
|
requirements:
|
264
|
-
- - '>='
|
265
|
+
- - ! '>='
|
265
266
|
- !ruby/object:Gem::Version
|
266
267
|
version: '0'
|
267
268
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
268
269
|
requirements:
|
269
|
-
- - '>='
|
270
|
+
- - ! '>='
|
270
271
|
- !ruby/object:Gem::Version
|
271
272
|
version: '0'
|
272
273
|
requirements: []
|
273
|
-
rubyforge_project:
|
274
|
-
rubygems_version: 2.
|
275
|
-
signing_key:
|
274
|
+
rubyforge_project:
|
275
|
+
rubygems_version: 2.4.5
|
276
|
+
signing_key:
|
276
277
|
specification_version: 4
|
277
278
|
summary: A very efficient and easy to use graph traversal engine.
|
278
279
|
test_files:
|