eudora_sound 1.0.0 → 1.0.1
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.md +12 -0
- data/Gemfile.lock +1 -1
- data/README.md +23 -6
- data/eudora_sound.gemspec +1 -1
- data/lib/eudora_sound/version.rb +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f55698baa28d28af4ba9cf751682643f5bb9d9702771a582825d2281c936c37
|
4
|
+
data.tar.gz: f03fd7e76a9a74f5eebeb616db2c1b8b664c003d5b781c4295fcc937b33fecab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ef1140e5bbc92933abf64dd6a75e00c722fdf7152711a664f53f103a340efad2950eccf303395f5a8367fb701fc19e92d1007e44e19818908b242e0060e487a
|
7
|
+
data.tar.gz: 3e16c16f616bb5cee4af49acf533cc1d3b7b835132a2b7b3e544a97aaeddef7146e6dd39f2517044fc2de4cbcce3c676005f6ecebb2223cf34cfa92e1b61bbbc
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v1.0.1](https://github.com/shinyaohtani/eudora_sound/tree/v1.0.1) (2020-05-18)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/shinyaohtani/eudora_sound/compare/v1.0.0...v1.0.1)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Update readme [\#2](https://github.com/shinyaohtani/eudora_sound/issues/2)
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- Readme [\#3](https://github.com/shinyaohtani/eudora_sound/pull/3) ([shinyaohtani](https://github.com/shinyaohtani))
|
14
|
+
|
3
15
|
## [v1.0.0](https://github.com/shinyaohtani/eudora_sound/tree/v1.0.0) (2020-05-18)
|
4
16
|
|
5
17
|
[Full Changelog](https://github.com/shinyaohtani/eudora_sound/compare/9bfc0cfcd53f393da95687beff246a0af6056b92...v1.0.0)
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
# EudoraSound
|
2
2
|
|
3
|
-
|
3
|
+
- This plays the ancient Eudora mailer's sound.
|
4
|
+
- Use this to notify the end of processing etc.
|
4
5
|
|
5
|
-
|
6
|
+
- Eudora is a famous, ancient mailer.
|
7
|
+
- [wikipedia](https://en.wikipedia.org/wiki/Eudora_%28email_client%29)
|
6
8
|
|
7
9
|
## Installation
|
8
10
|
|
@@ -22,7 +24,18 @@ Or install it yourself as:
|
|
22
24
|
|
23
25
|
## Usage
|
24
26
|
|
25
|
-
|
27
|
+
- Just call it.
|
28
|
+
|
29
|
+
```bash
|
30
|
+
$ eudora_sound
|
31
|
+
♪
|
32
|
+
```
|
33
|
+
|
34
|
+
- use case:
|
35
|
+
|
36
|
+
```bash
|
37
|
+
$ your_long_process.sh && eudora_sound
|
38
|
+
```
|
26
39
|
|
27
40
|
## Development
|
28
41
|
|
@@ -32,8 +45,12 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
32
45
|
|
33
46
|
## Contributing
|
34
47
|
|
35
|
-
Bug reports and pull requests are welcome
|
36
|
-
|
48
|
+
Bug reports and pull requests are welcome!
|
49
|
+
1. Fork it ( https://github.com/shinyaohtani/eudora_sound )
|
50
|
+
1. Create your feature branch (git checkout -b my-new-feature)
|
51
|
+
1. Commit your changes (git commit -am 'Add some feature')
|
52
|
+
1. Push to the branch (git push origin my-new-feature)
|
53
|
+
1. Create a new Pull Request
|
37
54
|
|
38
55
|
## License
|
39
56
|
|
@@ -41,4 +58,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
41
58
|
|
42
59
|
## Code of Conduct
|
43
60
|
|
44
|
-
Everyone interacting in the
|
61
|
+
Everyone interacting in the MasterDelivery project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/shinyaohtani/eudora_sound/blob/master/CODE_OF_CONDUCT.md).
|
data/eudora_sound.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.authors = ['Shinya Ohtani (shinyaohtani@github)']
|
9
9
|
spec.email = ['shinya_ohtani@yahoo.co.jp']
|
10
10
|
|
11
|
-
spec.summary = '
|
11
|
+
spec.summary = 'This plays the sound of the famous ancient mailer "Eudora".'
|
12
12
|
spec.description = EudoraSound::DESCRIPTION
|
13
13
|
spec.homepage = EudoraSound::REPOSITORY_URL + '/tree/master/README.md'
|
14
14
|
spec.license = 'MIT'
|
data/lib/eudora_sound/version.rb
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module EudoraSound
|
4
|
-
VERSION = '1.0.
|
4
|
+
VERSION = '1.0.1'
|
5
5
|
DESCRIPTION = <<~DESC
|
6
|
-
This plays the Eudora mailer's sound.
|
7
|
-
notify the end of processing etc.
|
6
|
+
This plays the ancient Eudora mailer's sound.
|
7
|
+
Use this to notify the end of processing etc.
|
8
8
|
DESC
|
9
9
|
REPOSITORY_URL = 'https://github.com/shinyaohtani/eudora_sound'
|
10
10
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eudora_sound
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shinya Ohtani (shinyaohtani@github)
|
@@ -137,8 +137,8 @@ dependencies:
|
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: 1.39.0
|
139
139
|
description: |
|
140
|
-
This plays the Eudora mailer's sound.
|
141
|
-
notify the end of processing etc.
|
140
|
+
This plays the ancient Eudora mailer's sound.
|
141
|
+
Use this to notify the end of processing etc.
|
142
142
|
email:
|
143
143
|
- shinya_ohtani@yahoo.co.jp
|
144
144
|
executables:
|
@@ -190,5 +190,5 @@ requirements: []
|
|
190
190
|
rubygems_version: 3.1.2
|
191
191
|
signing_key:
|
192
192
|
specification_version: 4
|
193
|
-
summary:
|
193
|
+
summary: This plays the sound of the famous ancient mailer "Eudora".
|
194
194
|
test_files: []
|