We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 309a86d commit 39dffbeCopy full SHA for 39dffbe
shard.yml
@@ -1,5 +1,5 @@
1
name: schema
2
-version: 0.1.0
+version: 0.2.0
3
4
authors:
5
- Elias J. Perez <eliasjpr@gmail.com>
spec/defintion_spec.cr renamed to spec/definition_spec.cr
@@ -16,6 +16,8 @@ describe Schema::Definition do
16
p.add("address[location][latitude]", "-73.858467")
17
p.add("address[location][useful]", "true")
18
end
19
+
20
+ p params
21
22
it "defines schema from Hash(String, String)" do
23
user = Example.from_urlencoded(params)
src/schema.cr
@@ -8,5 +8,5 @@ require "./schema/validation"
8
# The Schema macros helps you define schemas and assists
9
# with instantiating and validating data with those schemas at runtime.
10
module Schema
11
- VERSION = "0.1.0"
+ VERSION = "0.2.0"
12
0 commit comments