twicas_stream 1.1.0 → 1.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 190ddd6a8dba8840e8105796fdaac070e0948193
4
- data.tar.gz: d6d19ed51e0bdc9025708ed56a14afdd93b267f6
3
+ metadata.gz: 431b96ece0e9f78b23280df634aad1f2adba3767
4
+ data.tar.gz: 85b5faf76044f7916c3c028b8a2e211732e64d5e
5
5
  SHA512:
6
- metadata.gz: a4b2c4fb6bde367d127fd335998e7111546b66d0f2e61d04908425e127abf853e95b541ffb38a7c449d74543b681d0aa176566d4add79f6053b3ae2d2934f338
7
- data.tar.gz: 93e562700f7e02d92dffab2da8cd1e6dd96c6942432c6235480c2137bfc794c2cfc7716dd59c0c35c0544f6d34962d6dbf873505a50b4f03cc15f30bbe486f4c
6
+ metadata.gz: 48b1da24ef9b1103c87750731f0277b74e4a8ac5a3dcf6dd8299ba16212e82ab4a0425724b6998757bfbee07b185ae13e414a05d71333ea034a09312e056a5b0
7
+ data.tar.gz: 70da8a7811004f5e303ee0c4c8bc4483510a8a78d60dcbdc2ebb778c722466f4c656bf8ab11699120226d23cfef3f22cb7ad32373d2120f07c06861059d7459d
data/.travis.yml CHANGED
@@ -2,4 +2,13 @@ sudo: false
2
2
  language: ruby
3
3
  rvm:
4
4
  - 2.2.8
5
- before_install: gem install bundler -v 1.15.1
5
+ before_install:
6
+ - gem install bundler -v 1.15.1
7
+ - openssl aes-256-cbc -K $encrypted_ee2c407de685_key -iv $encrypted_ee2c407de685_iv -in config/access_token.txt.enc -out config/access_token.txt -d
8
+ bundler_args: --jobs=2
9
+ branches:
10
+ only:
11
+ - master
12
+ - develop
13
+ notifications:
14
+ email: false
data/CHANGELOG.md ADDED
@@ -0,0 +1,23 @@
1
+ ## v1.1.1
2
+ [full changelog](http://github.com/ysato5654/twicas_stream/compare/v1.1.0...v1.1.1)
3
+
4
+ * Add changelog
5
+ * Add github badge
6
+ - RubyGems.org
7
+ - Travis CI
8
+ - Coveralls
9
+
10
+ ## v1.1.0
11
+ [full changelog](http://github.com/ysato5654/twicas_stream/compare/v1.0.0...v1.1.0)
12
+
13
+ * Support some requests
14
+ * Live Thumbnail
15
+ - Get Live Thumbnail Image
16
+ * Supporter
17
+ - Get Supporting Status
18
+ - Supporting List
19
+ - Supporter List
20
+
21
+ ## v1.0.0
22
+
23
+ * first official release
data/Gemfile CHANGED
@@ -2,3 +2,7 @@ source "https://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in twicas_stream.gemspec
4
4
  gemspec
5
+
6
+ group :test do
7
+ gem 'coveralls', require: false
8
+ end
data/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ [![Gem Version](https://badge.fury.io/rb/twicas_stream.svg)](https://badge.fury.io/rb/twicas_stream)
2
+ [![Build Status](https://travis-ci.org/ysato5654/twicas_stream.svg?branch=master)](https://travis-ci.org/ysato5654/twicas_stream)
3
+ [![Coverage Status](https://coveralls.io/repos/github/ysato5654/twicas_stream/badge.svg?branch=master)](https://coveralls.io/github/ysato5654/twicas_stream?branch=master)
4
+
1
5
  # twicas_stream
2
6
 
3
7
  [twicas_stream](https://rubygems.org/gems/twicas_stream) provides simple Ruby access to [TwitCasting](https://twitcasting.tv/) API.
@@ -102,22 +106,27 @@ Current version supports following requests.
102
106
  | | Get Movies by User | Not Support |
103
107
  | | Get Current Live | Not Support |
104
108
  | Comment | Get Comments | Support |
105
- | | Post Comment | Not Support |
106
- | | Delete Comment | Not Support |
109
+ | | Post Comment | Not Support (*) |
110
+ | | Delete Comment | Not Support (*) |
107
111
  | Supporter | Get Supporting Status | Support |
108
- | | Support User | Not Support |
109
- | | Unsupport User | Not Support |
112
+ | | Support User | Not Support (*) |
113
+ | | Unsupport User | Not Support (*) |
110
114
  | | Supporting List | Support |
111
115
  | | Supporter List | Support |
112
116
  | Category | Get Categories | Support |
113
117
  | Search | Search Users | Support |
114
118
  | | Search Live Movies | Support |
115
119
 
120
+ (*) 'POST/DELETE/PUT' HTTP method. Current version supports 'GET' method only.
121
+
116
122
  ---
117
123
 
118
- ## Appendix
124
+ ## Development
125
+
126
+ Here is for developer
119
127
 
120
- Here is for developer of twicas_stream
128
+ [![Build Status](https://travis-ci.org/ysato5654/twicas_stream.svg?branch=develop)](https://travis-ci.org/ysato5654/twicas_stream)
129
+ [![Coverage Status](https://coveralls.io/repos/github/ysato5654/twicas_stream/badge.svg?branch=develop)](https://coveralls.io/github/ysato5654/twicas_stream?branch=develop)
121
130
 
122
131
  ### Preparation before developing
123
132
 
@@ -263,7 +272,7 @@ end
263
272
  │ │ ├─ movie.rb
264
273
  │ │ ├─ request_header.rb
265
274
  │ │ ├─ search.rb
266
- │ │ ├─ support.rb
275
+ │ │ ├─ supporter.rb
267
276
  │ │ ├─ user.rb
268
277
  │ │ └─ version.rb
269
278
  │ └─ twicas_stream.rb
@@ -271,8 +280,10 @@ end
271
280
  │ ├─ /twicas_stream
272
281
  │ │ ├─ category_spec.rb
273
282
  │ │ ├─ comment_spec.rb
283
+ │ │ ├─ live_thumbnail_spec.rb
274
284
  │ │ ├─ movie_spec.rb
275
285
  │ │ ├─ search_spec.rb
286
+ │ │ ├─ supporter_spec.rb
276
287
  │ │ └─ user_spec.rb
277
288
  │ └─ spec_helper.rb
278
289
  │ └─ twicas_stream_spec.rb
@@ -0,0 +1,3 @@
1
+ �"9����ڇm��$� œ0��3�P 2����Ӭ�>��-�:e�����m��C����}r�_%�Hޭ�x����Ž"����*�d0��=�M��=��MӸ�Hօe��SŢW�;\T#��!�1�{6�X�����E��nS���eC�#��%�BNB�~E講 hP��8�-�r��ij9XU�.PԀ7Ffv���Ԉ'���(���B&'u'�/�%��t��ݨ,���Fr%���^�s6����D�:�ߡy���~SYcي_p�Ň/����,om��E�(��@���h���0�C}�Vf��U���6�j��3�1����M3�ۏ9����vЊ^�j��IB��
2
+ �܈5\�Qm��&N��f�Y��zQE�X� �71�x�s�^*�X���&��N&�A���)n<8�&0�Ԣ�͛��fG'lH���]u5ڱ:�e�
3
+ ��̷/�-@���pJ�G�0�K��ZD"L��3�(IW�]sUƽ�� 2��&R�Ѿ1���X$��L�,I�P��cF��W�(9�{�j7=v�.�B���ò��ˍ\�eh�sH�s�kX%�'
@@ -2,5 +2,5 @@
2
2
  # coding: utf-8
3
3
 
4
4
  module TwicasStream
5
- VERSION = '1.1.0'
5
+ VERSION = '1.1.1'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twicas_stream
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuya Sato
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-02-03 00:00:00.000000000 Z
11
+ date: 2018-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -104,12 +104,14 @@ files:
104
104
  - ".gitignore"
105
105
  - ".rspec"
106
106
  - ".travis.yml"
107
+ - CHANGELOG.md
107
108
  - Gemfile
108
109
  - LICENSE
109
110
  - README.md
110
111
  - Rakefile
111
112
  - bin/console
112
113
  - bin/setup
114
+ - config/access_token.txt.enc
113
115
  - examples/get_categories.rb
114
116
  - examples/get_comments.rb
115
117
  - examples/get_live_thumbnail_image.rb