Revert "Return tag along with commit"

This reverts commit c2fc97b138.

The respective change in travis-core was reverted meanwhile:
95d59342e9
This commit is contained in:
Sven Fuchs 2014-10-07 16:58:36 +02:00
parent 1905070c1d
commit e053a786c0
8 changed files with 0 additions and 8 deletions

View File

@ -48,7 +48,6 @@ module Travis
'id' => commit.id,
'sha' => commit.commit,
'branch' => commit.branch,
'tag' => commit.tag,
'message' => commit.message,
'committed_at' => format_date(commit.committed_at),
'author_name' => commit.author_name,

View File

@ -49,7 +49,6 @@ module Travis
'id' => commit.id,
'sha' => commit.commit,
'branch' => commit.branch,
'tag' => commit.tag,
'message' => commit.message,
'committed_at' => format_date(commit.committed_at),
'author_name' => commit.author_name,

View File

@ -47,7 +47,6 @@ module Travis
'id' => commit.id,
'sha' => commit.commit,
'branch' => commit.branch,
'tag' => commit.tag,
'message' => commit.message,
'committed_at' => format_date(commit.committed_at),
'author_name' => commit.author_name,

View File

@ -45,7 +45,6 @@ module Travis
'id' => commit.id,
'sha' => commit.commit,
'branch' => commit.branch,
'tag' => commit.tag,
'message' => commit.message,
'committed_at' => format_date(commit.committed_at),
'author_name' => commit.author_name,

View File

@ -28,7 +28,6 @@ describe Travis::Api::V2::Http::Build do
'id' => 1,
'sha' => '62aae5f70ceee39123ef',
'branch' => 'master',
'tag' => nil,
'message' => 'the commit message',
'compare_url' => 'https://github.com/svenfuchs/minimal/compare/master...develop',
'committed_at' => json_format_time(Time.now.utc - 1.hour),

View File

@ -28,7 +28,6 @@ describe Travis::Api::V2::Http::Builds do
'id' => commit.id,
'sha' => '62aae5f70ceee39123ef',
'branch' => 'master',
'tag' => nil,
'message' => 'the commit message',
'compare_url' => 'https://github.com/svenfuchs/minimal/compare/master...develop',
'committed_at' => json_format_time(Time.now.utc - 1.hour),

View File

@ -31,7 +31,6 @@ describe Travis::Api::V2::Http::Job do
'sha' => '62aae5f70ceee39123ef',
'message' => 'the commit message',
'branch' => 'master',
'tag' => nil,
'message' => 'the commit message',
'committed_at' => json_format_time(Time.now.utc - 1.hour),
'committer_name' => 'Sven Fuchs',

View File

@ -30,7 +30,6 @@ describe Travis::Api::V2::Http::Jobs do
'sha' => '62aae5f70ceee39123ef',
'message' => 'the commit message',
'branch' => 'master',
'tag' => nil,
'message' => 'the commit message',
'committed_at' => json_format_time(Time.now.utc - 1.hour),
'committer_name' => 'Sven Fuchs',