test_app 0.0.2 → 0.0.3
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/test_app.rb +5 -0
- data/lib/test_app/version.rb +1 -1
- 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: 0d1be2f82e5766560100ea0751e58e88a77f2a2d
|
|
4
|
+
data.tar.gz: a3c55191e763ecf58842f783c66a8130429e0d1c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b89f7e555a5e9279107cf874cee4ac5170e6ba7a4fbb3865e5e02dc8b3123024cecf06235314e6e7ab3ec7d1474d02a431ba7444d2eb1d354927f272d054998f
|
|
7
|
+
data.tar.gz: 9e2df919244aad6e52858215348f269e9bade16aeaf42b7305f51f2dc5681502c036be41cc27dba5ea332a29789dd44cca3d4cfaf70af1206303309d6818d1dc
|
data/lib/test_app.rb
CHANGED
|
@@ -2,4 +2,9 @@ require "test_app/version"
|
|
|
2
2
|
|
|
3
3
|
module TestApp
|
|
4
4
|
# Your code goes here...
|
|
5
|
+
# Creates MT safe Client instance that manages rest api calls to Bitcasa Cloud
|
|
6
|
+
# @param clientid [String] application clientid
|
|
7
|
+
# @param secret [String] application secret
|
|
8
|
+
# @param host [String] server address
|
|
9
|
+
# @return Client class instance
|
|
5
10
|
end
|
data/lib/test_app/version.rb
CHANGED