rename aretherecookies-server to aretherecookies

This commit is contained in:
Bart Akeley 2017-10-20 23:23:05 -05:00
parent 67b61ba65a
commit a4142988f7
4 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
# aretherecookies-server
# aretherecookies
the server that knows where the cookies are

View file

@ -1,4 +1,4 @@
(defproject aretherecookies-server "0.1.0-SNAPSHOT"
(defproject aretherecookies "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
@ -11,7 +11,7 @@
[ring-middleware-format "0.7.2"]
[org.clojure/data.json "0.2.6"]]
:plugins [[lein-ring "0.9.7"]]
:ring {:handler aretherecookies-server.handler/app}
:ring {:handler aretherecookies.handler/app}
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.3.0"]]}})

View file

@ -1,4 +1,4 @@
(ns aretherecookies-server.handler
(ns aretherecookies.handler
(:require [compojure.core :refer :all]
[compojure.route :as route]
[ring.middleware.defaults :refer [wrap-defaults site-defaults]]

View file

@ -1,7 +1,7 @@
(ns aretherecookies-server.handler-test
(ns aretherecookies.handler-test
(:require [clojure.test :refer :all]
[ring.mock.request :as mock]
[aretherecookies-server.handler :refer :all]))
[aretherecookies.handler :refer :all]))
(deftest test-app
(testing "main route"