es-reindex 0.3.0 → 0.3.1

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: 142c4bceb879849117f58dea9019a4ad38bebc58
4
- data.tar.gz: 4676e75a520fe3eb18660000b72b1d4b639ffca2
3
+ metadata.gz: dd1bacbfe466185d042ad4c4e0a376465247effd
4
+ data.tar.gz: 8c57e5ffc56aced527ae24fdeed9f503055cc1fb
5
5
  SHA512:
6
- metadata.gz: 896bbe493132b19ed83182fbd83464ec3dae02779ada820b08cac30b7801433ab0213cd6e7f71a56d1a5357d3f2df80bfff90f4c83055ef5883271535f938745
7
- data.tar.gz: d220120b5a19c873eb0dfc7630a469ce37bc705e2510a8825588fae161a442e33c2ed3462bd3ec54a594930c4df87ea6fff827e933b6e59971b0b81cd5978f68
6
+ metadata.gz: 8c72172b076d24e2bcd034f78099085168aa3f47cd3607b643f43b9a2bd8346d7ed82920e20bf25bfe9cd07e1579f4da9a0390fc8722fcab0b8ce32c0800882f
7
+ data.tar.gz: 12735b79ed00178836f866ea5c55e6601e6a9a0fecb79fab481bfdce31acbc58d5915a1b07011c064476bee23e225ca88b20b6f274e493ab1f5c8cd127ade92d
@@ -0,0 +1,16 @@
1
+ ## Changelog
2
+
3
+ + __0.3.1__: Add activesupport dependency since es-reindex uses methods from it.
4
+ + __0.3.0__: Add `:if` and `:unless` callbacks
5
+ + __0.2.1__: [BUGFIX] Improve callback presence check
6
+ + __0.2.0__: Lots of bugfixes, use elasticsearch client gem, add .reindex! method and callbacks
7
+ + __0.1.0__: First gem release
8
+ + __0.0.9__: Gemification, Oj -> MultiJSON
9
+ + __0.0.8__: Optimization in string concat (@nara)
10
+ + __0.0.7__: Document header arguments `_timestamp` and `_ttl` are copied as well
11
+ + __0.0.6__: Document headers in bulks are now assembled and properly JSON dumped
12
+ + __0.0.5__: Merge fix for trailing slash in urls (@ichinco), formatting cleanup
13
+ + __0.0.4__: Force create only, update is optional (@pgaertig)
14
+ + __0.0.3__: Yajl -> Oj
15
+ + __0.0.2__: repated document count comparison
16
+ + __0.0.1__: first revision
data/README.markdown CHANGED
@@ -91,19 +91,7 @@ For a more practical example, see the [reindex integration specs](spec/integrati
91
91
 
92
92
  ## Changelog
93
93
 
94
- + __0.3.0__: Add `:if` and `:unless` callbacks
95
- + __0.2.1__: [BUGFIX] Improve callback presence check
96
- + __0.2.0__: Lots of bugfixes, use elasticsearch client gem, add .reindex! method and callbacks
97
- + __0.1.0__: First gem release
98
- + __0.0.9__: Gemification, Oj -> MultiJSON
99
- + __0.0.8__: Optimization in string concat (@nara)
100
- + __0.0.7__: Document header arguments `_timestamp` and `_ttl` are copied as well
101
- + __0.0.6__: Document headers in bulks are now assembled and properly JSON dumped
102
- + __0.0.5__: Merge fix for trailing slash in urls (@ichinco), formatting cleanup
103
- + __0.0.4__: Force create only, update is optional (@pgaertig)
104
- + __0.0.3__: Yajl -> Oj
105
- + __0.0.2__: repated document count comparison
106
- + __0.0.1__: first revision
94
+ The full changelog is available [here](CHANGELOG.markdown).
107
95
 
108
96
  ## Credits
109
97
 
data/es-reindex.gemspec CHANGED
@@ -23,6 +23,7 @@ Gem::Specification.new do |s|
23
23
  s.require_paths = ["lib"]
24
24
 
25
25
  s.add_runtime_dependency 'elasticsearch', '>= 1.0.0'
26
+ s.add_runtime_dependency 'activesupport', '>= 0'
26
27
 
27
28
  # Development Dependencies:
28
29
  s.add_development_dependency 'elasticsearch-persistence', '~> 0.1'
@@ -1,3 +1,3 @@
1
1
  class ESReindex
2
- VERSION = '0.3.0'
2
+ VERSION = '0.3.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: es-reindex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Aiken
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-02-05 00:00:00.000000000 Z
12
+ date: 2015-02-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: elasticsearch
@@ -25,6 +25,20 @@ dependencies:
25
25
  - - ">="
26
26
  - !ruby/object:Gem::Version
27
27
  version: 1.0.0
28
+ - !ruby/object:Gem::Dependency
29
+ name: activesupport
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
28
42
  - !ruby/object:Gem::Dependency
29
43
  name: elasticsearch-persistence
30
44
  requirement: !ruby/object:Gem::Requirement
@@ -121,6 +135,7 @@ files:
121
135
  - ".gitignore"
122
136
  - ".rspec"
123
137
  - ".travis.yml"
138
+ - CHANGELOG.markdown
124
139
  - Gemfile
125
140
  - Guardfile
126
141
  - LICENSE