eudora_sound 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f55698baa28d28af4ba9cf751682643f5bb9d9702771a582825d2281c936c37
4
- data.tar.gz: f03fd7e76a9a74f5eebeb616db2c1b8b664c003d5b781c4295fcc937b33fecab
3
+ metadata.gz: aa4dcb853713952cf8cc813a5bd684def15250c00a120ded188d3b8d34a40a26
4
+ data.tar.gz: 2f88c9cd01470d74e81c1695fc48ae9a796081575013600dbd8a8e80c48c683c
5
5
  SHA512:
6
- metadata.gz: 4ef1140e5bbc92933abf64dd6a75e00c722fdf7152711a664f53f103a340efad2950eccf303395f5a8367fb701fc19e92d1007e44e19818908b242e0060e487a
7
- data.tar.gz: 3e16c16f616bb5cee4af49acf533cc1d3b7b835132a2b7b3e544a97aaeddef7146e6dd39f2517044fc2de4cbcce3c676005f6ecebb2223cf34cfa92e1b61bbbc
6
+ metadata.gz: d9f833bc223ece4bab09406ccd7b52870af2890d9992947afc3bc7a016682915f0731518d077d79c027a81254fafd212dccc492f7768e68dbc10ca5a3e62a163
7
+ data.tar.gz: e9253f915eab8450ac58dd357f7490211fe82bf31321ef57ee11a92f5e57817455ef64ffe8e7ab3d0938eed2c498b57d7541d406c5e41acdf73c0ca5540f3c9d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.0.2](https://github.com/shinyaohtani/eudora_sound/tree/v1.0.2) (2020-05-20)
4
+
5
+ [Full Changelog](https://github.com/shinyaohtani/eudora_sound/compare/v1.0.1...v1.0.2)
6
+
7
+ - Play the sound in asynchronous mode.
8
+
9
+ **Implemented enhancements:**
10
+
11
+ - Asynchronous play [\#6](https://github.com/shinyaohtani/eudora_sound/issues/6)
12
+
13
+ **Merged pull requests:**
14
+
15
+ - appended '&' to system command. [\#7](https://github.com/shinyaohtani/eudora_sound/pull/7) ([shinyaohtani](https://github.com/shinyaohtani))
16
+
3
17
  ## [v1.0.1](https://github.com/shinyaohtani/eudora_sound/tree/v1.0.1) (2020-05-18)
4
18
 
5
19
  [Full Changelog](https://github.com/shinyaohtani/eudora_sound/compare/v1.0.0...v1.0.1)
data/Gemfile.lock CHANGED
@@ -1,12 +1,12 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- eudora_sound (1.0.1)
4
+ eudora_sound (1.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- activesupport (6.0.3)
9
+ activesupport (6.0.3.1)
10
10
  concurrent-ruby (~> 1.0, >= 1.0.2)
11
11
  i18n (>= 0.7, < 2)
12
12
  minitest (~> 5.1)
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Gem Version](https://badge.fury.io/rb/eudora_sound.svg)](https://badge.fury.io/rb/eudora_sound)
2
+
1
3
  # EudoraSound
2
4
 
3
5
  - This plays the ancient Eudora mailer's sound.
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EudoraSound
4
- VERSION = '1.0.1'
4
+ VERSION = '1.0.2'
5
5
  DESCRIPTION = <<~DESC
6
6
  This plays the ancient Eudora mailer's sound.
7
7
  Use this to notify the end of processing etc.
data/lib/eudora_sound.rb CHANGED
@@ -5,7 +5,7 @@ require 'eudora_sound/version'
5
5
  # Play that good old sound
6
6
  module EudoraSound
7
7
  def self.play
8
- cmd = "/usr/bin/env afplay #{File.expand_path(__dir__ + '/Eudora-1.aiff')}"
8
+ cmd = "/usr/bin/env afplay #{File.expand_path(__dir__ + '/Eudora-1.aiff &')}"
9
9
  system cmd
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eudora_sound
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shinya Ohtani (shinyaohtani@github)
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-18 00:00:00.000000000 Z
11
+ date: 2020-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler