summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-12-13 13:24:25 +0100
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-12-13 13:24:25 +0100
commit5f590a71fd26b637501f8751bc6f9adff4d9c8db (patch)
tree8c80593ed8155a4a3c62d733ef45f823e02b5b8c
parenta91a95b2327a3570db16afa1fde91c899d79d5a5 (diff)
downloadgitlab-ce-5f590a71fd26b637501f8751bc6f9adff4d9c8db.tar.gz
Improve readability in methods for detailed status
-rw-r--r--app/models/ci/build.rb4
-rw-r--r--app/models/ci/pipeline.rb4
-rw-r--r--app/models/ci/stage.rb4
-rw-r--r--app/models/commit_status.rb4
4 files changed, 12 insertions, 4 deletions
diff --git a/app/models/ci/build.rb b/app/models/ci/build.rb
index 65ee327a8e5..63a4a075f8e 100644
--- a/app/models/ci/build.rb
+++ b/app/models/ci/build.rb
@@ -101,7 +101,9 @@ module Ci
end
def detailed_status(current_user)
- Gitlab::Ci::Status::Build::Factory.new(self, current_user).fabricate!
+ Gitlab::Ci::Status::Build::Factory
+ .new(self, current_user)
+ .fabricate!
end
def manual?
diff --git a/app/models/ci/pipeline.rb b/app/models/ci/pipeline.rb
index 1f33106d358..54f73171fd4 100644
--- a/app/models/ci/pipeline.rb
+++ b/app/models/ci/pipeline.rb
@@ -337,7 +337,9 @@ module Ci
end
def detailed_status(current_user)
- Gitlab::Ci::Status::Pipeline::Factory.new(self, current_user).fabricate!
+ Gitlab::Ci::Status::Pipeline::Factory
+ .new(self, current_user)
+ .fabricate!
end
private
diff --git a/app/models/ci/stage.rb b/app/models/ci/stage.rb
index be52cce20f1..7ef59445d77 100644
--- a/app/models/ci/stage.rb
+++ b/app/models/ci/stage.rb
@@ -23,7 +23,9 @@ module Ci
end
def detailed_status(current_user)
- Gitlab::Ci::Status::Stage::Factory.new(self, current_user).fabricate!
+ Gitlab::Ci::Status::Stage::Factory
+ .new(self, current_user)
+ .fabricate!
end
def statuses
diff --git a/app/models/commit_status.rb b/app/models/commit_status.rb
index 6548a7dda2c..31cd381dcd2 100644
--- a/app/models/commit_status.rb
+++ b/app/models/commit_status.rb
@@ -133,6 +133,8 @@ class CommitStatus < ActiveRecord::Base
end
def detailed_status(current_user)
- Gitlab::Ci::Status::Factory.new(self, current_user).fabricate!
+ Gitlab::Ci::Status::Factory
+ .new(self, current_user)
+ .fabricate!
end
end