mitchellh-rubyuw 0.7.0 → 0.7.2
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.
- data/VERSION +1 -1
- data/lib/myuw/curriculum_enrollment.rb +110 -0
- data/lib/myuw/session.rb +1 -1
- data/rubyuw.gemspec +12 -5
- data/test/mocked/fixture_pages/curric_courses.html +2659 -0
- data/test/mocked/fixture_pages/curric_no_courses.html +88 -0
- data/test/mocked/fixture_pages/curric_no_curric_found.html +86 -0
- data/test/mocked/fixture_pages/logged_in_relay.html +462 -175
- metadata +9 -4
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mitchellh-rubyuw
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mitchell Hashimoto
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-09-09 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -36,6 +36,7 @@ files:
|
|
36
36
|
- Rakefile
|
37
37
|
- VERSION
|
38
38
|
- lib/myuw.rb
|
39
|
+
- lib/myuw/curriculum_enrollment.rb
|
39
40
|
- lib/myuw/errors.rb
|
40
41
|
- lib/myuw/registration.rb
|
41
42
|
- lib/myuw/schedule.rb
|
@@ -47,7 +48,11 @@ files:
|
|
47
48
|
- test/live/session_test.rb
|
48
49
|
- test/live/sln_test.rb
|
49
50
|
- test/live/test_helper.rb
|
51
|
+
- test/mocked/curriculum_enrollment_test.rb
|
50
52
|
- test/mocked/fixture_pages/bad_request.html
|
53
|
+
- test/mocked/fixture_pages/curric_courses.html
|
54
|
+
- test/mocked/fixture_pages/curric_no_courses.html
|
55
|
+
- test/mocked/fixture_pages/curric_no_curric_found.html
|
51
56
|
- test/mocked/fixture_pages/logged_in_relay.html
|
52
57
|
- test/mocked/fixture_pages/login.html
|
53
58
|
- test/mocked/fixture_pages/no_form_login.html
|
@@ -76,7 +81,7 @@ files:
|
|
76
81
|
- test/mocked/sln_test.rb
|
77
82
|
- test/mocked/test_helper.rb
|
78
83
|
- test/password.rb.sample
|
79
|
-
has_rdoc:
|
84
|
+
has_rdoc: false
|
80
85
|
homepage: http://github.com/mitchellh/rubyuw
|
81
86
|
post_install_message:
|
82
87
|
rdoc_options:
|
@@ -100,7 +105,7 @@ requirements: []
|
|
100
105
|
rubyforge_project:
|
101
106
|
rubygems_version: 1.2.0
|
102
107
|
signing_key:
|
103
|
-
specification_version:
|
108
|
+
specification_version: 3
|
104
109
|
summary: Library which provides a ruby interface to the University of Washington student portal.
|
105
110
|
test_files:
|
106
111
|
- test/live/registration_test.rb
|