Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
aac440f
Convert tabs to spaces
kablamo Oct 30, 2014
fa6586d
Convert tabs to spaces
kablamo Oct 30, 2014
a29ad91
Convert tabs to spaces
kablamo Oct 30, 2014
ed21bc5
Started work on v2 of the api. The ManagedDomain obj has basic stuff…
kablamo Nov 5, 2014
a50899d
Minor changes to t/01-sandbox.t
kablamo Nov 5, 2014
eaf9024
Minor change unfinished v1 code to make it compile
kablamo Nov 5, 2014
1b422c5
Added WWW::DME::ManagedDomain::Record which mostly works. +tests
kablamo Nov 6, 2014
0603f15
Updated pod
kablamo Nov 6, 2014
b50f871
Cleanup tests
kablamo Nov 6, 2014
d64b63e
Bug fixes, more tests, added as_hashref() to v2 objects.
kablamo Nov 7, 2014
fd3d826
Tests and bug fixes for v1 objects
kablamo Nov 7, 2014
c20dce8
Added WWW::DNSMadeEasy::Monitor +tests
kablamo Nov 14, 2014
9189479
Woops uncomment subtests
kablamo Nov 14, 2014
3dc3b2c
Renamed WWW::DME::ManagedDomain::Record->monitor() to get_monitor().
kablamo Nov 14, 2014
40b1e92
Added links in the pod to the api docs
kablamo Nov 14, 2014
b23932f
Uncomment tests again
kablamo Nov 14, 2014
e837c50
Minor bug fix for DME::ManagedDomain->records()
kablamo Nov 20, 2014
1823ca5
Updated dist.ini to use @Author::GETTY
kablamo Mar 1, 2015
162a0da
Added no_changelog_from_git=1 to dist.ini
kablamo Mar 1, 2015
2a17c5a
Added .travis.yml
kablamo Mar 1, 2015
be44ae6
Fancify t/00-load.t with Test::LoadAllModules
kablamo Mar 12, 2015
e46728e
Added Test::LoadAllModules to dist.ini
kablamo Mar 12, 2015
9fdc35b
Revert "Fancify t/00-load.t with Test::LoadAllModules"
kablamo Mar 14, 2015
dc9e6dd
Revert "Added Test::LoadAllModules to dist.ini"
kablamo Mar 14, 2015
a86c156
Added Data::Printer to dist.ini
kablamo Mar 14, 2015
199a620
rm extra whitespace
kablamo Mar 15, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
before_install:
- export HARNESS_OPTIONS=j10:c HARNESS_TIMER=1
- rm .travis.yml
- git config --global user.name "Dist Zilla Plugin TravisCI"
- git config --global user.email $HOSTNAME":[email protected]"
install:
- cpanm --quiet --notest --skip-installed Dist::Zilla
- dzil authordeps | grep -ve '^\W' | xargs -n 5 -P 10 cpanm --quiet --notest --skip-installed
- dzil listdeps | grep -ve '^\W' | cpanm --quiet --notest --skip-installed
language: perl
perl:
- '5.20'
- '5.18'
- '5.16'
- '5.14'
- '5.12'
- '5.10'
script:
- dzil smoke --release --author
6 changes: 5 additions & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ license = Perl_5
copyright_holder = L<Raudssus Social Software|http://www.raudssus.de/>
copyright_year = 2012

[@GETTY]
[@Author::GETTY]
no_changelog_from_git=1

[Prereqs]
Moo = 0.009013
Expand All @@ -14,6 +15,9 @@ URI = 1.58
Digest::HMAC = 1.03
DateTime = 0
DateTime::Format::HTTP = 0.40
Data::Printer = 0.35
String::CamelSnakeKebab = 0.03

[Prereqs / TestRequires]
Test::More = 0.90
Test::Most = 0.34
Loading