lucid_works 0.6.11 → 0.6.12
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.rdoc +2 -1
- data/lib/lucid_works/datasource.rb +1 -1
- data/lib/lucid_works/server.rb +1 -0
- data/lib/lucid_works/version.rb +4 -1
- data/lib/lucid_works.rb +1 -0
- data/lucid_works.gemspec +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -41,7 +41,7 @@ This single statement (note the periods) will connect to a LucidWorks server run
|
|
41
41
|
create_datasource(:name => 'cnn',
|
42
42
|
:crawler => 'lucid.aperture', :type => 'web',
|
43
43
|
:url => 'http://cnn.com', :crawl_depth => '1').
|
44
|
-
start_crawl
|
44
|
+
start_crawl!
|
45
45
|
|
46
46
|
Now, how does it work:
|
47
47
|
|
@@ -67,6 +67,7 @@ The LucidWorks object model looks something like this:
|
|
67
67
|
| +- Query -+- Summary
|
68
68
|
|
|
69
69
|
+- Crawlers
|
70
|
+
+- Version
|
70
71
|
|
71
72
|
This is what has been modeled so far. The actual REST API is more extensive.
|
72
73
|
|
data/lib/lucid_works/server.rb
CHANGED
data/lib/lucid_works/version.rb
CHANGED
data/lib/lucid_works.rb
CHANGED
@@ -52,5 +52,6 @@ require 'lucid_works/logs/query'
|
|
52
52
|
require 'lucid_works/logs/query/summary'
|
53
53
|
require 'lucid_works/logs/index'
|
54
54
|
require 'lucid_works/logs/index/summary'
|
55
|
+
require 'lucid_works/version'
|
55
56
|
|
56
57
|
I18n.load_path += Dir.glob(File.join(File.dirname(__FILE__), '..', 'config', 'locales', '*.yml'))
|
data/lucid_works.gemspec
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: lucid_works
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.6.
|
5
|
+
version: 0.6.12
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Sam Pierson
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-05-
|
13
|
+
date: 2011-05-27 00:00:00 -07:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|