flex 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/flex.gemspec CHANGED
@@ -4,7 +4,7 @@ Gem::Specification.new do |s|
4
4
  s.name = 'flex'
5
5
  s.summary = 'Ruby Client for ElasticSearch'
6
6
  s.description = <<-desc
7
- Flex is a complete ruby client for ElasticSearch. It introduces a new way to send any kind of request (not just search queries) to the ES server, and to manage any kind of response. You can transparently integrate it with ActiveRecord and MongoId models with or without automatic synchronization, with or without Rails. It is fast and efficient, easy to use and customize.
7
+ Flex is an innovative ruby client for ElasticSearch. With Flex your code will be clean, easy to write and read, and very short: "poetic-short". Flex is fast and efficient, easy to use and customize, and offers ActiveRecord, MongoId and Rails integration.
8
8
  desc
9
9
  s.homepage = 'http://github.com/ddnexus/flex'
10
10
  s.authors = ["Domizio Demichelis"]
@@ -55,7 +55,7 @@ module Flex
55
55
  lines = args[:collection].map do |d|
56
56
  # skips indexing for objects that return nil as the indexed_json or are not flex_indexable?
57
57
  unless action == 'delete'
58
- next if d.respond_to?(:flex_indexable?) && !d.flex_flex_indexable?
58
+ next if d.respond_to?(:flex_indexable?) && !d.flex_indexable?
59
59
  json = get_json(d) || next
60
60
  end
61
61
  m = {}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
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: 2012-07-23 00:00:00.000000000 Z
12
+ date: 2012-07-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: multi_json
@@ -107,11 +107,10 @@ dependencies:
107
107
  - - ~>
108
108
  - !ruby/object:Gem::Version
109
109
  version: 1.6.7
110
- description: ! 'Flex is a complete ruby client for ElasticSearch. It introduces a
111
- new way to send any kind of request (not just search queries) to the ES server,
112
- and to manage any kind of response. You can transparently integrate it with ActiveRecord
113
- and MongoId models with or without automatic synchronization, with or without Rails.
114
- It is fast and efficient, easy to use and customize.
110
+ description: ! 'Flex is an innovative ruby client for ElasticSearch. With Flex your
111
+ code will be clean, easy to write and read, and very short: "poetic-short". Flex
112
+ is fast and efficient, easy to use and customize, and offers ActiveRecord, MongoId
113
+ and Rails integration.
115
114
 
116
115
  '
117
116
  email: dd.nexus@gmail.com