tire 0.1.10 → 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/tire/version.rb +11 -1
  2. data/tire.gemspec +15 -0
  3. metadata +23 -5
data/lib/tire/version.rb CHANGED
@@ -1,3 +1,13 @@
1
1
  module Tire
2
- VERSION = "0.1.10"
2
+ VERSION = "0.1.11"
3
+
4
+ CHANGELOG =<<-END
5
+ CHANGES FROM 0.1.8:
6
+
7
+ # Added `<after/before>_update_elastic_search_index` callbacks for models
8
+ # Search performs GET instead of POST
9
+ # Added percolator support
10
+ # Added percolator support for models
11
+ # CHANGELOG support in gemspec
12
+ END
3
13
  end
data/tire.gemspec CHANGED
@@ -53,5 +53,20 @@ Gem::Specification.new do |s|
53
53
  It has full ActiveRecord/ActiveModel compatibility, allowing you to index
54
54
  your models (incrementally upon saving, or in bulk), searching and
55
55
  paginating the results.
56
+
57
+ Please check the documentation at <http://karmi.github.com/tire/>.
56
58
  DESC
59
+
60
+ s.post_install_message =<<-CHANGELOG.gsub(/^ /, '')
61
+ ================================================================================
62
+
63
+ Please check the documentation at <http://karmi.github.com/tire/>.
64
+
65
+ --------------------------------------------------------------------------------
66
+
67
+ #{Tire::CHANGELOG}
68
+ See the full changelog at <http://github.com/karmi/tire/commits/v#{Tire::VERSION}>.
69
+
70
+ --------------------------------------------------------------------------------
71
+ CHANGELOG
57
72
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tire
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 13
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 10
10
- version: 0.1.10
9
+ - 11
10
+ version: 0.1.11
11
11
  platform: ruby
12
12
  authors:
13
13
  - Karel Minarik
@@ -240,7 +240,7 @@ dependencies:
240
240
  version: "0"
241
241
  type: :development
242
242
  version_requirements: *id015
243
- description: " Tire is a Ruby client for the ElasticSearch search engine/database.\n\n It provides Ruby-like API for fluent communication with the ElasticSearch server\n and blends with ActiveModel class for convenient usage in Rails applications.\n\n It allows to delete and create indices, define mapping for them, supports\n the bulk API, and presents an easy-to-use DSL for constructing your queries.\n\n It has full ActiveRecord/ActiveModel compatibility, allowing you to index\n your models (incrementally upon saving, or in bulk), searching and\n paginating the results.\n"
243
+ description: " Tire is a Ruby client for the ElasticSearch search engine/database.\n\n It provides Ruby-like API for fluent communication with the ElasticSearch server\n and blends with ActiveModel class for convenient usage in Rails applications.\n\n It allows to delete and create indices, define mapping for them, supports\n the bulk API, and presents an easy-to-use DSL for constructing your queries.\n\n It has full ActiveRecord/ActiveModel compatibility, allowing you to index\n your models (incrementally upon saving, or in bulk), searching and\n paginating the results.\n\n Please check the documentation at <http://karmi.github.com/tire/>.\n"
244
244
  email: karmi@karmi.cz
245
245
  executables: []
246
246
 
@@ -340,7 +340,25 @@ has_rdoc: true
340
340
  homepage: http://github.com/karmi/tire
341
341
  licenses: []
342
342
 
343
- post_install_message:
343
+ post_install_message: |
344
+ ================================================================================
345
+
346
+ Please check the documentation at <http://karmi.github.com/tire/>.
347
+
348
+ --------------------------------------------------------------------------------
349
+
350
+ CHANGES FROM 0.1.8:
351
+
352
+ # Added `<after/before>_update_elastic_search_index` callbacks for models
353
+ # Search performs GET instead of POST
354
+ # Added percolator support
355
+ # Added percolator support for models
356
+ # CHANGELOG support in gemspec
357
+
358
+ See the full changelog at <http://github.com/karmi/tire/commits/v0.1.11>.
359
+
360
+ --------------------------------------------------------------------------------
361
+
344
362
  rdoc_options:
345
363
  - --charset=UTF-8
346
364
  require_paths: