Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

software::release::change(3pm) [debian man page]

Software::Release::Change(3pm)				User Contributed Perl Documentation			    Software::Release::Change(3pm)

NAME
Software::Release::Change - A change made in a software release. VERSION
version 0.02 SYNOPSIS
use DateTime; use Software::Release::Change; my $change = Software::Release::Change->new( author_name => 'gphat', author_email => 'gphat@cpan.org', change_id => 'abc1234', date => DateTime->now, description => 'Frozzled the wozjob' ); DESCRIPTION
Software::Release::Change represents a single change made in a software release. ATTRIBUTES
author_email The author's email address author_name The author's name change_id The id of the change. committer_email The committer's email address committer_name The committer's name date The date description The description of the change. AUTHOR
Cory G Watson <gphat@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Infinity Interactive, Inc. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.12.4 2011-10-16 Software::Release::Change(3pm)

Check Out this Related Man Page

Git::Repository::Log(3pm)				User Contributed Perl Documentation				 Git::Repository::Log(3pm)

NAME
Git::Repository::Log - Class representing git log data SYNOPSIS
# load the Log plugin use Git::Repository 'Log'; # get the log for last commit my ($log) = Git::Repository->log( '-1' ); # get the author's email print my $email = $log->author_email; DESCRIPTION
"Git::Repository::Log" is a class whose instances reprensent log items from a git log stream. CONSTRUCTOR
This method shouldn't be used directly. "Git::Repository::Log::Iterator" should be the preferred way to create "Git::Repository::Log" objects. new( @args ) Create a new "Git::Repository::Log" instance, using the list of key/values passed as parameters. The supported keys are (from the output of "git log --pretty=raw"): commit The commit id (ignore the extra information added by --decorate). tree The tree id. parent The parent list, separated by spaces. author The author information. committer The committer information. message The log message (including the 4-space indent normally output by git log). extra Any extra text that might be added by extra options passed to git log. ACCESSORS
The following accessors methods are recognized. They all return scalars, except for "parent()", which returns a list. Commit information commit tree parent Author and committer information author committer The original author/committer line author_name committer_name author_email committer_email Date information author_gmtime committer_gmtime author_localtime committer_localtime author_tz committer_tz Log information raw_message The log message with the 4-space indent output by git log. message The unindented version of the log message. subject body Extra information extra AUTHOR
Philippe Bruhat (BooK), "<book at cpan.org>" COPYRIGHT
Copyright 2010 Philippe Bruhat (BooK), all rights reserved. LICENSE
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2011-12-28 Git::Repository::Log(3pm)
Man Page