aboutsummaryrefslogtreecommitdiff
path: root/lux-ruby
diff options
context:
space:
mode:
authorEduardo Julian2021-10-09 04:17:44 -0400
committerEduardo Julian2021-10-09 04:17:44 -0400
commitf29d0644f15e6548af6d015ef9bb60eb6f846329 (patch)
tree1985737bbfa9846d7defcb0af95a88e092866f69 /lux-ruby
parent30100903886160f8e187e8da4a7d4c9cafe6c50e (diff)
Fixed packaging issue.
Diffstat (limited to 'lux-ruby')
-rw-r--r--lux-ruby/commands.md2
-rw-r--r--lux-ruby/project.clj4
-rw-r--r--lux-ruby/project.lux29
3 files changed, 21 insertions, 14 deletions
diff --git a/lux-ruby/commands.md b/lux-ruby/commands.md
index 2b2be3a06..f5439ea64 100644
--- a/lux-ruby/commands.md
+++ b/lux-ruby/commands.md
@@ -34,6 +34,6 @@ cd ~/lux/stdlib/ \
```
cd ~/lux/lux-ruby/ \
-&& mvn install:install-file -Dfile=target/program.jar -DgroupId=com.github.luxlang -DartifactId=lux-ruby -Dversion=0.6.0-SNAPSHOT -Dpackaging=jar
+&& mvn install:install-file -Dfile=target/program.jar -DgroupId=com.github.luxlang -DartifactId=lux-ruby -Dversion=0.7.0-SNAPSHOT -Dpackaging=jar
```
diff --git a/lux-ruby/project.clj b/lux-ruby/project.clj
index f689a8c33..80ddde6d3 100644
--- a/lux-ruby/project.clj
+++ b/lux-ruby/project.clj
@@ -1,4 +1,4 @@
-(def version "0.6.0")
+(def version "0.6.2")
(def repo "https://github.com/LuxLang/lux")
(def sonatype-releases "https://oss.sonatype.org/service/local/staging/deploy/maven2/")
(def sonatype-snapshots "https://oss.sonatype.org/content/repositories/snapshots/")
@@ -6,7 +6,7 @@
(defproject com.github.luxlang/lux-ruby #=(identity version)
:description "A Ruby compiler for Lux."
:url ~repo
- :license {:name "Lux License v0.1.1"
+ :license {:name "Lux License v0.1.2"
:url ~(str repo "/blob/master/license.txt")}
:scm {:name "git"
:url ~(str repo ".git")}
diff --git a/lux-ruby/project.lux b/lux-ruby/project.lux
index ab142f3c4..a7b17ec98 100644
--- a/lux-ruby/project.lux
+++ b/lux-ruby/project.lux
@@ -1,15 +1,22 @@
-{""
- [#identity ["com.github.luxlang" "lux-ruby" "0.6.0"]
- #description "A Ruby compiler for Lux."
+[""
+ ["identity" ["com.github.luxlang" "lux-ruby" "0.6.2"]
+ "description" "A Ruby compiler for Lux."
+ "info" ["url" "https://github.com/LuxLang/lux"
+ "scm" "https://github.com/LuxLang/lux.git"
+ "licenses" [["name" "Lux License v0.1.2"
+ "url" "https://github.com/LuxLang/lux/blob/master/license.txt"
+ "type" "repo"]]
+ "developers" [["name" "Eduardo Julian"
+ "url" "https://github.com/eduardoejp"]]]
- #deploy_repositories {"snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"
- "releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"}
+ "deploy_repositories" {"snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"
+ "releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"}
- #repositories ["https://oss.sonatype.org/content/repositories/snapshots/"
- "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]
+ "repositories" ["https://oss.sonatype.org/content/repositories/snapshots/"
+ "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]
- #compiler ["com.github.luxlang" "lux-jvm" "0.6.0" "jar"]
- #dependencies [["com.github.luxlang" "stdlib" "0.6.0" "tar"]
- ["org.jruby" "jruby-complete" "9.2.15.0" "jar"]]
+ "compiler" ["com.github.luxlang" "lux-jvm" "0.6.2" "jar"]
+ "dependencies" [["com.github.luxlang" "stdlib" "0.6.2" "tar"]
+ ["org.jruby" "jruby-complete" "9.2.15.0" "jar"]]
- #program "program"]}
+ "program" "program"]]