Skip to content

Commit

Permalink
Version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdinger committed Sep 24, 2015
1 parent 763156e commit d43cd4d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 115 deletions.
27 changes: 25 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
(defproject com.houseofding/rasql "0.1.0-SNAPSHOT"
(defproject com.houseofding/rasql "0.1.0"
:description "A library for converting relational algebra expressions to SQL"
:url "https://github.umn.edu/ding0057/rasql"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]])

:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.122" :classifier "aot"]]

:plugins [[lein-cljsbuild "1.1.0"]]

:cljsbuild {
:builds [{:id "test"
:source-paths ["src" "test"]
:compiler {
:main rasql.core-test
:output-to "out/core-test.js"
:output-dir "out"
:optimizations :none
:target :nodejs
:cache-analysis true
:source-map true}}
]})

; :cljsbuild {:builds {:test {:source-paths ["test"]
; :compiler {:output-to "resources/test/compiled.js"
; :optimizations :none
; :target :nodejs}}}
; :test-commands {"test" ["jrunscript" "-f" "resources/test/compiled.js"]}})
113 changes: 0 additions & 113 deletions test/rasql/core_test.clj

This file was deleted.

0 comments on commit d43cd4d

Please sign in to comment.