Codebase list libjira-client-perl / 56739c7
Fix spelling errors Also, remove the TODO file since the module is deprecated. Issue: https://github.com/gnustavo/JIRA-Client/issues/10 Gustavo L. de M. Chaves 7 years ago
2 changed file(s) with 3 addition(s) and 10 deletion(s). Raw diff Collapse all Expand all
+0
-7
TODO less more
0 - Implement some non-API methods from
1 http://code.google.com/p/jira4r/source/browse/trunk/lib/jira4r/jira_tool.rb.
2
3 - Implement a CLI tool like
4 http://confluence.atlassian.com/display/JIRAEXT/JIRA+Command+Line+Interface
5 or http://confluence.atlassian.com/display/JIRAEXT/JIRA+CLI as a
6 proof-of-concept usage example.
985985
986986 =back
987987
988 The method retuns the value returned by the
988 The method returns the value returned by the
989989 B<addBase64EncodedAttachmentsToIssue> API method.
990990
991991 In the example below, we attach three files to the issue TST-1. The
992992 first is called C<file1.txt> and its contents are read from
993993 C</path/to/file1.txt>. The second is called C<text.txt> and its
994994 contents are read from C</path/to/file2.txt>. the third is called
995 C<me.jpg> and its contents are read from the object refered to by
995 C<me.jpg> and its contents are read from the object referred to by
996996 C<$fh>.
997997
998998 $jira->attach_files_to_issue('TST-1',
10701070 attachments are specified by a HASHREF in which the keys denote the
10711071 file names and the values their contents.
10721072
1073 The method retuns the value returned by the
1073 The method returns the value returned by the
10741074 B<addBase64EncodedAttachmentsToIssue> API method.
10751075
10761076 =cut