Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 8b283a5

Browse files
backup current status
1 parent 8946c27 commit 8b283a5

19 files changed

+1163
-70
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
.vstags
22
**/*.bak
3-
**/*.tdy
3+
**/*.tdy
4+
MANIFEST
5+
MANIFEST.bak
6+
blib
7+
cover_db
8+
pm_to_blib

Changes

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
Revision history for Perl extension HEXONET::apiconnector.
1+
Revision history for Perl extension HEXONET::Apiconnector.
22

33
1.00 Thu Jul 19 14:37:00 2018
44
* reviewed version; based on http://www.perltk.de/tk_widgets/ghowto_create_cpan_module.html
55
* added sdk documentation and generator script
6+
* added automated tests and coverage reporting
7+
* added code linting
8+
* fixed POD documentation: abstract_from works now
9+
* switch from MANIFEST to MANIFEST.SKIP
610

711
0.01 Wed Jul 18 15:41:52 2018
812
- original version; created by h2xs 1.23 with options
9-
-b 5.26.0 -XA -n HEXONET::apiconnector
13+
-b 5.26.0 -XA -n HEXONET::Apiconnector
1014

MANIFEST.SKIP

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
############################################################################################
2+
# Lifted from ExtUtils::MANIFEST #
3+
# ref: https://metacpan.org/source/ETHER/ExtUtils-Manifest-1.70/lib/ExtUtils/MANIFEST.SKIP #
4+
############################################################################################
5+
6+
# Avoid version control files.
7+
\bRCS\b
8+
\bCVS\b
9+
\bSCCS\b
10+
,v$
11+
\B\.svn\b
12+
\B\.git\b
13+
\B\.gitignore\b
14+
\b_darcs\b
15+
\B\.cvsignore$
16+
17+
# Avoid VMS specific MakeMaker generated files
18+
\bDescrip.MMS$
19+
\bDESCRIP.MMS$
20+
\bdescrip.mms$
21+
22+
# Avoid Makemaker generated and utility files.
23+
\bMANIFEST\.bak
24+
\bMakefile$
25+
\bblib/
26+
\bMakeMaker-\d
27+
\bpm_to_blib\.ts$
28+
\bpm_to_blib$
29+
\bblibdirs\.ts$ # 6.18 through 6.25 generated this
30+
\b_eumm/ # 7.05_05 and above
31+
32+
# Avoid Module::Build generated and utility files.
33+
\bBuild$
34+
\b_build/
35+
\bBuild.bat$
36+
\bBuild.COM$
37+
\bBUILD.COM$
38+
\bbuild.com$
39+
40+
# and Module::Build::Tiny generated files
41+
\b_build_params$
42+
43+
# Avoid temp and backup files.
44+
~$
45+
\.old$
46+
\#$
47+
\b\.#
48+
\.bak$
49+
\.tmp$
50+
\.#
51+
\.rej$
52+
\..*\.sw.?$
53+
54+
# Avoid OS-specific files/dirs
55+
# Mac OSX metadata
56+
\B\.DS_Store
57+
# Mac OSX SMB mount metadata files
58+
\B\._
59+
60+
# Avoid Devel::Cover and Devel::CoverX::Covered files.
61+
\bcover_db\b
62+
\bcovered\b
63+
64+
# Avoid prove files
65+
\B\.prove$
66+
67+
# Avoid MYMETA files
68+
^MYMETA\.
69+
70+
#########################################################################
71+
# My own additions #
72+
# ref: https://gist.github.com/jonasbn/aa6646544f2233de39f34c49532215ad #
73+
#########################################################################
74+
75+
# Avoid archives of perl distribution
76+
-[\d\.\_]+\.tar
77+
-[\d\.\_]+\.tar\.gz
78+
79+
# Github files
80+
\.travis\.yml
81+
82+
# Komodo files
83+
\.komodoproject
84+
\.kpf
85+
86+
# SublimeText 2/3 files
87+
\.sublime-project
88+
\.sublime-workspace
89+
90+
# Perl::Tidy error files
91+
\bperltidy\.ERR
92+
93+
# Jekyll github pages files
94+
_config\.yml
95+
^assets
96+
README\.mkdn
97+
README\.md
98+
CONTRIBUTING\.md
99+
CODE_OF_CONDUCT\.md
100+
^\.github/
101+
102+
# Avoid directory and files generated by carton
103+
^local/
104+
105+
# Project files
106+
^prototypes/
107+
108+
# visual studio code
109+
\.vstags

MYMETA.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"abstract" : "Connector library for the insanely fast L<HEXONET Backend API|https://www.hexonet.net/>.",
3+
"author" : [
4+
"hexonet <[email protected]>"
5+
],
6+
"dynamic_config" : 0,
7+
"generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010",
8+
"license" : [
9+
"mit"
10+
],
11+
"meta-spec" : {
12+
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
13+
"version" : "2"
14+
},
15+
"name" : "HEXONET-Apiconnector",
16+
"no_index" : {
17+
"directory" : [
18+
"t",
19+
"inc"
20+
]
21+
},
22+
"prereqs" : {
23+
"build" : {
24+
"requires" : {
25+
"ExtUtils::MakeMaker" : "0"
26+
}
27+
},
28+
"configure" : {
29+
"requires" : {
30+
"ExtUtils::MakeMaker" : "0"
31+
}
32+
},
33+
"runtime" : {
34+
"requires" : {}
35+
}
36+
},
37+
"release_status" : "stable",
38+
"version" : "1.00",
39+
"x_serialization_backend" : "JSON::PP version 2.27400_02"
40+
}

MYMETA.json.lock

Whitespace-only changes.

MYMETA.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
abstract: 'Connector library for the insanely fast L<HEXONET Backend API|https://www.hexonet.net/>.'
3+
author:
4+
- 'hexonet <[email protected]>'
5+
build_requires:
6+
ExtUtils::MakeMaker: '0'
7+
configure_requires:
8+
ExtUtils::MakeMaker: '0'
9+
dynamic_config: 0
10+
generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010'
11+
license: mit
12+
meta-spec:
13+
url: http://module-build.sourceforge.net/META-spec-v1.4.html
14+
version: '1.4'
15+
name: HEXONET-Apiconnector
16+
no_index:
17+
directory:
18+
- t
19+
- inc
20+
requires: {}
21+
version: '1.00'
22+
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

0 commit comments

Comments
 (0)