haruzira_sdk 0.1.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/.vscode/settings.json +3 -0
- data/README.md +29 -36
- data/haruzira_sdk.gemspec +13 -2
- data/lib/haruzira_sdk/version.rb +1 -1
- metadata +12 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4d5a5954ddfca7a6cce92d5ea6cfea4ea6760bd
|
|
4
|
+
data.tar.gz: 800c0c6febf6308ac2eaad9eb9608092c4fd9ca8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: acb3589402c937c51a6975feef0751e36c865d2b78842047f5824c5bf92040ea985568522396b89a1815618907e5a7379510b4d71656e66a23839b704d5fc788
|
|
7
|
+
data.tar.gz: f1e2a86b0bbdca8575c2a33cfbed793e16a1143f452c7275d52d5cb3f07af88c8790b6a197bc355fe293f3f69ff6e5ade12315e430c6f4baf61b6305b4b7a64f
|
data/README.md
CHANGED
|
@@ -1,36 +1,29 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
##
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
32
|
-
|
|
33
|
-
## Contributing
|
|
34
|
-
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/haruzira_sdk. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
36
|
-
|
|
1
|
+
# Haruzira SDK for Ruby
|
|
2
|
+
|
|
3
|
+
The Haruzira is a UWP APP.
|
|
4
|
+
|
|
5
|
+
I am currently applying for Haruzira to Microsoft. coming soon.
|
|
6
|
+
|
|
7
|
+
Localization schedule of Harurira UWP APP
|
|
8
|
+
|
|
9
|
+
first release: japanese
|
|
10
|
+
second release: english
|
|
11
|
+
|
|
12
|
+
"SDK for Ruby" and a sample program have already translated into english.
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
TODO: [readme_xx.txt](https://bitbucket.org/SymmetrySoft/haruzira_sdk_ruby_sample)
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
$ gem install haruzira_sdk
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
TODO: [sample program](https://bitbucket.org/SymmetrySoft/haruzira_sdk_ruby_sample)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## License
|
|
28
|
+
|
|
29
|
+
MIT License: Copyright (c) 2016 Symmetry Soft
|
data/haruzira_sdk.gemspec
CHANGED
|
@@ -6,12 +6,23 @@ require 'haruzira_sdk/version'
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "haruzira_sdk"
|
|
8
8
|
spec.version = HaruziraSdk::VERSION
|
|
9
|
+
spec.licenses = ["MIT"]
|
|
9
10
|
spec.authors = ["Symmetry Soft"]
|
|
10
11
|
spec.email = ["git@symmetry-soft.com"]
|
|
11
12
|
|
|
12
13
|
spec.summary = %q{SDK for Haruzira UWP APP.}
|
|
13
|
-
spec.description
|
|
14
|
-
|
|
14
|
+
spec.description = <<-EOF
|
|
15
|
+
This gem is a SDK for communication with the Haruzira.
|
|
16
|
+
By the SDK uses, and send the text data, is possible make a speech by remote access.
|
|
17
|
+
|
|
18
|
+
The Haruzira has been published on the Winpows store.
|
|
19
|
+
It has been localized in Japanese only at the first release. and will be localized in English at the next release.
|
|
20
|
+
URL:https://www.microsoft.com/store/apps/9nblggh516j3
|
|
21
|
+
|
|
22
|
+
And also the SDK user's manual has been published on the web site.
|
|
23
|
+
URL:http://haruzirasdke.wpblog.jp/
|
|
24
|
+
EOF
|
|
25
|
+
spec.homepage = "http://haruzirasdke.wpblog.jp/"
|
|
15
26
|
|
|
16
27
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
17
28
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
data/lib/haruzira_sdk/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: haruzira_sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Symmetry Soft
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-09-
|
|
11
|
+
date: 2016-09-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -52,8 +52,12 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.0'
|
|
55
|
-
description: This gem is a SDK for
|
|
56
|
-
|
|
55
|
+
description: " This gem is a SDK for communication with the Haruzira.\n By the SDK
|
|
56
|
+
uses, and send the text data, is possible make a speech by remote access.\n \n
|
|
57
|
+
\ The Haruzira has been published on the Winpows store.\n It has been localized
|
|
58
|
+
in Japanese only at the first release. and will be localized in English at the next
|
|
59
|
+
release.\n URL:https://www.microsoft.com/store/apps/9nblggh516j3\n \n And also
|
|
60
|
+
the SDK user's manual has been published on the web site.\n URL:http://haruzirasdke.wpblog.jp/\n"
|
|
57
61
|
email:
|
|
58
62
|
- git@symmetry-soft.com
|
|
59
63
|
executables: []
|
|
@@ -63,6 +67,7 @@ files:
|
|
|
63
67
|
- ".gitignore"
|
|
64
68
|
- ".rspec"
|
|
65
69
|
- ".travis.yml"
|
|
70
|
+
- ".vscode/settings.json"
|
|
66
71
|
- CODE_OF_CONDUCT.md
|
|
67
72
|
- Gemfile
|
|
68
73
|
- LICENSE.md
|
|
@@ -87,8 +92,9 @@ files:
|
|
|
87
92
|
- lib/haruzira_sdk/MsgReqStartComm.rb
|
|
88
93
|
- lib/haruzira_sdk/MsgSendSpeechData.rb
|
|
89
94
|
- lib/haruzira_sdk/version.rb
|
|
90
|
-
homepage:
|
|
91
|
-
licenses:
|
|
95
|
+
homepage: http://haruzirasdke.wpblog.jp/
|
|
96
|
+
licenses:
|
|
97
|
+
- MIT
|
|
92
98
|
metadata: {}
|
|
93
99
|
post_install_message:
|
|
94
100
|
rdoc_options: []
|