Skip to content

Commit

Permalink
Merge pull request #4 from briandfoy/briandfoy/mojo-prereq
Browse files Browse the repository at this point in the history
Need Mojo prereq - Windows tests don't work because the minimum perl is v5.34, and strawberry perl is v5.32.
  • Loading branch information
briandfoy committed Jan 3, 2023
2 parents ca21fd3 + a1ac176 commit a12b3de
Show file tree
Hide file tree
Showing 5 changed files with 129 additions and 8 deletions.
38 changes: 38 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
Changes
examples/add_time_entry
examples/clockify_reports.sh
examples/list_projects
examples/monthly_report.pl
examples/show_project
examples/weekly_report.pl
INSTALL.SKIP
lib/Clockify.pm
lib/Clockify/Config.pm
lib/Clockify/DateTime.pm
lib/Clockify/Duration.pm
lib/Clockify/Endpoint/Client.pm
lib/Clockify/Endpoint/CustomFields.pm
lib/Clockify/Endpoint/Group.pm
lib/Clockify/Endpoint/Project.pm
lib/Clockify/Endpoint/Reports.pm
lib/Clockify/Endpoint/SharedReports.pm
lib/Clockify/Endpoint/Tag.pm
lib/Clockify/Endpoint/Task.pm
lib/Clockify/Endpoint/TimeEntries.pm
lib/Clockify/Endpoint/TimeEntry.pm
lib/Clockify/Endpoint/User.pm
lib/Clockify/Endpoint/Workspace.pm
lib/Clockify/Error.pm
lib/Clockify/UserAgent.pm
lib/Clockify/Util.pm
LICENSE
Makefile.PL
MANIFEST This list of files
MANIFEST.SKIP
README.pod
t/datetime.t
t/duration.t
t/load.t
t/pod.t
t/pod_coverage.t
t/test_manifest
80 changes: 79 additions & 1 deletion MANIFEST.SKIP
Original file line number Diff line number Diff line change
@@ -1,4 +1,82 @@
#!include_default

#!start included /usr/local/perls/perl-5.36.0/lib/5.36.0/ExtUtils/MANIFEST.SKIP
# Avoid version control files.
\bRCS\b
\bCVS\b
\bSCCS\b
,v$
\B\.svn\b
\B\.git\b
^\.github\b
\B\.gitignore\b
\b_darcs\b
\B\.cvsignore$

# Avoid VMS specific MakeMaker generated files
\bDescrip.MMS$
\bDESCRIP.MMS$
\bdescrip.mms$

# Avoid Makemaker generated and utility files.
\bMANIFEST\.bak
\bMakefile$
\bblib/
\bMakeMaker-\d
\bpm_to_blib\.ts$
\bpm_to_blib$
\bblibdirs\.ts$ # 6.18 through 6.25 generated this
\b_eumm/ # 7.05_05 and above

# Avoid Module::Build generated and utility files.
\bBuild$
\b_build/
\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# and Module::Build::Tiny generated files
\b_build_params$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$
\.tmp$
\.#
\.rej$
\..*\.sw.?$

# Avoid OS-specific files/dirs
# Mac OSX metadata
\B\.DS_Store
# Mac OSX SMB mount metadata files
\B\._
# Placeholder files created when iCloud will "optimize Mac storage"
\.i[cC]loud$

# Avoid Devel::Cover and Devel::CoverX::Covered files.
\bcover_db\b
\bcovered\b

# Avoid prove files
\B\.prove$

# Avoid MYMETA files
^MYMETA\.

# Temp files for new META
^META_new\.(?:json|yml)

# Avoid travis-ci.org file
^\.travis\.yml

# Avoid AppVeyor file
^\.?appveyor.yml
#!end included /usr/local/perls/perl-5.36.0/lib/5.36.0/ExtUtils/MANIFEST.SKIP


\.?appveyor\.yml
\.releaserc
Expand Down
10 changes: 6 additions & 4 deletions MYMETA.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"brian d foy <bdfoy@cpan.org>"
],
"dynamic_config" : 0,
"generated_by" : "ExtUtils::MakeMaker version 7.44, CPAN::Meta::Converter version 2.150010",
"generated_by" : "ExtUtils::MakeMaker version 7.64, CPAN::Meta::Converter version 2.150010",
"license" : [
"artistic_2"
],
Expand Down Expand Up @@ -32,8 +32,10 @@
"runtime" : {
"requires" : {
"Carp" : "0",
"Mojolicious" : "0",
"TOML::XS" : "0",
"Time::Piece" : "0",
"perl" : "5.032"
"perl" : "5.034"
}
},
"test" : {
Expand All @@ -50,10 +52,10 @@
"homepage" : "https://github.com/briandfoy/clockify",
"repository" : {
"type" : "git",
"url" : "https://github.com/briandfoy/clockify.git",
"url" : "https://github.com/briandfoy/clockify",
"web" : "https://github.com/briandfoy/clockify"
}
},
"version" : "0.001_01",
"x_serialization_backend" : "JSON::PP version 4.04"
"x_serialization_backend" : "JSON::PP version 4.07"
}
8 changes: 5 additions & 3 deletions MYMETA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ configure_requires:
ExtUtils::MakeMaker: '6.64'
File::Spec::Functions: '0'
dynamic_config: 0
generated_by: 'ExtUtils::MakeMaker version 7.44, CPAN::Meta::Converter version 2.150010'
generated_by: 'ExtUtils::MakeMaker version 7.64, CPAN::Meta::Converter version 2.150010'
license: artistic_2
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand All @@ -20,11 +20,13 @@ no_index:
- inc
requires:
Carp: '0'
Mojolicious: '0'
TOML::XS: '0'
Time::Piece: '0'
perl: '5.032'
perl: '5.034'
resources:
bugtracker: https://github.com/briandfoy/clockify/issues
homepage: https://github.com/briandfoy/clockify
repository: https://github.com/briandfoy/clockify.git
repository: https://github.com/briandfoy/clockify
version: 0.001_01
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
1 change: 1 addition & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ my %WriteMakefile = (

'PREREQ_PM' => {
'Carp' => '0',
'Mojolicious' => '0',
'Time::Piece' => '0',
'TOML::XS' => '0',
},
Expand Down

0 comments on commit a12b3de

Please sign in to comment.