From 38737079b6c1096c2517e249198b8bc0bedf4156 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Sat, 9 Feb 2013 15:26:47 +0200 Subject: ignore docs by git --- doc/code/classes/GitlabCiService.html | 371 ---------------------------------- 1 file changed, 371 deletions(-) delete mode 100644 doc/code/classes/GitlabCiService.html (limited to 'doc/code/classes/GitlabCiService.html') diff --git a/doc/code/classes/GitlabCiService.html b/doc/code/classes/GitlabCiService.html deleted file mode 100644 index a56f614f772..00000000000 --- a/doc/code/classes/GitlabCiService.html +++ /dev/null @@ -1,371 +0,0 @@ - - - - - GitlabCiService - - - - - - - - - - - - - -
-
- -
- -

Schema Information

- -

Table name: services

- -
id          :integer          not null, primary key
-type        :string(255)
-title       :string(255)
-token       :string(255)
-project_id  :integer          not null
-created_at  :datetime         not null
-updated_at  :datetime         not null
-active      :boolean          default(FALSE), not null
-project_url :string(255)
- -
- - - - - - - - - - - - - - - -
Methods
-
- -
A
-
- -
- -
B
-
- -
- -
C
-
- -
- -
- - - - - - - - - - - - - - - - - - - - -
Instance Public methods
- -
-
- - activated?() - - -
- - -
- -
- - - - - - -
- - -
-
# File app/models/gitlab_ci_service.rb, line 26
-def activated?
-  active
-end
-
-
- -
- -
-
- - build_page(sha) - - -
- - -
- -
- - - - - - -
- - -
-
# File app/models/gitlab_ci_service.rb, line 54
-def build_page sha
-  project_url + "/builds/#{sha}"
-end
-
-
- -
- -
-
- - commit_badge_path(sha) - - -
- - -
- -
- - - - - - -
- - -
-
# File app/models/gitlab_ci_service.rb, line 36
-def commit_badge_path sha
-  project_url + "/status?sha=#{sha}"
-end
-
-
- -
- -
-
- - commit_status(sha) - - -
- - -
- -
- - - - - - -
- - -
-
# File app/models/gitlab_ci_service.rb, line 44
-def commit_status sha
-  response = HTTParty.get(commit_status_path(sha))
-
-  if response.code == 200 and response["status"]
-    response["status"]
-  else
-    :error
-  end
-end
-
-
- -
- -
-
- - commit_status_path(sha) - - -
- - -
- -
- - - - - - -
- - -
-
# File app/models/gitlab_ci_service.rb, line 40
-def commit_status_path sha
-  project_url + "/builds/#{sha}/status.json?token=#{token}"
-end
-
-
- -
- -
-
- - compose_service_hook() - - -
- - -
- -
- - - - - - -
- - -
-
# File app/models/gitlab_ci_service.rb, line 30
-def compose_service_hook
-  hook = service_hook || build_service_hook
-  hook.url = [project_url, "/build", "?token=#{token}"].join("")
-  hook.save
-end
-
-
- -
-
- -
- - \ No newline at end of file -- cgit v1.2.1