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 CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: c0b27e7056c085d06d70c2db107cd0239823a4f0
4
- data.tar.gz: 5bc325c8320ff437df42b11b6a57fa345d6b1773
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ YzdlZjBiNTQ3ZTAzYTZkMmVjNzU1YWY1NTg5MDkxNmIzYmNlYjM5NQ==
5
+ data.tar.gz: !binary |-
6
+ ZTA3YzZkZjQxZjE5ODgzY2E1MWY5MGIyM2I3OWVmMWFhYzZiY2U1OA==
5
7
  SHA512:
6
- metadata.gz: 5e33c21a0e47cbfb77f00c5b783aaf109496798c30111399d064c8d3b2f06826dad478728c15a2561ec24033caae4399602a26ffa0e8480e0e477c0ea205f625
7
- data.tar.gz: 44e61dfd1fe738cb39f88577f4c9edf402b714a1f125ed8549899fbd98b7df72b375acf9a36d9d843daac50ba16a981d950f602689f6305fc71f0be446ae1565
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
- # Uses Travis' jruby standard, bundle installs and runs rspec tests
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
- - jruby-1.7.11
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
@@ -12,6 +12,7 @@ group :development do
12
12
  gem 'autotest-growl'
13
13
  gem 'awesome_print', '0.4.0'
14
14
  gem 'coveralls', require: false
15
+ gem 'travis'
15
16
  end
16
17
 
17
18
 
@@ -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.8"
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
@@ -54,13 +54,6 @@ module Pacer
54
54
  end
55
55
 
56
56
  require 'pacer/version'
57
-
58
- if RUBY_VERSION =~ /^1.9/
59
- Enumerator = ::Enumerator
60
- else
61
- Enumerator = Enumerable::Enumerator
62
- end
63
-
64
57
  require 'pacer/loader'
65
58
 
66
59
  class << self
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.8
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-05 00:00:00.000000000 Z
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
- version_requirements: !ruby/object:Gem::Requirement
15
+ requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
19
  version: 0.10.2
20
- requirement: !ruby/object:Gem::Requirement
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
- version_requirements: !ruby/object:Gem::Requirement
29
+ requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ! '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
- requirement: !ruby/object:Gem::Requirement
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
- prerelease: false
40
- type: :development
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.1.9
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: