ap4r 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,12 +0,0 @@
1
- # Author:: Shunichi Shinohara
2
- # Copyright:: Copyright (c) 2006 Future System Consulting Corp.
3
- # Licence:: MIT Licence
4
-
5
- require 'active_support'
6
- require 'code_statistics'
7
-
8
- CodeStatistics.new(
9
- ["Core Sources", "lib"],
10
- ["Rails plugin", "rails_plugin"],
11
- ["Scripts", "script"],
12
- ).to_s
@@ -1,21 +0,0 @@
1
- # Author:: Kiwamu Kato
2
- # Copyright:: Copyright (c) 2006 Future System Consulting Corp.
3
- # Licence:: MIT Licence
4
-
5
- class CreateTableForSaf < ActiveRecord::Migration
6
- def self.up
7
- create_table :stored_messages do |t|
8
- t.column :duplication_check_id, :string, :null => false
9
- t.column :queue, :string, :null => false
10
- t.column :headers, :binary, :null => false
11
- t.column :object, :binary, :null => false
12
- t.column :status, :integer, :null => false
13
- t.column :created_at, :datetime, :null => false
14
- t.column :updated_at, :datetime, :null => false
15
- end
16
- end
17
-
18
- def self.down
19
- drop_table :stored_messages
20
- end
21
- end
@@ -1,10 +0,0 @@
1
- # Author:: Shunichi Shinohara
2
- # Copyright:: Copyright (c) 2006 Future System Consulting Corp.
3
- # Licence:: MIT Licence
4
-
5
- require 'async_controller'
6
- require 'ap4r/stored_message'
7
-
8
- class ActionController::Base
9
- include Ap4r::AsyncController::Base
10
- end