pollynomial 0.0.1 → 0.1.0

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
  SHA1:
3
- metadata.gz: ca908cdbcd1520ed0ecc0d8bcb764df20f0a71af
4
- data.tar.gz: beb68cfdac9bca17e90e004073370118b476656e
3
+ metadata.gz: f905301e627be7609e1c02a0931c083fc3bca78c
4
+ data.tar.gz: 584f8c6a5d48ab183f11ff40327ebfa2938f0eea
5
5
  SHA512:
6
- metadata.gz: cfc3547e1ed89b63c4194d5d5e54b6c7481d9d7e28cfdf1831436e992e3b57414566d936636535c1c88161a3ae0a986c5ce3bd987d2af74dc2fae05a8f275aaf
7
- data.tar.gz: f6812076574dfe5214cc26188459e07d6925278f3e657e58cf6f0dbdad1e1cf25cc8672070787db1a1671246a12bd88acc427982c711f40248389abe1a29971c
6
+ metadata.gz: 4ac53501ea940f1694af99f54507a26546599b5a2c628375e1610f6ecd6a6ee3a6d15be9c35661683d3207167f06d248f9f395c90e02ca550529c309d137c7a1
7
+ data.tar.gz: 1c249a19bcc57c376c7de063e49c618fd574f287d856140f8da1dd3a7f5acdaa829053b0e3c68b07bdb44eeb3679330d249daf2d160a1ab9d900c08564d11b8b
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # Pollynomial
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/pollynomial`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ Pollynomial is simple AWS Polly wrapper. It enables to text to speech with AWS Polly.
6
4
 
7
5
  ## Installation
8
6
 
@@ -22,7 +20,11 @@ Or install it yourself as:
22
20
 
23
21
  ## Usage
24
22
 
25
- TODO: Write usage instructions here
23
+ There is a executable command `text2mp3`. You can use as following.
24
+
25
+ ```
26
+ text2mp3 [-v voice_id] [-o output_file] input_file
27
+ ```
26
28
 
27
29
  ## Development
28
30
 
File without changes
@@ -1,3 +1,3 @@
1
1
  module Pollynomial
2
- VERSION = "0.0.1"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pollynomial
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michiaki Ariga
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-01-14 00:00:00.000000000 Z
11
+ date: 2017-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -97,7 +97,8 @@ dependencies:
97
97
  description: AWS polly wrapper, converts from text into speech audio.
98
98
  email:
99
99
  - chezou@gmail.com
100
- executables: []
100
+ executables:
101
+ - text2mp3
101
102
  extensions: []
102
103
  extra_rdoc_files: []
103
104
  files:
@@ -109,7 +110,7 @@ files:
109
110
  - Rakefile
110
111
  - bin/console
111
112
  - bin/setup
112
- - bin/text2mp3
113
+ - exe/text2mp3
113
114
  - lib/pollynomial.rb
114
115
  - lib/pollynomial/synthesizer.rb
115
116
  - lib/pollynomial/version.rb