From 96d49bf04ce77c975fe500f4d961e4a1ffed4c26 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Sun, 30 Dec 2012 14:43:00 +0200 Subject: Use sdoc to generate application code documentation --- doc/code/classes/SystemHook.html | 191 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 191 insertions(+) create mode 100644 doc/code/classes/SystemHook.html (limited to 'doc/code/classes/SystemHook.html') diff --git a/doc/code/classes/SystemHook.html b/doc/code/classes/SystemHook.html new file mode 100644 index 00000000000..4f1ce71fbba --- /dev/null +++ b/doc/code/classes/SystemHook.html @@ -0,0 +1,191 @@ + + + + + SystemHook + + + + + + + + + + + + + +
+
+ +
+ +

Schema Information

+ +

Table name: web_hooks

+ +
id         :integer          not null, primary key
+url        :string(255)
+project_id :integer
+created_at :datetime         not null
+updated_at :datetime         not null
+type       :string(255)      default("ProjectHook")
+service_id :integer
+ +
+ + + + + + + + + + + + + + + +
Methods
+
+ +
A
+
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + +
Class Public methods
+ +
+
+ + all_hooks_fire(data) + + +
+ + +
+ +
+ + + + + + +
+ + +
+
# File app/models/system_hook.rb, line 15
+def self.all_hooks_fire(data)
+  SystemHook.all.each do |sh|
+    sh.async_execute data
+  end
+end
+
+
+ +
+ +
Instance Public methods
+ +
+
+ + async_execute(data) + + +
+ + +
+ +
+ + + + + + +
+ + +
+
# File app/models/system_hook.rb, line 21
+def async_execute(data)
+  Resque.enqueue(SystemHookWorker, id, data)
+end
+
+
+ +
+
+ +
+ + \ No newline at end of file -- cgit v1.2.1