geekbot 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 5e30eee0b888c45cc30a843ef3019a89eb8b9621b8c506aced10aaba4e64dc4e
4
+ data.tar.gz: 8a20694276980921c3274c62ba32273fe106f92691ccffc6e336c803e3c7e182
5
+ SHA512:
6
+ metadata.gz: 62064221ab6fc4b41c5486138cb6fc83e98fc77e2a8f429aa299d26a794cd8688d911c01331595b91f5a9760e60e6473e7ce154f623a9ce2b38628db3ad76cf0
7
+ data.tar.gz: 20d8569de0f51aca8c9ec65eabb8ce5a029cb7c0b48f6f6278a0be09dcf6014813fb46b5690d864007dacc7885668e2a4cfc8b4865c902c69ad51826e1b58517
@@ -0,0 +1,26 @@
1
+ ((事前に書いてある文書は説明用のものです。 レビュー前には消してください))
2
+
3
+ ## :sparkles: 目的
4
+
5
+ * このPRをマージすると以下のことができるようになるよ!
6
+ * 仕様書や関連プルリクエストへのリンク
7
+
8
+ ## :muscle: 方針
9
+
10
+ * 何を考えてこのプルリクを作ったか。
11
+ * 考えた結果、除外したものがあれば書いてほしい
12
+
13
+ ## :wrench: 実装
14
+
15
+ * 方針に沿って実装していく中でレビュアーに伝えたいこと
16
+ * 適宜、図や疑似コードを使う
17
+ * コードへのコメントでもよい
18
+
19
+ ## :white_check_mark: テスト
20
+
21
+ * マージボタンを押してもらうための材料
22
+ * 確認した項目など
23
+
24
+ ## :speech_balloon: 相談
25
+
26
+ * 書いてみたけど自信がないところとか
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+ .env
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,15 @@
1
+ Style/Documentation:
2
+ Enabled: false
3
+
4
+ Metrics/LineLength:
5
+ Max: 128
6
+
7
+ Metrics/BlockLength:
8
+ Max: 30
9
+ Exclude:
10
+ - 'spec/**/*'
11
+
12
+ Style/FrozenStringLiteralComment:
13
+ Exclude:
14
+ - Gemfile
15
+ - Rakefile
@@ -0,0 +1,7 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.8
5
+ - 2.4.5
6
+ - 2.5.3
7
+ before_install: gem install bundler
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at tenma.fukaya@misoca.jp. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in geekbot.gemspec
6
+ gemspec
@@ -0,0 +1,68 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ geekbot (0.1.1)
5
+ faraday
6
+ faraday_middleware
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ ast (2.4.0)
12
+ coderay (1.1.2)
13
+ diff-lcs (1.3)
14
+ dotenv (2.2.1)
15
+ faraday (0.14.0)
16
+ multipart-post (>= 1.2, < 3)
17
+ faraday_middleware (0.12.2)
18
+ faraday (>= 0.7.4, < 1.0)
19
+ jaro_winkler (1.5.1)
20
+ method_source (0.9.0)
21
+ multipart-post (2.0.0)
22
+ parallel (1.12.1)
23
+ parser (2.5.3.0)
24
+ ast (~> 2.4.0)
25
+ powerpack (0.1.2)
26
+ pry (0.11.3)
27
+ coderay (~> 1.1.0)
28
+ method_source (~> 0.9.0)
29
+ rainbow (3.0.0)
30
+ rake (10.5.0)
31
+ rspec (3.7.0)
32
+ rspec-core (~> 3.7.0)
33
+ rspec-expectations (~> 3.7.0)
34
+ rspec-mocks (~> 3.7.0)
35
+ rspec-core (3.7.1)
36
+ rspec-support (~> 3.7.0)
37
+ rspec-expectations (3.7.0)
38
+ diff-lcs (>= 1.2.0, < 2.0)
39
+ rspec-support (~> 3.7.0)
40
+ rspec-mocks (3.7.0)
41
+ diff-lcs (>= 1.2.0, < 2.0)
42
+ rspec-support (~> 3.7.0)
43
+ rspec-support (3.7.1)
44
+ rubocop (0.60.0)
45
+ jaro_winkler (~> 1.5.1)
46
+ parallel (~> 1.10)
47
+ parser (>= 2.5, != 2.5.1.1)
48
+ powerpack (~> 0.1)
49
+ rainbow (>= 2.2.2, < 4.0)
50
+ ruby-progressbar (~> 1.7)
51
+ unicode-display_width (~> 1.4.0)
52
+ ruby-progressbar (1.10.0)
53
+ unicode-display_width (1.4.0)
54
+
55
+ PLATFORMS
56
+ ruby
57
+
58
+ DEPENDENCIES
59
+ bundler (~> 1.16)
60
+ dotenv
61
+ geekbot!
62
+ pry
63
+ rake (~> 10.0)
64
+ rspec (~> 3.0)
65
+ rubocop
66
+
67
+ BUNDLED WITH
68
+ 1.17.1
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Pegasus204
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,72 @@
1
+ # geekbot_ruby
2
+
3
+ [![CircleCI](https://circleci.com/gh/standfirm/geekbot_ruby.svg?style=svg)](https://circleci.com/gh/standfirm/geekbot_ruby)
4
+
5
+ Geekbot API library, written in Ruby
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'geekbot'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ ```shell
18
+ $ bundle
19
+ ```
20
+
21
+ Or install it yourself as:
22
+
23
+ ```shell
24
+ $ gem install geekbot
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ ```ruby
30
+ # Initialization
31
+ client = Geekbot::Client.new(access_token: "<your_access_token>")
32
+
33
+ # Team API
34
+ client.index_teams
35
+ #=> GET /v1/teams
36
+
37
+ # Report API
38
+ client.index_reports
39
+ #=> GET /v1/reports
40
+
41
+ # Standup API
42
+ client.index_standups
43
+ #=> GET /v1/standups
44
+
45
+ client.show_standup(id: xxx)
46
+ #=> GET /v1/standups/:id
47
+
48
+ client.create_standup(params: param)
49
+ #=> POST /v1/standups
50
+
51
+ client.update_standup(id: xxx, params: param)
52
+ #=> PATCH /v1/standups/:id
53
+
54
+ client.replace_standup(id: xxx, params: param)
55
+ #=> PUT /v1/standups/:id
56
+
57
+ client.destroy_standup(id: xxx)
58
+ #=> DELETE /v1/standups/:id
59
+ ```
60
+ see also: [Geekbot API Docs](https://geekbot.io/developers)
61
+
62
+ ## Contributing
63
+
64
+ 1. Fork it ( https://github.com/standfirm/geekbot_ruby/fork )
65
+ 1. Create your feature branch (git checkout -b my-new-feature)
66
+ 1. Commit your changes (git commit -am 'Add some feature')
67
+ 1. Push to the branch (git push origin my-new-feature)
68
+ 1. Create a new Pull Request
69
+
70
+ ## License
71
+
72
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'bundler/setup'
5
+ require 'dotenv/load'
6
+ require 'geekbot'
7
+
8
+ # You can add fixtures and/or initialization code here to make experimenting
9
+ # with your gem easier. You can also use a different console, if you like.
10
+
11
+ # (If you use this, don't forget to add pry to your Gemfile!)
12
+ require 'pry'
13
+ Pry.start
14
+
15
+ # require 'irb'
16
+ # IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path('lib', __dir__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'geekbot/version'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'geekbot'
9
+ spec.version = Geekbot::VERSION
10
+ spec.authors = %w[Pegasus204 eitoball]
11
+ spec.email = ['tenma.fukaya@misoca.jp', 'eitoball@gmail.com']
12
+
13
+ spec.summary = 'Geekbot API client library, written in Ruby'
14
+ spec.description = 'Geekbot API client library, written in Ruby'
15
+ spec.homepage = 'https://github.com/standfirm/geekbot_ruby'
16
+ spec.license = 'MIT'
17
+
18
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
19
+ f.match(%r{^(test|spec|features)/})
20
+ end
21
+ spec.bindir = 'exe'
22
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
+ spec.require_paths = ['lib']
24
+
25
+ spec.add_runtime_dependency 'faraday'
26
+ spec.add_runtime_dependency 'faraday_middleware'
27
+ spec.add_development_dependency 'bundler', '~> 1.16'
28
+ spec.add_development_dependency 'dotenv'
29
+ spec.add_development_dependency 'pry'
30
+ spec.add_development_dependency 'rake', '~> 10.0'
31
+ spec.add_development_dependency 'rspec', '~> 3.0'
32
+ spec.add_development_dependency 'rubocop'
33
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'faraday'
4
+ require 'faraday_middleware'
5
+
6
+ require 'geekbot/client'
7
+ require 'geekbot/version'
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Geekbot
4
+ module ApiMethods
5
+ def index_teams(params: nil, headers: nil)
6
+ get('/v1/teams', params, headers)
7
+ end
8
+
9
+ def index_reports(params: nil, headers: nil)
10
+ get('/v1/reports', params, headers)
11
+ end
12
+
13
+ def index_standups(params: nil, headers: nil)
14
+ get('/v1/standups', params, headers)
15
+ end
16
+
17
+ def show_standup(id:, params: nil, headers: nil)
18
+ get("/v1/standups/#{id}", params, headers)
19
+ end
20
+
21
+ def create_standup(params: nil, headers: nil)
22
+ post('/v1/standups', params, headers)
23
+ end
24
+
25
+ def update_standup(id:, params: nil, headers: nil)
26
+ patch("/v1/standups/#{id}", params, headers)
27
+ end
28
+
29
+ def replace_standup(id:, params: nil, headers: nil)
30
+ put("/v1/standups/#{id}", params, headers)
31
+ end
32
+
33
+ def destroy_standup(id:, params: nil, headers: nil)
34
+ delete("/v1/standups/#{id}", params, headers)
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'geekbot/api_methods'
4
+ require 'geekbot/connection'
5
+ require 'geekbot/response'
6
+
7
+ module Geekbot
8
+ class Client
9
+ include ApiMethods
10
+ include Connection
11
+
12
+ def initialize(access_token: nil)
13
+ @access_token = access_token
14
+ end
15
+
16
+ def get(path, params = nil, headers = nil)
17
+ request(:get, path, params, headers)
18
+ end
19
+
20
+ def post(path, params = nil, headers = nil)
21
+ request(:post, path, params, headers)
22
+ end
23
+
24
+ def put(path, params = nil, headers = nil)
25
+ request(:put, path, params, headers)
26
+ end
27
+
28
+ def patch(path, params = nil, headers = nil)
29
+ request(:patch, path, params, headers)
30
+ end
31
+
32
+ def delete(path, params = nil, headers = nil)
33
+ request(:delete, path, params, headers)
34
+ end
35
+
36
+ private
37
+
38
+ def request(method, path, params, headers)
39
+ Geekbot::Response.new(connection.send(method, path, params, headers))
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,43 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Geekbot
4
+ module Connection
5
+ def connection
6
+ @connection ||= Faraday.new(faraday_options) do |conn|
7
+ conn.request :json
8
+ conn.response :json
9
+ conn.adapter Faraday.default_adapter
10
+ end
11
+ end
12
+
13
+ private
14
+
15
+ def faraday_options
16
+ {
17
+ url: api_endpoint,
18
+ headers: faraday_headers
19
+ }
20
+ end
21
+
22
+ def default_headers
23
+ {
24
+ 'Accept' => 'application/json',
25
+ 'User-Agent' => "Geekbot Ruby Gem #{Geekbot::VERSION}"
26
+ }
27
+ end
28
+
29
+ def api_endpoint
30
+ @api_endpoint ||= ENV['GEEKBOT_API_ENDPOINT'] || 'https://api.geekbot.io'
31
+ end
32
+
33
+ def faraday_headers
34
+ return default_headers unless access_token
35
+
36
+ default_headers.merge(Authorization: access_token.to_s)
37
+ end
38
+
39
+ def access_token
40
+ @access_token ||= ENV['GEEKBOT_ACCESS_TOKEN']
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Geekbot
4
+ class GeekbotError < StandardError
5
+ end
6
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Geekbot
4
+ class Response
5
+ def initialize(response)
6
+ @raw_body = response.body
7
+ @raw_headers = response.headers
8
+ @raw_status = response.status
9
+ end
10
+
11
+ def status
12
+ @raw_status
13
+ end
14
+
15
+ def headers
16
+ @headers ||= @raw_headers.inject({}) do |result, (key, value)|
17
+ result.merge(key.split('-').map(&:capitalize).join('-') => value)
18
+ end
19
+ end
20
+
21
+ def body
22
+ @raw_body
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Geekbot
4
+ VERSION = '0.1.1'
5
+ end
metadata ADDED
@@ -0,0 +1,179 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: geekbot
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Pegasus204
8
+ - eitoball
9
+ autorequire:
10
+ bindir: exe
11
+ cert_chain: []
12
+ date: 2018-12-05 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: faraday
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ">="
19
+ - !ruby/object:Gem::Version
20
+ version: '0'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: '0'
28
+ - !ruby/object:Gem::Dependency
29
+ name: faraday_middleware
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: bundler
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '1.16'
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '1.16'
56
+ - !ruby/object:Gem::Dependency
57
+ name: dotenv
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ - !ruby/object:Gem::Dependency
71
+ name: pry
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ - !ruby/object:Gem::Dependency
85
+ name: rake
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - "~>"
89
+ - !ruby/object:Gem::Version
90
+ version: '10.0'
91
+ type: :development
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '10.0'
98
+ - !ruby/object:Gem::Dependency
99
+ name: rspec
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: '3.0'
105
+ type: :development
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - "~>"
110
+ - !ruby/object:Gem::Version
111
+ version: '3.0'
112
+ - !ruby/object:Gem::Dependency
113
+ name: rubocop
114
+ requirement: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ type: :development
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ description: Geekbot API client library, written in Ruby
127
+ email:
128
+ - tenma.fukaya@misoca.jp
129
+ - eitoball@gmail.com
130
+ executables: []
131
+ extensions: []
132
+ extra_rdoc_files: []
133
+ files:
134
+ - ".github/PULL_REQUEST_TEMPLATE.md"
135
+ - ".gitignore"
136
+ - ".rspec"
137
+ - ".rubocop.yml"
138
+ - ".travis.yml"
139
+ - CODE_OF_CONDUCT.md
140
+ - Gemfile
141
+ - Gemfile.lock
142
+ - LICENSE.txt
143
+ - README.md
144
+ - Rakefile
145
+ - bin/console
146
+ - bin/setup
147
+ - geekbot.gemspec
148
+ - lib/geekbot.rb
149
+ - lib/geekbot/api_methods.rb
150
+ - lib/geekbot/client.rb
151
+ - lib/geekbot/connection.rb
152
+ - lib/geekbot/errors.rb
153
+ - lib/geekbot/response.rb
154
+ - lib/geekbot/version.rb
155
+ homepage: https://github.com/standfirm/geekbot_ruby
156
+ licenses:
157
+ - MIT
158
+ metadata: {}
159
+ post_install_message:
160
+ rdoc_options: []
161
+ require_paths:
162
+ - lib
163
+ required_ruby_version: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - ">="
166
+ - !ruby/object:Gem::Version
167
+ version: '0'
168
+ required_rubygems_version: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: '0'
173
+ requirements: []
174
+ rubyforge_project:
175
+ rubygems_version: 2.7.6
176
+ signing_key:
177
+ specification_version: 4
178
+ summary: Geekbot API client library, written in Ruby
179
+ test_files: []