muck-raker 0.3.13 → 0.3.14
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +38 -0
- data/VERSION +1 -1
- data/lib/muck_raker/tasks.rb +77 -73
- data/muck-raker.gemspec +191 -191
- data/raker/lib/aggregatord.jar +0 -0
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -10,4 +10,42 @@ Add rake tasks to your Rakefile
|
|
10
10
|
|
11
11
|
require 'muck_raker/tasks'
|
12
12
|
|
13
|
+
== Usage
|
14
|
+
|
15
|
+
Muck raker aggregates data feeds and analyzes the results to make recommendations.
|
16
|
+
|
17
|
+
=== Bring in required files - migrations etc:
|
18
|
+
muck:raker:sync - Copy muck-raker migrations, solr config files and initializer file into your application.
|
19
|
+
|
20
|
+
=== Running the Muck Raker Daemon
|
21
|
+
|
22
|
+
muck:raker:start - Start muck-raker daemon running continuously. This task forks and then checks for stale feeds every
|
23
|
+
60 seconds. When a stale feed is detected, it harvests the feed. If resources are added, updated, or deleted, it
|
24
|
+
indexes the new resources, generates recommendations for the new resources, and generates tags if needed. Once a week
|
25
|
+
the daemon updates recommendations for all resources and generates new tag clouds.
|
26
|
+
|
27
|
+
muck:raker:stop - Stop the muck raker daemon process.
|
28
|
+
|
29
|
+
=== Running Individual Steps
|
30
|
+
|
31
|
+
muck:raker:start_redo - Redo everything and quit. This task harvests, updates recommendations for all resources,
|
32
|
+
generates tags if needed, and generates new tag clouds. It does not fork. It stops after the one pass through.
|
33
|
+
|
34
|
+
muck:raker:harvest - Harvest stale feeds. Each feed has a "harvest_interval" that specifies how often the daemon
|
35
|
+
should harvest it to see if it has changed.. After that time period has elapsed the feed is considered stale. By
|
36
|
+
default that time period is 1 day.
|
37
|
+
|
38
|
+
muck:raker:index - Index new resources, delete resources that were deleted from the database, and update the index
|
39
|
+
for resources that were updated in the database.
|
40
|
+
|
41
|
+
muck:raker:index_redo - Updates the indexes for all resources.
|
42
|
+
|
43
|
+
muck:raker:recommend - Incrementally update recommendations (create recommendations for newly harvested records).
|
44
|
+
|
45
|
+
muck:raker:recommend_redo - Redo recommendations for all resources.
|
46
|
+
|
47
|
+
muck:raker:subjects - Auto-generate tags for newly harvested resources that don't have at least 4.
|
48
|
+
|
49
|
+
muck:raker:tag_clouds - Regenerate tag clouds.
|
50
|
+
|
13
51
|
Copyright (c) 2009 Tatemae.com, released under the MIT license
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.14
|
data/lib/muck_raker/tasks.rb
CHANGED
@@ -15,35 +15,78 @@ module MuckRaker
|
|
15
15
|
|
16
16
|
namespace :muck do
|
17
17
|
|
18
|
-
namespace :
|
19
|
-
|
20
|
-
desc "Imports attention data for use in testing"
|
21
|
-
task :import_attention => :environment do
|
22
|
-
require 'active_record/fixtures'
|
23
|
-
ActiveRecord::Base.establish_connection(RAILS_ENV.to_sym)
|
24
|
-
yml = File.join(RAILS_ROOT, 'db', 'bootstrap', 'attention')
|
25
|
-
Fixtures.new(Attention.connection,"attention",Attention,yml).insert_fixtures
|
26
|
-
end
|
27
|
-
|
18
|
+
namespace :sync do
|
28
19
|
desc "Sync files from muck raker."
|
29
|
-
task :
|
20
|
+
task :raker do
|
30
21
|
path = File.join(File.dirname(__FILE__), *%w[.. ..])
|
31
22
|
system "rsync -ruv #{path}/db ."
|
32
23
|
system "rsync -ruv #{path}/config/solr ./config"
|
33
24
|
system "rsync -ruv #{path}/config/solr.yml ./config" if !File.exist?('.config/solr.yml')
|
34
25
|
system "rsync -ruv #{path}/config/initializers/muck_raker.rb ./config/initializers" if !File.exist?('.config/initializsers/muck_raker.rb')
|
26
|
+
puts "Copied muck-raker migrations, solr config files and initializer"
|
35
27
|
end
|
28
|
+
end
|
29
|
+
|
30
|
+
namespace :raker do
|
36
31
|
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
}
|
32
|
+
desc "Start muck-raker daemon running continuously."
|
33
|
+
task :start => :environment do
|
34
|
+
daemon_task 'daemon'
|
41
35
|
end
|
42
36
|
|
43
|
-
desc "
|
44
|
-
task :
|
45
|
-
|
46
|
-
|
37
|
+
desc "Stop a raker daemon process."
|
38
|
+
task :stop => :environment do
|
39
|
+
file_path = "#{RAKER_PIDS_PATH}/#{ENV['RAILS_ENV']}_pid"
|
40
|
+
if File.exists?(file_path)
|
41
|
+
File.open(file_path, "r") do |f|
|
42
|
+
pid = f.readline
|
43
|
+
Process.kill('TERM', pid.to_i)
|
44
|
+
end
|
45
|
+
File.unlink(file_path)
|
46
|
+
puts "Raker shutdown successfully."
|
47
|
+
else
|
48
|
+
puts "PID file not found at #{file_path}. Either Raker is not running or no PID file was written."
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
desc "Redo everything and quit."
|
53
|
+
task :start_redo => :environment do
|
54
|
+
daemon_task 'daemon', 'redo'
|
55
|
+
end
|
56
|
+
|
57
|
+
desc "Harvest stale feeds."
|
58
|
+
task :harvest => :environment do
|
59
|
+
daemon_task 'harvest'
|
60
|
+
end
|
61
|
+
|
62
|
+
desc "Index new entries."
|
63
|
+
task :index => :environment do
|
64
|
+
daemon_task 'index'
|
65
|
+
end
|
66
|
+
|
67
|
+
desc "Re-index all entries."
|
68
|
+
task :index_redo => :environment do
|
69
|
+
daemon_task 'index', 'redo'
|
70
|
+
end
|
71
|
+
|
72
|
+
desc "Incrementally update recommendations (create recommendations for newly harvested records)."
|
73
|
+
task :recommend => :environment do
|
74
|
+
daemon_task 'recommend'
|
75
|
+
end
|
76
|
+
|
77
|
+
desc "Redo all recommendations."
|
78
|
+
task :recommend_redo => :environment do
|
79
|
+
daemon_task 'recommend', 'redo'
|
80
|
+
end
|
81
|
+
|
82
|
+
desc "Auto-generate tags for new entries that don't have at least 4."
|
83
|
+
task :subjects => :environment do
|
84
|
+
daemon_task 'subjects'
|
85
|
+
end
|
86
|
+
|
87
|
+
desc "Re-generate tag clouds."
|
88
|
+
task :tag_clouds => :environment do
|
89
|
+
daemon_task 'tag_clouds', 'redo'
|
47
90
|
end
|
48
91
|
|
49
92
|
def show_options
|
@@ -93,64 +136,25 @@ module MuckRaker
|
|
93
136
|
end
|
94
137
|
end
|
95
138
|
|
96
|
-
desc "
|
97
|
-
task :
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
desc "Redo everything once and quit."
|
102
|
-
task :start_redo => :environment do
|
103
|
-
daemon_task 'daemon', 'redo'
|
104
|
-
end
|
105
|
-
|
106
|
-
desc "Harvest stale feeds. Add redo=true to harvest all feeds."
|
107
|
-
task :harvest => :environment do
|
108
|
-
daemon_task 'harvest'
|
109
|
-
end
|
110
|
-
|
111
|
-
desc "Index new entries."
|
112
|
-
task :index => :environment do
|
113
|
-
daemon_task 'index'
|
114
|
-
end
|
115
|
-
|
116
|
-
desc "Re-index all entries."
|
117
|
-
task :index_redo => :environment do
|
118
|
-
daemon_task 'index', 'redo'
|
119
|
-
end
|
120
|
-
|
121
|
-
desc "Update recommendations."
|
122
|
-
task :recommend => :environment do
|
123
|
-
daemon_task 'recommend'
|
124
|
-
end
|
125
|
-
|
126
|
-
desc "Redo all recommendations."
|
127
|
-
task :recommend_redo => :environment do
|
128
|
-
daemon_task 'recommend', 'redo'
|
129
|
-
end
|
130
|
-
|
131
|
-
desc "Auto-generate tags for new entries that don't have at least 4. Add redo=true to regenerate for all entries."
|
132
|
-
task :subjects => :environment do
|
133
|
-
daemon_task 'subjects'
|
139
|
+
desc "Reload solr indexes."
|
140
|
+
task :reload_indexes do
|
141
|
+
require File.expand_path("#{File.dirname(__FILE__)}/../../config/muck_raker_environment")
|
142
|
+
reload_cores
|
143
|
+
puts "Reloaded solr indexes"
|
134
144
|
end
|
135
145
|
|
136
|
-
|
137
|
-
|
138
|
-
|
146
|
+
def reload_cores
|
147
|
+
['en', 'es', 'zh-CN', 'fr', 'ja', 'de', 'ru', 'nl'].each{|core|
|
148
|
+
Net::HTTP.new('127.0.0.1', SOLR_PORT).request_head('/solr/admin/cores?action=RELOAD&core=' + core).value
|
149
|
+
}
|
139
150
|
end
|
140
151
|
|
141
|
-
desc "
|
142
|
-
task :
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
Process.kill('TERM', pid.to_i)
|
148
|
-
end
|
149
|
-
File.unlink(file_path)
|
150
|
-
puts "Raker shutdown successfully."
|
151
|
-
else
|
152
|
-
puts "PID file not found at #{file_path}. Either Raker is not running or no PID file was written."
|
153
|
-
end
|
152
|
+
desc "Import attention data for use in testing."
|
153
|
+
task :import_attention => :environment do
|
154
|
+
require 'active_record/fixtures'
|
155
|
+
ActiveRecord::Base.establish_connection(RAILS_ENV.to_sym)
|
156
|
+
yml = File.join(RAILS_ROOT, 'db', 'bootstrap', 'attention')
|
157
|
+
Fixtures.new(Attention.connection,"attention",Attention,yml).insert_fixtures
|
154
158
|
end
|
155
159
|
|
156
160
|
end
|
data/muck-raker.gemspec
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# Generated by jeweler
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in
|
3
|
+
# Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{muck-raker}
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.14"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Joel Duffin Justin Ball"]
|
12
|
-
s.date = %q{2010-
|
12
|
+
s.date = %q{2010-04-29}
|
13
13
|
s.description = %q{The aggregation and recommendation daemons for the muck system.}
|
14
14
|
s.email = %q{justin@tatemae.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -17,142 +17,142 @@ Gem::Specification.new do |s|
|
|
17
17
|
]
|
18
18
|
s.files = [
|
19
19
|
".gitignore",
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
20
|
+
"MIT-LICENSE",
|
21
|
+
"README.rdoc",
|
22
|
+
"Rakefile",
|
23
|
+
"VERSION",
|
24
|
+
"config/initializers/muck_raker.rb",
|
25
|
+
"config/muck_raker_environment.rb",
|
26
|
+
"config/solr.yml",
|
27
|
+
"config/solr/README.txt",
|
28
|
+
"config/solr/cores/de/conf/protwords.txt",
|
29
|
+
"config/solr/cores/de/conf/schema.xml",
|
30
|
+
"config/solr/cores/de/conf/solrconfig.xml",
|
31
|
+
"config/solr/cores/de/conf/stopwords.txt",
|
32
|
+
"config/solr/cores/de/conf/synonyms.txt",
|
33
|
+
"config/solr/cores/en/conf/protwords.txt",
|
34
|
+
"config/solr/cores/en/conf/schema.xml",
|
35
|
+
"config/solr/cores/en/conf/solrconfig.xml",
|
36
|
+
"config/solr/cores/en/conf/stopwords.txt",
|
37
|
+
"config/solr/cores/en/conf/synonyms.txt",
|
38
|
+
"config/solr/cores/es/conf/protwords.txt",
|
39
|
+
"config/solr/cores/es/conf/schema.xml",
|
40
|
+
"config/solr/cores/es/conf/solrconfig.xml",
|
41
|
+
"config/solr/cores/es/conf/stopwords.txt",
|
42
|
+
"config/solr/cores/es/conf/synonyms.txt",
|
43
|
+
"config/solr/cores/fr/conf/protwords.txt",
|
44
|
+
"config/solr/cores/fr/conf/schema.xml",
|
45
|
+
"config/solr/cores/fr/conf/solrconfig.xml",
|
46
|
+
"config/solr/cores/fr/conf/stopwords.txt",
|
47
|
+
"config/solr/cores/fr/conf/synonyms.txt",
|
48
|
+
"config/solr/cores/ja/conf/protwords.txt",
|
49
|
+
"config/solr/cores/ja/conf/schema.xml",
|
50
|
+
"config/solr/cores/ja/conf/solrconfig.xml",
|
51
|
+
"config/solr/cores/ja/conf/stopwords.txt",
|
52
|
+
"config/solr/cores/ja/conf/synonyms.txt",
|
53
|
+
"config/solr/cores/nl/conf/protwords.txt",
|
54
|
+
"config/solr/cores/nl/conf/schema.xml",
|
55
|
+
"config/solr/cores/nl/conf/solrconfig.xml",
|
56
|
+
"config/solr/cores/nl/conf/stopwords.txt",
|
57
|
+
"config/solr/cores/nl/conf/synonyms.txt",
|
58
|
+
"config/solr/cores/ru/conf/protwords.txt",
|
59
|
+
"config/solr/cores/ru/conf/schema.xml",
|
60
|
+
"config/solr/cores/ru/conf/solrconfig.xml",
|
61
|
+
"config/solr/cores/ru/conf/stopwords.txt",
|
62
|
+
"config/solr/cores/ru/conf/synonyms.txt",
|
63
|
+
"config/solr/cores/zh/conf/protwords.txt",
|
64
|
+
"config/solr/cores/zh/conf/schema.xml",
|
65
|
+
"config/solr/cores/zh/conf/solrconfig.xml",
|
66
|
+
"config/solr/cores/zh/conf/stopwords.txt",
|
67
|
+
"config/solr/cores/zh/conf/synonyms.txt",
|
68
|
+
"config/solr/solr.xml",
|
69
|
+
"db/bootstrap/attention.yml",
|
70
|
+
"db/bootstrap/feeds.yml",
|
71
|
+
"db/bootstrap/oai_endpoints.yml",
|
72
|
+
"db/bootstrap/service_categories.yml",
|
73
|
+
"db/bootstrap/services.yml",
|
74
|
+
"db/migrate/20090602191243_create_muck_raker.rb",
|
75
|
+
"db/migrate/20090619211125_create_tag_clouds.rb",
|
76
|
+
"db/migrate/20090623181458_add_grain_size_to_entries.rb",
|
77
|
+
"db/migrate/20090623193525_add_grain_size_to_tag_clouds.rb",
|
78
|
+
"db/migrate/20090703175825_denormalize_entries_subjects.rb",
|
79
|
+
"db/migrate/20090716035935_change_tag_cloud_grain_sizes.rb",
|
80
|
+
"db/migrate/20090717173900_add_contributor_to_feeds.rb",
|
81
|
+
"db/migrate/20090717175825_normalize_entries_subjects.rb",
|
82
|
+
"db/migrate/20090721043213_change_services_title_to_name.rb",
|
83
|
+
"db/migrate/20090721054927_remove_services_not_null_from_feeds.rb",
|
84
|
+
"db/migrate/20090723050510_create_feed_parents.rb",
|
85
|
+
"db/migrate/20090728165716_add_etag_to_feeds.rb",
|
86
|
+
"db/migrate/20090730045848_add_comment_cache_to_entries.rb",
|
87
|
+
"db/migrate/20090804211240_add_entry_id_to_shares.rb",
|
88
|
+
"db/migrate/20090826220530_change_services_sequence_to_sort.rb",
|
89
|
+
"db/migrate/20090826225652_create_identity_feeds.rb",
|
90
|
+
"db/migrate/20090827005105_add_identity_fields_to_services.rb",
|
91
|
+
"db/migrate/20090827015308_create_service_categories.rb",
|
92
|
+
"db/migrate/20090827221502_add_prompt_and_template_to_services.rb",
|
93
|
+
"db/migrate/20090915041650_aggregations_to_polymorphic.rb",
|
94
|
+
"db/migrate/20090922174200_update_oai_endpoints.rb",
|
95
|
+
"db/migrate/20090922231552_add_dates_to_oai_endpoints.rb",
|
96
|
+
"db/migrate/20090923150807_rename_name_in_aggregation.rb",
|
97
|
+
"db/migrate/20090924200750_add_uri_data_template_to_services.rb",
|
98
|
+
"db/migrate/20091006183742_add_feed_count_to_aggregation.rb",
|
99
|
+
"db/migrate/20091022150615_add_uri_key_to_services.rb",
|
100
|
+
"install.rb",
|
101
|
+
"lib/muck_raker.rb",
|
102
|
+
"lib/muck_raker/tasks.rb",
|
103
|
+
"muck-raker.gemspec",
|
104
|
+
"rails/init.rb",
|
105
|
+
"raker/lib/aggregatord.jar",
|
106
|
+
"raker/lib/aggregatord.properties",
|
107
|
+
"raker/lib/axis.jar",
|
108
|
+
"raker/lib/commons-daemon.jar",
|
109
|
+
"raker/lib/commons-dbcp-1.2.1.jar",
|
110
|
+
"raker/lib/commons-discovery-0.2.jar",
|
111
|
+
"raker/lib/commons-pool-1.3.jar",
|
112
|
+
"raker/lib/delicious-1.13.jar",
|
113
|
+
"raker/lib/flickrapi-1.0a9.jar",
|
114
|
+
"raker/lib/javax.jms.jar",
|
115
|
+
"raker/lib/jaxrpc.jar",
|
116
|
+
"raker/lib/jdom.jar",
|
117
|
+
"raker/lib/jericho.jar",
|
118
|
+
"raker/lib/log4j-1.2.8.jar",
|
119
|
+
"raker/lib/mail.jar",
|
120
|
+
"raker/lib/mysql-connector-java-5.1.10-bin.jar",
|
121
|
+
"raker/lib/recommenderd.jar",
|
122
|
+
"raker/lib/recommenderd.properties",
|
123
|
+
"raker/lib/rome-1.0.jar",
|
124
|
+
"raker/lib/rome.properties",
|
125
|
+
"raker/lib/solr/apache-solr-common-1.3.0.jar",
|
126
|
+
"raker/lib/solr/apache-solr-core-1.3.0.jar",
|
127
|
+
"raker/lib/solr/apache-solr-dataimporthandler-1.3.0.jar",
|
128
|
+
"raker/lib/solr/commons-codec-1.3.jar",
|
129
|
+
"raker/lib/solr/commons-csv-1.0-SNAPSHOT-r609327.jar",
|
130
|
+
"raker/lib/solr/commons-fileupload-1.2.jar",
|
131
|
+
"raker/lib/solr/commons-httpclient-3.1.jar",
|
132
|
+
"raker/lib/solr/commons-io-1.3.1.jar",
|
133
|
+
"raker/lib/solr/commons-logging-1.0.4.jar",
|
134
|
+
"raker/lib/solr/geronimo-stax-api_1.0_spec-1.0.1.jar",
|
135
|
+
"raker/lib/solr/junit-4.3.jar",
|
136
|
+
"raker/lib/solr/lucene-analyzers-2.4-dev.jar",
|
137
|
+
"raker/lib/solr/lucene-core-2.4-dev.jar",
|
138
|
+
"raker/lib/solr/lucene-highlighter-2.4-dev.jar",
|
139
|
+
"raker/lib/solr/lucene-memory-2.4-dev.jar",
|
140
|
+
"raker/lib/solr/lucene-queries-2.4-dev.jar",
|
141
|
+
"raker/lib/solr/lucene-snowball-2.4-dev.jar",
|
142
|
+
"raker/lib/solr/lucene-spellchecker-2.4-dev.jar",
|
143
|
+
"raker/lib/solr/solr-commons-csv-pom.xml.template",
|
144
|
+
"raker/lib/solr/solr-lucene-analyzers-pom.xml.template",
|
145
|
+
"raker/lib/solr/solr-lucene-contrib-pom.xml.template",
|
146
|
+
"raker/lib/solr/solr-lucene-core-pom.xml.template",
|
147
|
+
"raker/lib/solr/solr-lucene-highlighter-pom.xml.template",
|
148
|
+
"raker/lib/solr/solr-lucene-queries-pom.xml.template",
|
149
|
+
"raker/lib/solr/solr-lucene-snowball-pom.xml.template",
|
150
|
+
"raker/lib/solr/solr-lucene-spellchecker-pom.xml.template",
|
151
|
+
"raker/lib/solr/stax-utils.jar",
|
152
|
+
"raker/lib/solr/wstx-asl-3.2.7.jar",
|
153
|
+
"raker/lib/wsdl4j-1.5.1.jar",
|
154
|
+
"tasks/muck_raker_tasks.rake",
|
155
|
+
"uninstall.rb"
|
156
156
|
]
|
157
157
|
s.homepage = %q{http://github.com/tatemae/muck-raker}
|
158
158
|
s.rdoc_options = ["--charset=UTF-8"]
|
@@ -162,58 +162,58 @@ Gem::Specification.new do |s|
|
|
162
162
|
s.summary = %q{The aggregation and recommendation daemons for the muck system}
|
163
163
|
s.test_files = [
|
164
164
|
"test/rails_root/config/boot.rb",
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
165
|
+
"test/rails_root/config/environment.rb",
|
166
|
+
"test/rails_root/config/environments/development.rb",
|
167
|
+
"test/rails_root/config/environments/production.rb",
|
168
|
+
"test/rails_root/config/environments/test.rb",
|
169
|
+
"test/rails_root/config/initializers/inflections.rb",
|
170
|
+
"test/rails_root/config/initializers/mime_types.rb",
|
171
|
+
"test/rails_root/config/initializers/requires.rb",
|
172
|
+
"test/rails_root/config/initializers/session_store.rb",
|
173
|
+
"test/rails_root/config/routes.rb",
|
174
|
+
"test/rails_root/db/migrate/20090320174818_create_muck_permissions_and_roles.rb",
|
175
|
+
"test/rails_root/db/migrate/20090402033319_add_muck_activities.rb",
|
176
|
+
"test/rails_root/db/migrate/20090402234137_create_languages.rb",
|
177
|
+
"test/rails_root/db/migrate/20090426041056_create_countries.rb",
|
178
|
+
"test/rails_root/db/migrate/20090426041103_create_states.rb",
|
179
|
+
"test/rails_root/db/migrate/20090602041838_create_users.rb",
|
180
|
+
"test/rails_root/db/migrate/20090602191243_create_muck_raker.rb",
|
181
|
+
"test/rails_root/db/migrate/20090613173314_create_comments.rb",
|
182
|
+
"test/rails_root/db/migrate/20090619211125_create_tag_clouds.rb",
|
183
|
+
"test/rails_root/db/migrate/20090623181458_add_grain_size_to_entries.rb",
|
184
|
+
"test/rails_root/db/migrate/20090623193525_add_grain_size_to_tag_clouds.rb",
|
185
|
+
"test/rails_root/db/migrate/20090703175825_denormalize_entries_subjects.rb",
|
186
|
+
"test/rails_root/db/migrate/20090704220055_create_slugs.rb",
|
187
|
+
"test/rails_root/db/migrate/20090704220120_acts_as_taggable_on_migration.rb",
|
188
|
+
"test/rails_root/db/migrate/20090716035935_change_tag_cloud_grain_sizes.rb",
|
189
|
+
"test/rails_root/db/migrate/20090717173900_add_contributor_to_feeds.rb",
|
190
|
+
"test/rails_root/db/migrate/20090717175825_normalize_entries_subjects.rb",
|
191
|
+
"test/rails_root/db/migrate/20090721043213_change_services_title_to_name.rb",
|
192
|
+
"test/rails_root/db/migrate/20090721054927_remove_services_not_null_from_feeds.rb",
|
193
|
+
"test/rails_root/db/migrate/20090723050510_create_feed_parents.rb",
|
194
|
+
"test/rails_root/db/migrate/20090728165716_add_etag_to_feeds.rb",
|
195
|
+
"test/rails_root/db/migrate/20090730044139_add_comment_cache.rb",
|
196
|
+
"test/rails_root/db/migrate/20090730045848_add_comment_cache_to_entries.rb",
|
197
|
+
"test/rails_root/db/migrate/20090730154102_allow_null_user.rb",
|
198
|
+
"test/rails_root/db/migrate/20090803185323_create_shares.rb",
|
199
|
+
"test/rails_root/db/migrate/20090804184247_add_comment_count_to_shares.rb",
|
200
|
+
"test/rails_root/db/migrate/20090804211240_add_entry_id_to_shares.rb",
|
201
|
+
"test/rails_root/db/migrate/20090804231857_add_shares_uri_index.rb",
|
202
|
+
"test/rails_root/db/migrate/20090818204527_add_activity_indexes.rb",
|
203
|
+
"test/rails_root/db/migrate/20090819030523_add_attachable_to_activities.rb",
|
204
|
+
"test/rails_root/db/migrate/20090826220530_change_services_sequence_to_sort.rb",
|
205
|
+
"test/rails_root/db/migrate/20090826225652_create_identity_feeds.rb",
|
206
|
+
"test/rails_root/db/migrate/20090827005105_add_identity_fields_to_services.rb",
|
207
|
+
"test/rails_root/db/migrate/20090827015308_create_service_categories.rb",
|
208
|
+
"test/rails_root/db/migrate/20090827221502_add_prompt_and_template_to_services.rb",
|
209
|
+
"test/rails_root/db/migrate/20090915041650_aggregations_to_polymorphic.rb",
|
210
|
+
"test/rails_root/db/migrate/20090922174200_update_oai_endpoints.rb",
|
211
|
+
"test/rails_root/db/migrate/20090922231552_add_dates_to_oai_endpoints.rb",
|
212
|
+
"test/rails_root/db/migrate/20090923150807_rename_name_in_aggregation.rb",
|
213
|
+
"test/rails_root/db/migrate/20090924200750_add_uri_data_template_to_services.rb",
|
214
|
+
"test/rails_root/db/migrate/20091006183742_add_feed_count_to_aggregation.rb",
|
215
|
+
"test/rails_root/db/migrate/20091022150615_add_uri_key_to_services.rb",
|
216
|
+
"test/rails_root/script/create_project.rb"
|
217
217
|
]
|
218
218
|
|
219
219
|
if s.respond_to? :specification_version then
|
data/raker/lib/aggregatord.jar
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: muck-raker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joel Duffin Justin Ball
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-
|
12
|
+
date: 2010-04-29 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|