sip2 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/README.md +8 -3
- data/lib/sip2/version.rb +1 -1
- data/sip2.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5a095a4d3648c8cb1432f0f8a7ce7a3712ff5ee7
|
|
4
|
+
data.tar.gz: 97b4b2ad1878ae728cf925cf678552dd5bb431d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb34450723d3ee21271b38635227f1b1088af31be67818b75faec04f170b41f3598e5b9764ac20eb6b19987029bb1b13f5a7149483aa45f4445823d442cd1299
|
|
7
|
+
data.tar.gz: 0b0a7ba9692d84d7031d62d5e83697606c98a904c4190bf5d2c6d0cd7c1452bf322280bc4a7847439741623683dc31e647340c77061a69f6adcb20531bcd8c7e
|
data/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
[](https://travis-ci.org/TutoringAustralasia/sip2-ruby)
|
|
2
|
+
[](https://codeclimate.com/github/TutoringAustralasia/sip2-ruby)
|
|
3
3
|
[](#)
|
|
4
4
|
|
|
5
5
|
# 3M™ Standard Interchange Protocol v2 (SIP2) client implementation in Ruby
|
|
@@ -24,6 +24,11 @@ $ bundle
|
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
|
|
27
|
+
## Protocol support
|
|
28
|
+
|
|
29
|
+
So far only login (code 93) and patron_information (code 63) are supported
|
|
30
|
+
|
|
31
|
+
|
|
27
32
|
## Usage
|
|
28
33
|
|
|
29
34
|
```ruby
|
|
@@ -41,7 +46,7 @@ puts 'Valid patron' if patron && patron.authenticated?
|
|
|
41
46
|
|
|
42
47
|
## Contributing
|
|
43
48
|
|
|
44
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
49
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/TutoringAustralasia/sip2-ruby.
|
|
45
50
|
|
|
46
51
|
Note that spec tests are appreciated to minimise regressions. Before submitting a PR, please ensure that:
|
|
47
52
|
|
data/lib/sip2/version.rb
CHANGED
data/sip2.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
|
|
14
14
|
spec.summary = '3M™ Standard Interchange Protocol v2 client implementation in Ruby'
|
|
15
15
|
spec.description = '3M™ Standard Interchange Protocol v2 client implementation in Ruby'
|
|
16
|
-
spec.homepage = 'https://github.com/
|
|
16
|
+
spec.homepage = 'https://github.com/TutoringAustralasia/sip2-ruby'
|
|
17
17
|
spec.license = 'MIT'
|
|
18
18
|
|
|
19
19
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sip2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- abrom
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-05-
|
|
11
|
+
date: 2017-05-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -103,7 +103,7 @@ files:
|
|
|
103
103
|
- lib/sip2/patron_information.rb
|
|
104
104
|
- lib/sip2/version.rb
|
|
105
105
|
- sip2.gemspec
|
|
106
|
-
homepage: https://github.com/
|
|
106
|
+
homepage: https://github.com/TutoringAustralasia/sip2-ruby
|
|
107
107
|
licenses:
|
|
108
108
|
- MIT
|
|
109
109
|
metadata: {}
|