Skip to content

Commit 2a6a002

Browse files
author
flip phillips
committed
renaming, version support, paclet mgmt
1 parent dc07d37 commit 2a6a002

File tree

9 files changed

+32
-17
lines changed

9 files changed

+32
-17
lines changed

Development/Paclets.nb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:05bbeb32a68fbd95d624e9d962369541485671bb1f0f8346f4ce28e2f8efc7dd
3+
size 43274

Development/version.nb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:664d07bbda312917e689eec4546e74e399c3f896a13b2b3feb4fb4e41b760ec0
3-
size 24285
2+
oid sha256:6b84fa271ad8c74cdf70c0f5f81b663dd637fa26a7aac86ff188833d925ac43a
3+
size 37687
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:57c6610bb4fcc30bfaa39ed7c42e0ac7b8ac1401ff4bbe4447c801e54bf25163
3+
size 52005

FPTools/Documentation/icon.png

Lines changed: 3 additions & 0 deletions
Loading

FPTools/Introspection.wl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Spelunk[s_String] := CellPrint[fancydefinition[#] &@ToExpression[s, InputForm, U
5757
SetAttributes[{defboxes, fancydefinition, Spelunk}, HoldFirst]
5858

5959

60-
PropertiesInfo[thing_] := Module[{props,not},
60+
PropertiesInformation[thing_] := Module[{props,not},
6161
(* not = Pick[thing["Properties"],
6262
Quiet@Check[thing[#], Missing[#]] & /@
6363
thing["Properties"], _Missing |
@@ -78,6 +78,6 @@ PropertiesDataset[thing_] := Module[{t, u},
7878
If[
7979
Length[u = Union[t]] == 1, <|"Head"->Head[t], "Shape"->Length[t], "Value"->u|>,
8080
<|"Head"->Head[t],"Shape"->Dimensions[t], "Value"->Short[t]|>]]|> & /@
81-
PropertiesInfo[thing]["Available"]]]
81+
PropertiesInformation[thing]["Available"]]]
8282

83-
SetAttributes[{PropertiesInfo, PropertiesDataset}, HoldFirst]
83+
SetAttributes[{PropertiesInformation, PropertiesDataset}, HoldFirst]

FPTools/Kernel/init.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Get["FPTools`FPTools`"]

FPTools/PacletInfo.m

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
11
Paclet[
22
Name -> "FPTools",
3-
Description -> "Tools I use for a variety of introspection, debugging, etc.",
4-
Creator -> "Flip Phillips",
3+
Description -> "Tools for introspection, debugging, syntatic sugar, etc.",
4+
Creator -> "Flip Phillips <[email protected]>",
55
Publisher -> "Skidmore Vision Lab",
6-
Version -> "0.1.4",
7-
BuildNumber -> "8",
6+
Copyright -> "©2018- Flip Phillips & Misc Contributors",
7+
License -> "MIT",
8+
Version -> "0.1.5",
9+
BuildNumber -> "21",
810
MathematicaVersion -> "11.2+",
11+
URL -> "https://github.com/flipphillips/FPTools",
12+
Thumbnail -> "Documentation/icon.png",
913
Loading -> Automatic,
1014
Extensions -> {
11-
(* { "Documentation", MainPage -> "Guides/FPTools", Language -> "English"}, *)
15+
{ "Documentation",
16+
MainPage -> "Guides/FPTools",
17+
Language -> "English"},
1218
{ "Kernel",
13-
Symbols -> {
14-
"FPTools`Spelunk","FPTools`PropertiesInfo","FPTools`PropertiesDataset",
19+
Symbols -> {
20+
"FPTools`Spelunk","FPTools`PropertiesInformation","FPTools`PropertiesDataset",
1521

1622
"FPTools`EntityPropertiesDataset","FPTools`ConceptBroaden","FPTools`ConceptDistance",
1723

FPTools/Usage.wl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
(* Introspection *)
44
Spelunk::usage = "Spelunk[symbol] will discover the definition of symbol. Underlined symbols in the output are clickable.";
5-
PropertiesInfo::usage = "PropertiesInfo[symbol] returns the {available, unavailable} properties for symbol.";
5+
PropertiesInformation::usage = "PropertiesInfo[symbol] returns the {available, unavailable} properties for symbol.";
66
PropertiesDataset::usage = "PropertiesDataset[symbol] returns a TableForm of the available properties for symbol.";
77

8-
98
(* Entity *)
109
EntityPropertiesDataset::usage = "EntityPropertiesDataset[entity] does its best to list all the properties associated with the entity object supplied.";
1110
ConceptBroaden::usage = "ConceptBroaden[entity,depth] recursively climbs the Concept hierarchy until it hits the terminal Concept 'Entity' or after depth dives. Returns a list of Broader Concepts at each level.";

version.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "FPTools",
33
"major_version": 0,
44
"minor_version": 1,
5-
"revision_number": 4,
6-
"build_number": 20,
7-
"date": "Sun Mar 11 22:24:06 EDT 2018"
5+
"revision_number": 5,
6+
"build_number": 29,
7+
"date": "Thu Mar 15 19:43:10 EDT 2018"
88
}

0 commit comments

Comments
 (0)