aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/artifact
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/program/aedifex/artifact.lux16
-rw-r--r--stdlib/source/program/aedifex/artifact/extension.lux6
-rw-r--r--stdlib/source/program/aedifex/artifact/type.lux4
3 files changed, 13 insertions, 13 deletions
diff --git a/stdlib/source/program/aedifex/artifact.lux b/stdlib/source/program/aedifex/artifact.lux
index e4fe812f1..6ba0a1e48 100644
--- a/stdlib/source/program/aedifex/artifact.lux
+++ b/stdlib/source/program/aedifex/artifact.lux
@@ -45,28 +45,28 @@
Text
<separator>)]
- ["." group-separator]
- ["-" version-separator]
- [":" identity-separator]
+ ["." group_separator]
+ ["-" version_separator]
+ [":" identity_separator]
)
(def: #export (identity artifact)
(-> Artifact Text)
(%.format (get@ #name artifact)
- ..version-separator
+ ..version_separator
(get@ #version artifact)))
(def: #export (format value)
(Format Artifact)
(%.format (get@ #group value)
- ..identity-separator
+ ..identity_separator
(..identity value)))
(def: #export (directory separator group)
(-> Text Group Text)
(|> group
- (text.split-all-with ..group-separator)
- (text.join-with separator)))
+ (text.split_all_with ..group_separator)
+ (text.join_with separator)))
(def: (address separator artifact)
(-> Text Artifact Text)
@@ -91,6 +91,6 @@
(-> Artifact (List Text))
(list\compose (|> artifact
(get@ #group)
- (text.split-all-with ..group-separator))
+ (text.split_all_with ..group_separator))
(list (get@ #name artifact)
(get@ #version artifact))))
diff --git a/stdlib/source/program/aedifex/artifact/extension.lux b/stdlib/source/program/aedifex/artifact/extension.lux
index e108a3727..ad0122512 100644
--- a/stdlib/source/program/aedifex/artifact/extension.lux
+++ b/stdlib/source/program/aedifex/artifact/extension.lux
@@ -20,15 +20,15 @@
(def: #export type
(-> Extension //.Type)
- (text.replace-all ..separator ""))
+ (text.replace_all ..separator ""))
(template [<name>]
[(def: #export <name>
Extension
(..extension (template.identifier [//._] [<name>])))]
- [lux-library]
- [jvm-library]
+ [lux_library]
+ [jvm_library]
[pom]
[sha-1]
[md5]
diff --git a/stdlib/source/program/aedifex/artifact/type.lux b/stdlib/source/program/aedifex/artifact/type.lux
index 5e5772ea2..5c9ba8bb2 100644
--- a/stdlib/source/program/aedifex/artifact/type.lux
+++ b/stdlib/source/program/aedifex/artifact/type.lux
@@ -10,8 +10,8 @@
Type
<type>)]
- ["tar" lux-library]
- ["jar" jvm-library]
+ ["tar" lux_library]
+ ["jar" jvm_library]
["pom" pom]
["sha1" sha-1]
["md5" md5]