flex-admin 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +8 -12
- data/VERSION +1 -1
- data/flex-admin.gemspec +1 -1
- metadata +8 -7
data/README.md
CHANGED
@@ -1,18 +1,14 @@
|
|
1
|
-
#
|
1
|
+
# flex-admin
|
2
2
|
|
3
|
-
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/flex-admin.png)](http://badge.fury.io/rb/flex-admin)
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
* [Flex Repository](https://github.com/ddnexus/flex)
|
8
|
-
* [Flex Project (Global Documentation)](http://ddnexus.github.io/flex/doc/)
|
9
|
-
* [flex-admin Gem (Specific Documentation)](http://ddnexus.github.io/flex/doc/6-flex-admin)
|
10
|
-
* [Issues](https://github.com/ddnexus/flex-admin/issues)
|
11
|
-
* [Pull Requests](https://github.com/ddnexus/flex-admin/pulls)
|
5
|
+
Provides an executable and a few tasks to `dump`, `load` (optionally rename) and `stat` any elasticsearch index.
|
6
|
+
Implements the live-reindex feature, with hot-swap of old code/index with new code/index.
|
12
7
|
|
13
|
-
##
|
8
|
+
## Links
|
14
9
|
|
15
|
-
|
10
|
+
- __Gem-Specific Documentation__
|
11
|
+
- [flex-admin](http://ddnexus.github.io/flex/doc/6-flex-admin)
|
16
12
|
|
17
13
|
## Credits
|
18
14
|
|
@@ -21,4 +17,4 @@ Special thanks for their sponsorship to [Escalate Media](http://www.escalatemedi
|
|
21
17
|
## Copyright
|
22
18
|
|
23
19
|
Copyright (c) 2012-2013 by [Domizio Demichelis](mailto://dd.nexus@gmail.com)<br>
|
24
|
-
See [LICENSE](https://github.com/ddnexus/flex
|
20
|
+
See [LICENSE](https://github.com/ddnexus/flex/blob/master/flex-admin/LICENSE) for details.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.3
|
data/flex-admin.gemspec
CHANGED
@@ -9,12 +9,12 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.authors = ["Domizio Demichelis"]
|
10
10
|
s.email = 'dd.nexus@gmail.com'
|
11
11
|
s.executables = %w[flex-admin]
|
12
|
-
s.extra_rdoc_files = %w[README.md]
|
13
12
|
s.files = `git ls-files -z`.split("\0")
|
14
13
|
s.version = version
|
15
14
|
s.date = Date.today.to_s
|
16
15
|
s.required_rubygems_version = ">= 1.3.6"
|
17
16
|
s.rdoc_options = %w[--charset=UTF-8]
|
17
|
+
s.license = 'MIT'
|
18
18
|
|
19
19
|
s.add_runtime_dependency 'flex', version
|
20
20
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flex-admin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-08-
|
12
|
+
date: 2013-08-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: flex
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 1.0.
|
21
|
+
version: 1.0.3
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -26,15 +26,14 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - '='
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 1.0.
|
29
|
+
version: 1.0.3
|
30
30
|
description: Provides binary and rake tasks to dump, load and optionally rename indices.
|
31
31
|
Implements live-reindex with hot-swap of old code/index with new code/index.
|
32
32
|
email: dd.nexus@gmail.com
|
33
33
|
executables:
|
34
34
|
- flex-admin
|
35
35
|
extensions: []
|
36
|
-
extra_rdoc_files:
|
37
|
-
- README.md
|
36
|
+
extra_rdoc_files: []
|
38
37
|
files:
|
39
38
|
- LICENSE
|
40
39
|
- README.md
|
@@ -46,7 +45,8 @@ files:
|
|
46
45
|
- lib/flex/live_reindex.rb
|
47
46
|
- lib/tasks.rake
|
48
47
|
homepage: http://github.com/ddnexus/flex-admin
|
49
|
-
licenses:
|
48
|
+
licenses:
|
49
|
+
- MIT
|
50
50
|
post_install_message:
|
51
51
|
rdoc_options:
|
52
52
|
- --charset=UTF-8
|
@@ -71,3 +71,4 @@ signing_key:
|
|
71
71
|
specification_version: 3
|
72
72
|
summary: Dump/load/rename/live-redindex one or more elasticsearch indices and types.
|
73
73
|
test_files: []
|
74
|
+
has_rdoc:
|