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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c5a3e1cae83da627a5d3d9e1ad0147e6f7521ca1
4
- data.tar.gz: fa0a08df7b4028b3835725858e131244f25aea28
3
+ metadata.gz: e40c3bc4b6bdd500a4a8972033a2b432ee31992c
4
+ data.tar.gz: 360670c32b2e4e7bebea7cc013bfab1d1d5c6a5f
5
5
  SHA512:
6
- metadata.gz: 132176393aa4a6a2bc42bd744e4fdf73205af9b99d200b48980c07619631b4cc69a4078e9c849a452e139882a6dd46d5387febafaab1d815dc7a1bfe70f76525
7
- data.tar.gz: 761e5694be3f35cc2cb368a0b9bcddb44564bfc6843f6b3e43bbbed8e800b8d2bc192fe7f1118e01068dfb3cfb17b3ac3fbcd9823bde5e7d9b9e3504e6b69220
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
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014-2015, Brooke M. Fujita.
1
+ Copyright (c) 2015, Brooke M. Fujita.
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
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 bitbucket](https://bitbucket.org/buruzaemon/ultra7/).
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 natto
65
- - Use [mercurial](http://mercurial.selenic.com/) and [check out the latest code at bitbucket](https://bitbucket.org/buruzaemon/ultra7/src/) to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
66
- - [Browse the issue tracker](https://bitbucket.org/buruzaemon/ultra7/issues/) to make sure someone already hasn't requested it and/or contributed it.
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 © 2014-2015, Brooke M. Fujita. All rights reserved. Please see the {file:LICENSE} file for further details.
77
+ Copyright © 2015, Brooke M. Fujita. All rights reserved. Please see the {file:LICENSE} file for further details.
@@ -1,6 +1,6 @@
1
1
  require 'ultra7/mime'
2
2
 
3
- # Copyright (c) 2014-2015, Brooke M. Fujita.
3
+ # Copyright (c) 2015, Brooke M. Fujita.
4
4
  # All rights reserved.
5
5
  #
6
6
  # Redistribution and use in source and binary forms, with or without
@@ -60,7 +60,7 @@ module Ultra7
60
60
  end
61
61
  end
62
62
 
63
- # Copyright (c) 2014-2015, Brooke M. Fujita.
63
+ # Copyright (c) 2015, Brooke M. Fujita.
64
64
  # All rights reserved.
65
65
  #
66
66
  # Redistribution and use in source and binary forms, with or without
@@ -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.5.0"
10
+ VERSION = "1.0.0"
11
11
  end
12
12
 
13
- # Copyright (c) 2014-2015, Brooke M. Fujita.
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.5.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: 2014-12-17 00:00:00.000000000 Z
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://bitbucket.org/buruzaemon/ultra7
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.1
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.