NAME
Faker::Plugin::SoftwareSemver - Software Semver
ABSTRACT
Software Semver for Faker
VERSION
1.16
SYNOPSIS
package main;
use Faker::Plugin::SoftwareSemver;
my $plugin = Faker::Plugin::SoftwareSemver->new;
# bless(..., "Faker::Plugin::SoftwareSemver")
DESCRIPTION
This package provides methods for generating fake data for software semver.
INHERITS
This package inherits behaviors from:
METHODS
This package provides the following methods:
execute
execute(HashRef $data) (Str)
The execute method returns a returns a random fake software semver.
Since 1.10
- execute example 1
-
package main; use Faker::Plugin::SoftwareSemver; my $plugin = Faker::Plugin::SoftwareSemver->new; # bless(..., "Faker::Plugin::SoftwareSemver") # my $result = $plugin->execute; # "1.4.0"; # my $result = $plugin->execute; # "4.6.8"; # my $result = $plugin->execute; # "5.0.7";
new
new(HashRef $data) (Plugin)
The new method returns a new instance of the class.
Since 1.10