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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fa8765291a9c301d7f546976eac8a46949fe4ef4
4
- data.tar.gz: 9219d5d0d8990492d0ab3e2be1308a7d9fd7d68d
3
+ metadata.gz: d4d5a5954ddfca7a6cce92d5ea6cfea4ea6760bd
4
+ data.tar.gz: 800c0c6febf6308ac2eaad9eb9608092c4fd9ca8
5
5
  SHA512:
6
- metadata.gz: 102da083e8ed7b8cb2fa8065b8ad90620232aee47283338844ee7f90309cc1d474415b97d6c031da5b637cbb16fec117b5ac1d7648039ba469393a08eb9724ff
7
- data.tar.gz: 65705e5f77fb2aed90f7c774ab248f077754157283a6560fd621908c454fe47af42938b7e899f58063b13d9f2a5435bcb13a2e6efb7d83ce81f05dc21cdbb87f
6
+ metadata.gz: acb3589402c937c51a6975feef0751e36c865d2b78842047f5824c5bf92040ea985568522396b89a1815618907e5a7379510b4d71656e66a23839b704d5fc788
7
+ data.tar.gz: f1e2a86b0bbdca8575c2a33cfbed793e16a1143f452c7275d52d5cb3f07af88c8790b6a197bc355fe293f3f69ff6e5ade12315e430c6f4baf61b6305b4b7a64f
@@ -0,0 +1,3 @@
1
+ // 既定の設定とユーザー設定を上書きするには、このファイル内に設定を挿入します
2
+ {
3
+ }
data/README.md CHANGED
@@ -1,36 +1,29 @@
1
- # HaruziraSdk
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/haruzira_sdk`. 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
6
-
7
- ## Installation
8
-
9
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'haruzira_sdk'
13
- ```
14
-
15
- And then execute:
16
-
17
- $ bundle
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install haruzira_sdk
22
-
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
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 = %q{This gem is a SDK for Haruzira to text to remote speech. I am currently applying for Haruzira to Microsoft. coming soon.}
14
- spec.homepage = "https://bitbucket.org/SymmetrySoft/haruzira_sdk_ruby_sample"
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.
@@ -1,3 +1,3 @@
1
1
  module HaruziraSdk
2
- VERSION = "0.1.0"
2
+ VERSION = "1.0.0"
3
3
  end
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: 0.1.0
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-21 00:00:00.000000000 Z
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 Haruzira to text to remote speech. I am currently
56
- applying for Haruzira to Microsoft. coming soon.
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: https://bitbucket.org/SymmetrySoft/haruzira_sdk_ruby_sample
91
- licenses: []
95
+ homepage: http://haruzirasdke.wpblog.jp/
96
+ licenses:
97
+ - MIT
92
98
  metadata: {}
93
99
  post_install_message:
94
100
  rdoc_options: []