latinum 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/latinum/resource.rb +4 -2
- data/lib/latinum/version.rb +2 -2
- data/spec/latinum/resource_spec.rb +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 537e2473bf2fb2a9a16e4f2fe523ead753b907f8
|
4
|
+
data.tar.gz: fe5bdebcc019e19d6e2af6f9b71fea19f8a5d652
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3d54ac16ff8c3abcb5aa025f6a89ea60d960c9370e9af1149b3dd78e9488d504d3d9e0af59ac94785776b747c79dfcbd213712bac624f7d32bf9d08b6790638
|
7
|
+
data.tar.gz: 19965530b9ebbfd754ecf0f595d98a4fe93ad58dbfc12aff7f1c5c1183c8a8bce9e660e964085fc8d8de011b8e7c45d4e40b12ca10b76e1343dff32df596aa66
|
data/lib/latinum/resource.rb
CHANGED
data/lib/latinum/version.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright,
|
1
|
+
# Copyright, 2015, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
2
2
|
#
|
3
3
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
4
|
# of this software and associated documentation files (the "Software"), to deal
|
@@ -19,5 +19,5 @@
|
|
19
19
|
# THE SOFTWARE.
|
20
20
|
|
21
21
|
module Latinum
|
22
|
-
VERSION = "0.5.
|
22
|
+
VERSION = "0.5.1"
|
23
23
|
end
|
@@ -35,5 +35,10 @@ module Latinum::ResourceSpec
|
|
35
35
|
|
36
36
|
expect(loaded_resource).to be == loaded_resource
|
37
37
|
end
|
38
|
+
|
39
|
+
it "should load and dump nil correctly" do
|
40
|
+
expect(Latinum::Resource.load(nil)).to be nil
|
41
|
+
expect(Latinum::Resource.dump(nil)).to be nil
|
42
|
+
end
|
38
43
|
end
|
39
44
|
end
|