Bug Reporting and Feature Request Tracking on GitHub


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Bug Reporting and Feature Request Tracking on GitHub
# 1  
Old 04-05-2019
Dear All,

I created a "new public repo" on GitHub (without the code for now but will post the code there as needed if anyone wants to fix a bug)

You can report any forum bugs and report issues in the GitHub "Issues Tab" for this repo here:

Code:
https://github.com/unixneo/unix.com.bugtracker

To report bugs, create issues, update the code wiki, etc, you will need a GitHub account.

FYI, all our code base on this site is managed in private repos on GitHub and has been that way for a few months now.

Cheers and Thanks.

Image
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Get data from GitHub using Curl

Dear friends, I am working on a bash script to get data from the github by hitting the API using curl and this is quite straight forward. However the authentication mechanism we have in our github servers makes this intricate. Here is the situation : * The github uses SSO / SAML / opensso... (0 Replies)
Discussion started by: Kochappa
0 Replies

2. Shell Programming and Scripting

Newbie question: modulo operator with negative operand, bug or feature?

Hi, I'm new to the Ash shell so my apologies if this is well known. In normal maths and other shells and languages I've used, the modulo operator always returns a positive remainder. For example see this discussion (first post so I can't hyperlink it): ... (11 Replies)
Discussion started by: FleetFoot
11 Replies

3. UNIX for Dummies Questions & Answers

GitHub documentation :: GitHub for dummies

Hi I wish to "develop" for brew. It is hosted on GitHub. What book (or online documentation) do you recommend me for GitHub and/or Git? Prefer small physical book. (1 Reply)
Discussion started by: slashdotweenie
1 Replies
Login or Register to Ask a Question
Class::Meta::Types::Perl(3pm)				User Contributed Perl Documentation			     Class::Meta::Types::Perl(3pm)

NAME
Class::Meta::Types::Perl - Perl data types SYNOPSIS
package MyApp::Thingy; use strict; use Class::Meta; use Class::Meta::Types::Perl; # OR... # use Class::Meta::Types::Perl 'affordance'; # OR... # use Class::Meta::Types::Perl 'semi-affordance'; BEGIN { # Create a Class::Meta object for this class. my $cm = Class::Meta->new( key => 'thingy' ); # Add an integer attribute. $cm->add_attribute( name => 'my_hash', type => 'hash' ); $cm->build; } DESCRIPTION
This module provides Perl data types for use with Class::Meta attributes. Simply load it, then pass the name of one of its types to the "add_attribute()" method of a Class::Meta object. See Class::Meta::Type for more information on using and creating data types. The validation checks for Class::Meta::Types::Perl are provided by the Class::Meta::Type's support for object type validation, since Perl data types are understood by "UNIVERSAL::isa()". The data types created by Class::Meta::Types::Perl are: scalar A simple scalar value. This can be anything, and has no validation checks. scalarref A scalar reference. "UNIVERSAL::isa()" must return 'SCALAR'. array arrayref A array reference. "UNIVERSAL::isa()" must return 'ARRAY'. hash hashref A hash reference. "UNIVERSAL::isa()" must return 'HASH'. code coderef closure A code reference. Also known as a closure. "UNIVERSAL::isa()" must return 'CODE'. SUPPORT
This module is stored in an open GitHub repository <http://github.com/theory/class-meta/>. Feel free to fork and contribute! Please file bug reports via GitHub Issues <http://github.com/theory/class-meta/issues/> or by sending mail to bug-Class-Meta.cpan.org <mailto:bug-Class-Meta.cpan.org>. AUTHOR
David E. Wheeler <david@justatheory.com> SEE ALSO
Other classes of interest within the Class::Meta distribution include: Class::Meta This class contains most of the documentation you need to get started with Class::Meta. Class::Meta::Type This class manages the creation of data types. Class::Meta::Attribute This class manages Class::Meta class attributes, all of which are based on data types. Other data type modules: Class::Meta::Types::String Class::Meta::Types::Boolean Class::Meta::Types::Numeric COPYRIGHT AND LICENSE
Copyright (c) 2002-2011, David E. Wheeler. Some Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.4 2011-08-06 Class::Meta::Types::Perl(3pm)