ultra7 0.5.0 → 1.0.0
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/CHANGELOG +4 -0
- data/LICENSE +1 -1
- data/README.md +5 -5
- data/lib/ultra7.rb +1 -1
- data/lib/ultra7/mime.rb +1 -1
- data/lib/ultra7/version.rb +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e40c3bc4b6bdd500a4a8972033a2b432ee31992c
|
|
4
|
+
data.tar.gz: 360670c32b2e4e7bebea7cc013bfab1d1d5c6a5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 92aef5da8da7b934b4fa4ab075139155d0fe9b6afdee05201f53c38b809157f2122e4cf4fe6ee8af0f84f2559d6551d372ab6c73c3a63ecb8db7d966d0bd0f55
|
|
7
|
+
data.tar.gz: 455833f279620a7065a477e2a74cff4f5dc0f3c5480b98185db28e33b0ef6c627ccb75b115a18c41e0c7b9fe04c468974fe227418436e9afb2868caa3d8349cf
|
data/CHANGELOG
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
## CHANGELOG
|
|
2
2
|
|
|
3
|
+
- __2015/02/08__: 1.0.0 release.
|
|
4
|
+
- Migrated from Bitbucket to GitHub.
|
|
5
|
+
- Updated documentation as such, bumping up version to 1.0.0.
|
|
6
|
+
|
|
3
7
|
- __2014/12/17__: 0.5.0 release.
|
|
4
8
|
- Enhanced handling for multi-line string input.
|
|
5
9
|
- Minor documentation edits for clarity.
|
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -8,7 +8,7 @@ A UTF-7 MIME header decoder, plain and simple.
|
|
|
8
8
|
* `Ultra7::MIME` is also a mixin, so you can conveniently combine it in another class by using
|
|
9
9
|
`include`.
|
|
10
10
|
* Read the [API documentation](http://www.rubydoc.info/gems/ultra7).
|
|
11
|
-
* Learn more about [Ultra7 at
|
|
11
|
+
* Learn more about [Ultra7 at GitHub](https://github.com/buruzaemon/ultra7).
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
## Requirements
|
|
@@ -61,9 +61,9 @@ A UTF-7 MIME header decoder, plain and simple.
|
|
|
61
61
|
- Contrast with
|
|
62
62
|
[`Net::IMAP.decode_utf7`](http://ruby-doc.org/stdlib-1.9.3/libdoc/net/imap/rdoc/Net/IMAP.html#method-c-decode_utf7).
|
|
63
63
|
|
|
64
|
-
## Contributing to
|
|
65
|
-
- Use [
|
|
66
|
-
- [Browse the issue tracker](https://
|
|
64
|
+
## Contributing to Ultra7
|
|
65
|
+
- Use [git](http://git-scm.com/) and [check out the latest code at GitHub](https://github.com/buruzaemon/ultra7) to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
|
66
|
+
- [Browse the issue tracker](https://github.com/buruzaemon/ultra7/issues) to make sure someone already hasn't requested it and/or contributed it.
|
|
67
67
|
- Fork the project.
|
|
68
68
|
- Start a feature/bugfix branch.
|
|
69
69
|
- Commit and push until you are happy with your contribution.
|
|
@@ -74,4 +74,4 @@ A UTF-7 MIME header decoder, plain and simple.
|
|
|
74
74
|
Please see the {file:CHANGELOG} for this gem's release history.
|
|
75
75
|
|
|
76
76
|
## Copyright
|
|
77
|
-
Copyright ©
|
|
77
|
+
Copyright © 2015, Brooke M. Fujita. All rights reserved. Please see the {file:LICENSE} file for further details.
|
data/lib/ultra7.rb
CHANGED
data/lib/ultra7/mime.rb
CHANGED
data/lib/ultra7/version.rb
CHANGED
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
# It may be used as a mixin.
|
|
8
8
|
module Ultra7
|
|
9
9
|
# Version string for this Rubygem.
|
|
10
|
-
VERSION = "0.
|
|
10
|
+
VERSION = "1.0.0"
|
|
11
11
|
end
|
|
12
12
|
|
|
13
|
-
# Copyright (c)
|
|
13
|
+
# Copyright (c) 2015, Brooke M. Fujita.
|
|
14
14
|
# All rights reserved.
|
|
15
15
|
#
|
|
16
16
|
# Redistribution and use in source and binary forms, with or without
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ultra7
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brooke M. Fujita
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-02-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
ultra7 decodes UTF-7 in the context of MIME headers (c.f. https://tools.ietf.org/html/rfc2152).
|
|
@@ -17,14 +17,14 @@ executables: []
|
|
|
17
17
|
extensions: []
|
|
18
18
|
extra_rdoc_files: []
|
|
19
19
|
files:
|
|
20
|
-
- .yardopts
|
|
20
|
+
- ".yardopts"
|
|
21
21
|
- CHANGELOG
|
|
22
22
|
- LICENSE
|
|
23
23
|
- README.md
|
|
24
24
|
- lib/ultra7.rb
|
|
25
25
|
- lib/ultra7/mime.rb
|
|
26
26
|
- lib/ultra7/version.rb
|
|
27
|
-
homepage: https://
|
|
27
|
+
homepage: https://github.com/buruzaemon/ultra7
|
|
28
28
|
licenses:
|
|
29
29
|
- BSD
|
|
30
30
|
metadata: {}
|
|
@@ -34,17 +34,17 @@ require_paths:
|
|
|
34
34
|
- lib
|
|
35
35
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- -
|
|
37
|
+
- - ">="
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
39
|
version: '1.9'
|
|
40
40
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
41
41
|
requirements:
|
|
42
|
-
- -
|
|
42
|
+
- - ">="
|
|
43
43
|
- !ruby/object:Gem::Version
|
|
44
44
|
version: '0'
|
|
45
45
|
requirements: []
|
|
46
46
|
rubyforge_project:
|
|
47
|
-
rubygems_version: 2.4.
|
|
47
|
+
rubygems_version: 2.4.5
|
|
48
48
|
signing_key:
|
|
49
49
|
specification_version: 4
|
|
50
50
|
summary: A UTF-7 MIME header decoder, plain and simple.
|