restful_resource 0.0.5 → 0.0.6
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/README.md +1 -1
- data/lib/restful_resource/base.rb +1 -1
- data/lib/restful_resource/version.rb +1 -1
- data/spec/restful_resource/base_spec.rb +6 -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: b63bd74149e842a3d3c1593186507f226559045f
|
4
|
+
data.tar.gz: 2df40c1661f47a33e6db3234186e5a1aeb944818
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c870acbb5512f0062cbfd6f4e6169b745e700a95fe704cf7e3e6168414f4ebe5daeb48df87bdbdf8c4b4684c5eec3204d004f01ec663ec23eae5d7ceafc73e7
|
7
|
+
data.tar.gz: 82b50df9044b356a6d0dc1b612b101360c36261cb09ff535bec8dab895647647562610ed2446f274b3c02472901535a0db09bdb112c57a5732895688b00bc33a
|
data/README.md
CHANGED
@@ -43,6 +43,12 @@ describe RestfulResource::Base do
|
|
43
43
|
expected_error_message = 'You must pass values for the following parameters: [country_slug, team_id]'
|
44
44
|
expect { Player.url }.to raise_error(RestfulResource::ParameterMissingError, expected_error_message)
|
45
45
|
end
|
46
|
+
|
47
|
+
it "should not confuse port number as a parameter" do
|
48
|
+
Player.url = 'http://api.carwow.co.uk:7000/teams/:team_id/players'
|
49
|
+
|
50
|
+
expect { Player.url(team_id: 13) }.not_to raise_error
|
51
|
+
end
|
46
52
|
end
|
47
53
|
|
48
54
|
context "#all" do
|