Attach-Stuff

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.30"
  },
  "DISTNAME" => "Attach-Stuff",
  "EXE_FILES" => [],
  "LICENSE" => "bsd",
  "NAME" => "Attach::Stuff",
  "PREREQ_PM" => {
    "Moose" => 0,
    "SVG" => 0,
    "namespace::autoclean" => 0
  },
  "TEST_REQUIRES" => {
    "Test::Pod" => 0
  },
  "VERSION" => "0.93200645424259",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "Moose" => 0,
  "SVG" => 0,
  "Test::Pod" => 0,
  "namespace::autoclean" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}

dist.ini  view on Meta::CPAN

version = 0.93200645424259
author = Timm Murray <tmurray@wumpus-cave.net>
license = BSD
copyright_holder = Timm Murray

[GatherDir]
[Manifest]
[MakeMaker]

[Prereqs]
namespace::autoclean = 0
Moose                = 0
SVG                  = 0

[Prereqs / TestRequires]
Test::Pod = 0

[MetaResources]
homepage        = http://www.wumpus-cave.net
repository.web  = https://github.com/frezik/Attach-Stuff
repository.type = git

lib/Attach/Stuff.pm  view on Meta::CPAN

# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
# POSSIBILITY OF SUCH DAMAGE.
package Attach::Stuff;

# ABSTRACT: Attach stuff to other stuff
use v5.14;
use warnings;
use Moose;
use namespace::autoclean;
use SVG;

# According to SVG spec, there are 3.543307 pixels per mm.  See:
# http://www.w3.org/TR/SVG/coords.html#Units
use constant MM_IN_PX  => 3.543307;

has 'width' => (
    is       => 'rw',
    isa      => 'Num',
    required => 1,

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.698 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )