-
Notifications
You must be signed in to change notification settings - Fork 521
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move ring.core.protocols into its own library
Move the ring.core.protocols namespace into its own library, thereby allowing third-party adapters to use the core Ring protocols without needing to depend on all of the ring/ring-core package. Add a dependency on the new org.ring-clojure/ring-core-protocols library to ring/ring-core to maintain backward compatibility.
- Loading branch information
1 parent
ca7b259
commit a7b0b50
Showing
6 changed files
with
37 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(defproject org.ring-clojure/ring-core-protocols "1.11.0" | ||
:description "Ring core protocols." | ||
:url "https://github.com/ring-clojure/ring" | ||
:scm {:dir ".."} | ||
:license {:name "The MIT License" | ||
:url "http://opensource.org/licenses/MIT"} | ||
:dependencies [] | ||
:profiles | ||
{:dev {:dependencies [[org.clojure/clojure "1.7.0"]]}}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Hello World |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters