[ap4r-devel] [377] trunk/ap4r: Modified manifest file.
kato-k at rubyforge.org
kato-k at rubyforge.org
Thu Jan 31 02:04:06 EST 2008
Revision: 377
Author: kato-k
Date: 2008-01-31 02:04:05 -0500 (Thu, 31 Jan 2008)
Log Message:
-----------
Modified manifest file.
Modified Paths:
--------------
trunk/ap4r/Manifest.txt
trunk/ap4r/Rakefile
Modified: trunk/ap4r/Manifest.txt
===================================================================
--- trunk/ap4r/Manifest.txt 2008-01-31 06:44:00 UTC (rev 376)
+++ trunk/ap4r/Manifest.txt 2008-01-31 07:04:05 UTC (rev 377)
@@ -15,6 +15,7 @@
lib/ap4r/carrier.rb
lib/ap4r/db/migrate/001_reliable_msg_queue_and_topic.rb
lib/ap4r/dispatcher.rb
+lib/ap4r/message_builder.rb
lib/ap4r/message_store_ext.rb
lib/ap4r/mongrel.rb
lib/ap4r/mongrel_ap4r.rb
@@ -43,11 +44,13 @@
rails_plugin/ap4r/lib/ap4r/service_handler.rb
rails_plugin/ap4r/lib/ap4r_client.rb
rails_plugin/ap4r/lib/async_helper.rb
-rails_plugin/ap4r/lib/message_builder.rb
rails_plugin/ap4r/tasks/ap4r.rake
script/irm
script/mongrel_ap4r
script/start
script/stop
spec/local/dispatcher_base_spec.rb
+spec/local/message_builder_spec.rb
+spec/local/send_message_handler_spec.rb
+spec/local/subscribe_message_handler_spec.rb
spec/spec_helper.rb
Modified: trunk/ap4r/Rakefile
===================================================================
--- trunk/ap4r/Rakefile 2008-01-31 06:44:00 UTC (rev 376)
+++ trunk/ap4r/Rakefile 2008-01-31 07:04:05 UTC (rev 377)
@@ -1,5 +1,6 @@
require 'rubygems'
require 'erb'
+require 'find'
require 'active_record'
require File.join(File.dirname(__FILE__), 'lib/ap4r', 'version')
@@ -64,8 +65,10 @@
path_list = []
Find.find('.') do |path|
next unless File.file?(path)
+ next if path =~ /^\.\/coverage\//
next if path =~ /^\.\/doc\//
- next if path =~ /\.svn|tmp$|CVS|\~$/
+ next if path =~ /^\.\/log\//
+ next if path =~ /\.svn|tmp$|CVS|\.msg$|\.idx$|\.state$|\#$|\~$/
path_list << path
end
More information about the ap4r-devel
mailing list