File Coverage

blib/lib/Group/Git/Taggers/Ruby.pm
Criterion Covered Total %
statement 21 23 91.3
branch n/a
condition n/a
subroutine 7 8 87.5
pod 1 1 100.0
total 29 32 90.6


line stmt bran cond sub pod time code
1             package Group::Git::Taggers::Ruby;
2              
3             # Created on: 2015-05-15 07:10:21
4             # Create by: Ivan Wills
5             # $Id$
6             # $Revision$, $HeadURL$, $Date$
7             # $Revision$, $Source$, $Date$
8              
9 1     1   46956 use Moo;
  1         29462  
  1         8  
10 1     1   3225 use strict;
  1         3  
  1         25  
11 1     1   4 use warnings;
  1         8  
  1         75  
12 1     1   989 use namespace::autoclean;
  1         26688  
  1         5  
13 1     1   1159 use version;
  1         4325  
  1         8  
14 1     1   90 use Carp;
  1         1  
  1         88  
15 1     1   866 use English qw/ -no_match_vars /;
  1         6009  
  1         11  
16              
17             extends 'Group::Git::Taggers';
18              
19             our $VERSION = version->new('0.0.2');
20              
21             sub match {
22 0     0 1   my ($self, $project) = @_;
23              
24 0           return -f 'Gemfile';
25             }
26              
27             __PACKAGE__->meta->make_immutable;
28              
29             1;
30              
31             __END__
32              
33             =head1 NAME
34              
35             Group::Git::Taggers::Ruby - Tags repositories as containing Ruby code for Group::Git
36              
37             =head1 VERSION
38              
39             This documentation refers to Group::Git::Taggers::Ruby version 0.0.2
40              
41             =head1 SYNOPSIS
42              
43             use Group::Git::Taggers::Ruby;
44              
45             # Brief but working code example(s) here showing the most common usage(s)
46             # This section will be as far as many users bother reading, so make it as
47             # educational and exemplary as possible.
48              
49              
50             =head1 DESCRIPTION
51              
52             Looks at a repository and determines if it is a Ruby repository based weather
53             it contains a Gemfile file
54              
55             =head1 SUBROUTINES/METHODS
56              
57             =head2 C<match ()>
58              
59             Returns true if the repository contains a C<Gemfile> file.
60              
61             =head1 DIAGNOSTICS
62              
63             =head1 CONFIGURATION AND ENVIRONMENT
64              
65             =head1 DEPENDENCIES
66              
67             =head1 INCOMPATIBILITIES
68              
69             =head1 BUGS AND LIMITATIONS
70              
71             There are no known bugs in this module.
72              
73             Please report problems to Ivan Wills (ivan.wills@gmail.com).
74              
75             Patches are welcome.
76              
77             =head1 AUTHOR
78              
79             Ivan Wills - (ivan.wills@gmail.com)
80              
81             =head1 LICENSE AND COPYRIGHT
82              
83             Copyright (c) 2015 Ivan Wills (14 Mullion Close, Hornsby Heights, NSW Australia 2077).
84             All rights reserved.
85              
86             This module is free software; you can redistribute it and/or modify it under
87             the same terms as Perl itself. See L<perlartistic>. This program is
88             distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
89             without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
90             PARTICULAR PURPOSE.
91              
92             =cut