Skip to content

Commit 73db675

Browse files
committed
Packages removed from project and .gitignore polished
1 parent a498654 commit 73db675

File tree

23 files changed

+9
-6313
lines changed

23 files changed

+9
-6313
lines changed

APLSource/GitHubAPIv3.aplc

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
∇ r←Version
1818
:Access Public Shared
19-
r←'GitHub' '0.7.0+23' '2020-03-17'
19+
r←'GitHub' '0.7.0+24' '2020-03-17'
2020
2121

2222
∇ History
@@ -176,10 +176,14 @@
176176
⍝ Returns all issues for a given repository
177177
gitPath←'https://api.github.com/repos/',(_owner),'/',repoName,'/issues'
178178
(rc msg ns)←GetJson gitPath
179-
:If 0≠≢ns
179+
:If ∨/'(404)'⍷∊msg
180+
msg←'Not found'
181+
ns←''
182+
:ElseIf 0=rc
183+
:AndIf 0≠≢ns
180184
ns.{⎕DF'[Issues of repo ',⍵,']'}⊂repoName
181185
ns.⎕FX⊂⎕CR'∆List'
182-
ns.⎕FX⊂'r←∆Details instance' 'r←∆List' 'r(instance.GetPrinciple)←''assignees'' ''login''' 'r(instance.GetPrinciple)←''labels'' ''name'''
186+
ns.⎕FX⊂'r←∆Details instance' 'r←∆List' ' :If 0<≢instance' 'r(instance.GetPrinciple)←''assignees'' ''login''' 'r(instance.GetPrinciple)←''labels'' ''name''' ':EndIf'
183187
ns.⎕FX⊂'r←∆QuickView instance;keyWords' 'r←∆Details instance' 'keyWords←''title'' ''number'' ''state'' ''updated_at'' ''labels'' ''assignees''' 'r←(r[;1]∊keyWords)⌿r' 'r←r[⍋keyWords⍳r[;1];]'
184188
:EndIf
185189

apl-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ api: "GitHubAPIv3", assets: "", description: "Utilities for dealing with GitHub repositories", group: "aplteam", info_url: "https://github.com/aplteam/GitHubAPIv3", name: "GitHubAPIv3", source: "GitHubAPIv3.aplc", tags: "github-utilities;windows;mac-os;linux;dyalog-apl", version: "0.7.0+23",}
1+
{ api: "GitHubAPIv3", assets: "", description: "Utilities for dealing with GitHub repositories", group: "aplteam", info_url: "https://github.com/aplteam/GitHubAPIv3", name: "GitHubAPIv3", source: "GitHubAPIv3.aplc", tags: "github-utilities;windows;mac-os;linux;dyalog-apl", version: "0.7.0+24",}

cider.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ CIDER: { info_url: "https://github.com/aplteam/GitHubAPIv3", init: "", make: "Admin.Make 1", parent: "#", projectSpace: "GitHubAPIv3", source: "APLSource", tatinFolder: "packages,packages_dev=TestCases", tests: "TestCases.RunTests", }, LINK: { arrays: 0, beforeRead: "", beforeWrite: "", caseCode: 0, codeExtensions: [ "aplf", "aplo", "apln", "aplc", "apli", "dyalog", "apl", "mipage", ], fastLoad: 0, flatten: 0, forceExtensions: 0, forceFilenames: 1, getFilename: "", typeExtensions: [ [ 2, "apla", ], [ 3, "aplf", ], [ 4, "aplo", ], [ 9.1, "apln", ], [ 9.4, "aplc", ], [ 9.5, "apli", ], ], watch: "ns", }, SYSVARS: { io: 1, ml: 1, }, USER: { },}
1+
{ CIDER: { githubUsername: "aplteam", info_url: "https://github.com/aplteam/GitHubAPIv3", init: "", make: "Admin.Make 1", parent: "#", projectSpace: "GitHubAPIv3", source: "APLSource", tatinFolder: "packages,packages_dev=TestCases", tests: "TestCases.RunTests", }, LINK: { arrays: 0, beforeRead: "", beforeWrite: "", caseCode: 0, codeExtensions: [ "aplf", "aplo", "apln", "aplc", "apli", "dyalog", "apl", "mipage", ], fastLoad: 0, flatten: 0, forceExtensions: 0, forceFilenames: 1, getFilename: "", typeExtensions: [ [ 2, "apla", ], [ 3, "aplf", ], [ 4, "aplo", ], [ 9.1, "apln", ], [ 9.4, "aplc", ], [ 9.5, "apli", ], ], watch: "ns", }, SYSVARS: { io: 1, ml: 1, }, USER: { },}

0 commit comments

Comments
 (0)