uw_sws 2.0.2 → 2.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/README.md +6 -6
- data/lib/uw_sws/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: ed9a2357aaf87759f576bb7db1ad02f44c7d5e62
|
|
4
|
+
data.tar.gz: d5c8357a3400d740e8c78b9aea94c9f2c20d0b14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2b4a56b8120f32e43fe27a5a52d05361d15d0fc9be8170630046f3968c0693cea9d0e09fecd35b1f25029b84c5377961ea59b49418b1c027bcc7689d31d2034
|
|
7
|
+
data.tar.gz: 52a8b5e58d7626d109352ef892d6e0d8ba3622a543f4597dbc43d81ca4901518d0a944a78bab5f2c6e6da1337e3060edbdd8d6d6c1266547471ea6c2afb585e5
|
data/README.md
CHANGED
|
@@ -11,12 +11,12 @@ endpoints](https://wiki.cac.washington.edu/display/SWS/Student+Web+Service+Clien
|
|
|
11
11
|
### Examples
|
|
12
12
|
Basic example below gives you hash of term data for winter 2013
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
14
|
+
require 'uw_sws'
|
|
15
|
+
cert = "/TheFullPath/ToYour/x509Certificate.pem"
|
|
16
|
+
key = "/TheFullPath/ToYour/x509Key"
|
|
17
|
+
url = "https://ucswseval1.cac.washington.edu/student/v5/"
|
|
18
|
+
service = UwSws.new(cert: cert, key: key, base: url, use_cache: false)
|
|
19
|
+
term = service.term(2013, "winter")
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
Maybe you want all the Geology courses from 1985?
|
data/lib/uw_sws/version.rb
CHANGED