flex 1.0.1 → 1.0.2
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.
- data/README.md +1 -1
- data/VERSION +1 -1
- data/lib/flex/deprecation.rb +1 -1
- data/lib/flex/rails.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -26,7 +26,7 @@ The Flex documentation is very complete and detailed, so starting from the right
|
|
|
26
26
|
|
|
27
27
|
1. You may want to start with the [Index and Search External Data](http://ddnexus.github.io/flex/doc/7-Tutorials/4-Index-and-Search-External-Data.md) tutorial, since it practically doesn't require any elasticsearch knowledge. It will show you how to build your own search application with just a few lines of code. You will crawl a site, extract its content and build a simple user interface to search it with elasticsearch.
|
|
28
28
|
|
|
29
|
-
2. Then you may want to read the [Usage Overview](http://ddnexus.github.io/flex/doc/1-Flex-Project/2-Usage-Overview.html) page. Follow the links from there in order to dig into the topics that interest you
|
|
29
|
+
2. Then you may want to read the [Usage Overview](http://ddnexus.github.io/flex/doc/1-Flex-Project/2-Usage-Overview.html) page. Follow the links from there in order to dig into the topics that interest you.
|
|
30
30
|
|
|
31
31
|
3. You will probably like the [flex-scopes](http://ddnexus.github.io/flex/doc/3-flex-scopes) that allows you to easy search, chain toghether and reuse searching scopes in pure ruby.
|
|
32
32
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.2
|
data/lib/flex/deprecation.rb
CHANGED
|
@@ -5,7 +5,7 @@ module Flex
|
|
|
5
5
|
extend self
|
|
6
6
|
|
|
7
7
|
def warn(old, new, called=1)
|
|
8
|
-
message = "#{old} is deprecated in favour of #{new}, and will be removed in a next version "
|
|
8
|
+
message = "#{old} is deprecated in favour of #{new}, and will be removed in a next version. Please, read the upgrade notes at http://ddnexus.github.io/flex/doc/7-Tutorials/2-Migrate-from-0.x.html. "
|
|
9
9
|
message << "(called at: #{caller[called]})" if called
|
|
10
10
|
Conf.logger.warn message
|
|
11
11
|
end
|
data/lib/flex/rails.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
raise NotImplementedError, %(The "flex/rails" file has been replaced by the "flex-rails" gem. Please, use "flex-rails" in place of "flex" in Rails applications (change "gem 'flex', require => 'flex/rails'" to "gem 'flex-rails'" in your Gemfile))
|
|
1
|
+
raise NotImplementedError, %(The "flex/rails" file has been replaced by the "flex-rails" gem. Please, use "flex-rails" in place of "flex" in Rails applications (change "gem 'flex', require => 'flex/rails'" to "gem 'flex-rails'" in your Gemfile). Please, read the upgrade notes at http://ddnexus.github.io/flex/doc/7-Tutorials/2-Migrate-from-0.x.html.)
|