euston-projections 1.0.3-java → 1.0.4-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.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'euston-projections'
3
- s.version = '1.0.3'
3
+ s.version = '1.0.4'
4
4
  s.platform = RUBY_PLATFORM.to_s == 'java' ? 'java' : Gem::Platform::RUBY
5
5
  s.authors = ['Lee Henson', 'Guy Boertje']
6
6
  s.email = ['lee.m.henson@gmail.com', 'guyboertje@gmail.com']
@@ -14,6 +14,7 @@ Gem::Specification.new do |s|
14
14
  Rakefile
15
15
  euston-projections.gemspec
16
16
  lib/euston-projections.rb
17
+ lib/euston-projections/hash.rb
17
18
  lib/euston-projections/historical_message.rb
18
19
  lib/euston-projections/idempotence.rb
19
20
  lib/euston-projections/mongo_projection.rb
@@ -0,0 +1,12 @@
1
+ module Euston
2
+ module Projections
3
+ module MongoHashExtensions
4
+ def rename_id_to_document_id
5
+ self[:_id] = delete(:id) if include?(:id)
6
+ self
7
+ end
8
+ end
9
+ end
10
+ end
11
+
12
+ Hash.send(:include, Euston::Projections::MongoHashExtensions) unless Hash.respond_to? :rename_id_to_document_id?
@@ -1,5 +1,5 @@
1
1
  module Euston
2
2
  module Projections
3
- VERSION = "1.0.3"
3
+ VERSION = "1.0.4"
4
4
  end
5
5
  end
@@ -1,6 +1,7 @@
1
1
  require 'mongoid'
2
2
 
3
3
  require 'euston-projections/idempotence'
4
+ require 'euston-projections/hash'
4
5
  require 'euston-projections/historical_message'
5
6
  require 'euston-projections/mongo_projection'
6
7
  require 'euston-projections/mongo_projection_event_handler'
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: euston-projections
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.0.3
5
+ version: 1.0.4
6
6
  platform: java
7
7
  authors:
8
8
  - Lee Henson
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2011-10-31 00:00:00.000000000Z
13
+ date: 2011-12-01 00:00:00.000000000Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport
@@ -90,6 +90,7 @@ files:
90
90
  - Rakefile
91
91
  - euston-projections.gemspec
92
92
  - lib/euston-projections.rb
93
+ - lib/euston-projections/hash.rb
93
94
  - lib/euston-projections/historical_message.rb
94
95
  - lib/euston-projections/idempotence.rb
95
96
  - lib/euston-projections/mongo_projection.rb