backlog_kit 0.16.0 → 0.17.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
- SHA1:
3
- metadata.gz: a7ca509fe9d7787a6e962d60ed9f30609397a06a
4
- data.tar.gz: d1da80c411566ee821dd958b96e9644fdd0f041f
2
+ SHA256:
3
+ metadata.gz: a06b78038f91d4110917c5b60544df6836a3542296e66476de42b52c879748cd
4
+ data.tar.gz: f02e13bf9e6bf2a3c1d647362db68afe18b042e078a89a02447d2c124f2f9ae4
5
5
  SHA512:
6
- metadata.gz: db63fa4bca01b5b7510eb5d2908040f6f218a3181ed6f047c3bedc397b09094c13eaf6b03c6f818bbc4472143038eae764fb00c3f7adf90118eadf4e959ea8d2
7
- data.tar.gz: d107c24c85c8ddf0bfc75fb0bdcc8046fd0689990af46e234d2f425a4de2d83c42280f83f80da89590963447fb89071e821ad58b76a452a0bab9d461c2c040db
6
+ metadata.gz: 512265584568409333e0fb0524b2dbd693fefa2c91e30e5afca8b23000236a89e23030cad40dc2913ced52cecc1857da91f9a297f672326f405b3cd41d6fc66b
7
+ data.tar.gz: e6a1c28d70926b88dc9c5d87c20fbee4545f55d229dac803e0ea20b3ce84791d7cec53130a52e145dbceec35f0e4514ec826702f024d7586a77e711bab4610bf
data/.rspec CHANGED
@@ -1,2 +1 @@
1
- --format documentation
2
1
  --require spec_helper
@@ -16,7 +16,7 @@ Metrics/BlockLength:
16
16
  Metrics/ModuleLength:
17
17
  Enabled: false
18
18
 
19
- Style/AccessorMethodName:
19
+ Naming/AccessorMethodName:
20
20
  Enabled: false
21
21
 
22
22
  Style/BracesAroundHashParameters:
@@ -25,6 +25,10 @@ Style/BracesAroundHashParameters:
25
25
  Style/DoubleNegation:
26
26
  Enabled: false
27
27
 
28
+ Style/IfUnlessModifier:
29
+ Exclude:
30
+ - 'Gemfile'
31
+
28
32
  Style/NumericLiterals:
29
33
  Enabled: false
30
34
 
@@ -1,22 +1,23 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2017-11-03 12:25:10 +0900 using RuboCop version 0.51.0.
3
+ # on 2018-04-07 14:20:55 +0900 using RuboCop version 0.54.0.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
+ # Offense count: 1
10
+ # Configuration parameters: Include.
11
+ # Include: **/*.gemspec
12
+ Gemspec/RequiredRubyVersion:
13
+ Exclude:
14
+ - 'backlog_kit.gemspec'
15
+
9
16
  # Offense count: 3
10
17
  Lint/UriEscapeUnescape:
11
18
  Exclude:
12
19
  - 'lib/backlog_kit/client.rb'
13
20
 
14
- # Offense count: 304
15
- # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
16
- # URISchemes: http, https
17
- Metrics/LineLength:
18
- Max: 176
19
-
20
21
  # Offense count: 9
21
22
  Style/Documentation:
22
23
  Exclude:
@@ -29,3 +30,9 @@ Style/Documentation:
29
30
  - 'lib/backlog_kit/response/file_parser.rb'
30
31
  - 'lib/backlog_kit/response/middleware.rb'
31
32
  - 'lib/backlog_kit/response/raise_error.rb'
33
+
34
+ # Offense count: 304
35
+ # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
36
+ # URISchemes: http, https
37
+ Metrics/LineLength:
38
+ Max: 176
@@ -2,9 +2,11 @@ language: ruby
2
2
  rvm:
3
3
  - 2.0.0
4
4
  - 2.1.10
5
- - 2.2.8
6
- - 2.3.5
7
- - 2.4.2
5
+ - 2.2.10
6
+ - 2.3.7
7
+ - 2.4.4
8
+ - 2.5.1
9
+ - ruby-head
8
10
  before_install:
9
11
  - gem update --system
10
12
  - gem update bundler
@@ -0,0 +1,119 @@
1
+ # Change Log
2
+
3
+ ## 0.17.0 (2018-06-24)
4
+
5
+ ### Features
6
+
7
+ * Change default `top_level_domain` from `jp` to `com`
8
+ * Add `second_level_domain`
9
+
10
+ ## 0.16.0 (2017-11-03)
11
+
12
+ ### Features
13
+
14
+ * Add `top_level_domain`
15
+
16
+ ## 0.15.0 (2016-11-23)
17
+
18
+ ### Features
19
+
20
+ * Rename `mark_as_read_watching` -> `mark_as_read_watchings`
21
+ * Add `mark_as_read_watching`
22
+
23
+ ## 0.14.0 (2016-11-04)
24
+
25
+ ### Features
26
+
27
+ * Support Watching API
28
+
29
+ ## 0.13.0 (2015-09-13)
30
+
31
+ ### Features
32
+
33
+ * Set required Ruby version to >= 2.0.0
34
+ * Rename `reset_already_read_notification_count` -> `reset_unread_notification_count`
35
+ * Support Pull Request API
36
+
37
+ ### Bug Fixes
38
+
39
+ * Enable `get_projects` to receive params
40
+
41
+ ## 0.12.1 (2015-05-17)
42
+
43
+ ### Bug Fixes
44
+
45
+ * Fix unexpected ArgumentError on Ruby 2.0.0
46
+
47
+ ## 0.12.0 (2015-05-16)
48
+
49
+ ### Features
50
+
51
+ * Support OAuth 2.0 authorization
52
+
53
+ ## 0.11.0 (2015-05-13)
54
+
55
+ ### Features
56
+
57
+ * Support Project API (only free plan)
58
+
59
+ ## 0.10.0 (2015-05-12)
60
+
61
+ ### Features
62
+
63
+ * Support Wiki API (only free plan)
64
+
65
+ ## 0.9.0 (2015-05-11)
66
+
67
+ ### Features
68
+
69
+ * Support Issue API
70
+
71
+ ## 0.8.0 (2015-05-10)
72
+
73
+ ### Features
74
+
75
+ * Support User API
76
+
77
+ ## 0.7.0 (2015-05-10)
78
+
79
+ ### Features
80
+
81
+ * Support Space API
82
+
83
+ ## 0.6.0 (2015-05-10)
84
+
85
+ ### Features
86
+
87
+ * Support Notification API
88
+
89
+ ## 0.5.0 (2015-05-09)
90
+
91
+ ### Features
92
+
93
+ * Support Star API
94
+
95
+ ## 0.4.0 (2015-05-09)
96
+
97
+ ### Features
98
+
99
+ * Support Status API
100
+ * Support Resolution API
101
+ * Support Priority API
102
+
103
+ ## 0.3.0 (2015-05-09)
104
+
105
+ ### Features
106
+
107
+ * Support Group API
108
+
109
+ ## 0.2.0 (2015-05-09)
110
+
111
+ ### Features
112
+
113
+ * Support Git API
114
+
115
+ ## 0.1.0 (2015-05-06)
116
+
117
+ ### Features
118
+
119
+ * Support low-level methods
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015-2017 emsk
3
+ Copyright (c) 2015-2018 emsk
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/backlog_kit.svg)](http://badge.fury.io/rb/backlog_kit)
4
4
  [![Build Status](https://travis-ci.org/emsk/backlog_kit.svg?branch=master)](https://travis-ci.org/emsk/backlog_kit)
5
- [![Coverage Status](https://coveralls.io/repos/emsk/backlog_kit/badge.svg?branch=master)](https://coveralls.io/r/emsk/backlog_kit)
5
+ [![Build status](https://ci.appveyor.com/api/projects/status/no4jqaoimctfsejj?svg=true)](https://ci.appveyor.com/project/emsk/backlog-kit)
6
+ [![Codecov](https://codecov.io/gh/emsk/backlog_kit/branch/master/graph/badge.svg)](https://codecov.io/gh/emsk/backlog_kit)
6
7
  [![Code Climate](https://codeclimate.com/github/emsk/backlog_kit/badges/gpa.svg)](https://codeclimate.com/github/emsk/backlog_kit)
7
- [![Dependency Status](https://gemnasium.com/emsk/backlog_kit.svg)](https://gemnasium.com/emsk/backlog_kit)
8
8
  [![Inline docs](http://inch-ci.org/github/emsk/backlog_kit.svg?branch=master)](http://inch-ci.org/github/emsk/backlog_kit)
9
9
  [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
10
10
 
@@ -80,18 +80,19 @@ client = BacklogKit::Client.new(
80
80
  )
81
81
  ```
82
82
 
83
- ## ENV
83
+ ## BacklogKit::Client Config
84
84
 
85
- | ENV Variable | Description |
86
- | :----------- | :---------- |
87
- | `BACKLOG_SPACE_ID` | Your Backlog SPACE ID. |
88
- | `BACKLOG_TOP_LEVEL_DOMAIN` | Your Backlog TOP LEVEL DOMAIN. |
89
- | `BACKLOG_API_KEY` | Your Backlog API KEY. |
90
- | `BACKLOG_OAUTH_CLIENT_ID` | CLIENT ID of your Backlog application. |
91
- | `BACKLOG_OAUTH_CLIENT_SECRET` | CLIENT SECRET of your Backlog application. |
92
- | `BACKLOG_OAUTH_REFRESH_TOKEN` | REFRESH TOKEN obtained from the Backlog token endpoint. |
85
+ | Variable | ENV Variable | Description | Default |
86
+ | :------- | :----------- | :---------- | :------ |
87
+ | `space_id` | `BACKLOG_SPACE_ID` | Your Backlog SPACE ID. ||
88
+ | `second_level_domain` | `BACKLOG_SECOND_LEVEL_DOMAIN` | Your Backlog SECOND LEVEL DOMAIN. | `backlog` |
89
+ | `top_level_domain` | `BACKLOG_TOP_LEVEL_DOMAIN` | Your Backlog TOP LEVEL DOMAIN. | `com` |
90
+ | `api_key` | `BACKLOG_API_KEY` | Your Backlog API KEY. ||
91
+ | `client_id` | `BACKLOG_OAUTH_CLIENT_ID` | CLIENT ID of your Backlog application. ||
92
+ | `client_secret` | `BACKLOG_OAUTH_CLIENT_SECRET` | CLIENT SECRET of your Backlog application. ||
93
+ | `refresh_token` | `BACKLOG_OAUTH_REFRESH_TOKEN` | REFRESH TOKEN obtained from the token endpoint. ||
93
94
 
94
- You can create instance more easily.
95
+ If you set ENV variables, you can create an instance more simply.
95
96
 
96
97
  ```ruby
97
98
  client = BacklogKit::Client.new
@@ -110,32 +111,7 @@ BacklogKit's API documentation is [here](http://www.rubydoc.info/gems/backlog_ki
110
111
  * Ruby 2.2
111
112
  * Ruby 2.3
112
113
  * Ruby 2.4
113
-
114
- ## Development
115
-
116
- ### Dependencies
117
-
118
- ##### Production
119
-
120
- * [activesupport](https://github.com/rails/rails/tree/master/activesupport)
121
- * [faraday](https://github.com/lostisland/faraday)
122
- * [faraday_middleware](https://github.com/lostisland/faraday_middleware)
123
-
124
- ##### Development
125
-
126
- * [bundler](https://github.com/bundler/bundler)
127
- * [coveralls](https://github.com/lemurheavy/coveralls-ruby)
128
- * [multi_json](https://github.com/intridea/multi_json)
129
- * [rake](https://github.com/ruby/rake)
130
- * [redcarpet](https://github.com/vmg/redcarpet)
131
- * [rspec](https://github.com/rspec/rspec)
132
- * [rubocop](https://github.com/bbatsov/rubocop)
133
- * [simplecov](https://github.com/colszowka/simplecov)
134
- * [vcr](https://github.com/vcr/vcr)
135
- * [webmock](https://github.com/bblimke/webmock)
136
- * [yard](https://github.com/lsegal/yard)
137
-
138
- See [`backlog_kit.gemspec`](backlog_kit.gemspec).
114
+ * Ruby 2.5
139
115
 
140
116
  ## Contributing
141
117
 
@@ -0,0 +1,34 @@
1
+ version: 1.0.{build}-{branch}
2
+
3
+ environment:
4
+ BACKLOG_SPACE_ID:
5
+ secure: kr2ydONkTrsvlVKYCdQxSw==
6
+ BACKLOG_API_KEY:
7
+ secure: g+q5mcsZYYPnCP0klGetdO2LdD+HBP9hH+157sGi7vScSckyi4h76iYqsanJGnwK+fPV6waPofDPH+b3O2gBZNTef7dIJnAa/IBqUhLMgZE=
8
+ matrix:
9
+ - RUBY_VERSION: 200
10
+ - RUBY_VERSION: 200-x64
11
+ - RUBY_VERSION: 21
12
+ - RUBY_VERSION: 21-x64
13
+ - RUBY_VERSION: 22
14
+ - RUBY_VERSION: 22-x64
15
+ - RUBY_VERSION: 23
16
+ - RUBY_VERSION: 23-x64
17
+ - RUBY_VERSION: 24
18
+ - RUBY_VERSION: 24-x64
19
+ - RUBY_VERSION: 25
20
+ - RUBY_VERSION: 25-x64
21
+
22
+ install:
23
+ - set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
24
+ - bundle install
25
+
26
+ build: off
27
+
28
+ before_test:
29
+ - ruby -v
30
+ - gem -v
31
+ - bundle -v
32
+
33
+ test_script:
34
+ - bundle exec rake
@@ -1,4 +1,4 @@
1
- lib = File.expand_path('../lib', __FILE__)
1
+ lib = File.expand_path('lib', __dir__)
2
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
  require 'backlog_kit/version'
4
4
 
@@ -21,17 +21,17 @@ Gem::Specification.new do |spec|
21
21
  spec.required_ruby_version = '>= 2.0.0'
22
22
 
23
23
  spec.add_runtime_dependency 'activesupport', '>= 4.2.7.1'
24
- spec.add_runtime_dependency 'faraday', '~> 0.13.1'
24
+ spec.add_runtime_dependency 'faraday', '~> 0.15.2'
25
25
  spec.add_runtime_dependency 'faraday_middleware', '~> 0.12.2'
26
- spec.add_development_dependency 'bundler', '~> 1.6'
27
- spec.add_development_dependency 'coveralls', '~> 0.8.21'
28
- spec.add_development_dependency 'multi_json', '~> 1.12'
29
- spec.add_development_dependency 'rake', '~> 12.0'
26
+ spec.add_development_dependency 'bundler', '~> 1.16'
27
+ spec.add_development_dependency 'codecov', '~> 0.1.10'
28
+ spec.add_development_dependency 'multi_json', '~> 1.13'
29
+ spec.add_development_dependency 'rake', '~> 12.3'
30
30
  spec.add_development_dependency 'redcarpet', '~> 3.4'
31
31
  spec.add_development_dependency 'rspec', '~> 3.7'
32
- spec.add_development_dependency 'rubocop', '~> 0.51.0'
33
- spec.add_development_dependency 'simplecov', '~> 0.14'
34
- spec.add_development_dependency 'vcr', '~> 3.0'
35
- spec.add_development_dependency 'webmock', '~> 3.1'
36
- spec.add_development_dependency 'yard', '~> 0.9.9'
32
+ spec.add_development_dependency 'rubocop', '~> 0.57.2'
33
+ spec.add_development_dependency 'simplecov', '~> 0.16'
34
+ spec.add_development_dependency 'vcr', '~> 4.0'
35
+ spec.add_development_dependency 'webmock', '~> 3.4'
36
+ spec.add_development_dependency 'yard', '~> 0.9.14'
37
37
  end
@@ -43,6 +43,7 @@ module BacklogKit
43
43
 
44
44
  attr_accessor(
45
45
  :space_id,
46
+ :second_level_domain,
46
47
  :top_level_domain,
47
48
  :api_key,
48
49
  :client_id,
@@ -57,18 +58,20 @@ module BacklogKit
57
58
  #
58
59
  # @param options [Hash] Initialize options
59
60
  # @option options [String] :space_id Backlog space id
61
+ # @option options [String] :second_level_domain Backlog second level domain
60
62
  # @option options [String] :top_level_domain Backlog top level domain
61
63
  # @option options [String] :api_key Backlog api key
62
64
  # @option options [String] :client_id Backlog OAuth client id
63
65
  # @option options [String] :client_secret Backlog OAuth client secret
64
66
  # @option options [String] :refresh_token Backlog OAuth refresh token
65
67
  def initialize(options = {})
66
- @space_id = ENV['BACKLOG_SPACE_ID']
67
- @top_level_domain = ENV['BACKLOG_TOP_LEVEL_DOMAIN'] || 'jp'
68
- @api_key = ENV['BACKLOG_API_KEY']
69
- @client_id = ENV['BACKLOG_OAUTH_CLIENT_ID']
70
- @client_secret = ENV['BACKLOG_OAUTH_CLIENT_SECRET']
71
- @refresh_token = ENV['BACKLOG_OAUTH_REFRESH_TOKEN']
68
+ @space_id = ENV['BACKLOG_SPACE_ID']
69
+ @second_level_domain = ENV['BACKLOG_SECOND_LEVEL_DOMAIN'] || 'backlog'
70
+ @top_level_domain = ENV['BACKLOG_TOP_LEVEL_DOMAIN'] || 'com'
71
+ @api_key = ENV['BACKLOG_API_KEY']
72
+ @client_id = ENV['BACKLOG_OAUTH_CLIENT_ID']
73
+ @client_secret = ENV['BACKLOG_OAUTH_CLIENT_SECRET']
74
+ @refresh_token = ENV['BACKLOG_OAUTH_REFRESH_TOKEN']
72
75
 
73
76
  options.each do |key, value|
74
77
  instance_variable_set(:"@#{key}", value)
@@ -152,7 +155,7 @@ module BacklogKit
152
155
  end
153
156
 
154
157
  def host
155
- "https://#{space_id}.backlog.#{top_level_domain}"
158
+ "https://#{space_id}.#{second_level_domain}.#{top_level_domain}"
156
159
  end
157
160
 
158
161
  def request_headers
@@ -1,3 +1,3 @@
1
1
  module BacklogKit
2
- VERSION = '0.16.0'.freeze
2
+ VERSION = '0.17.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: backlog_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - emsk
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-11-03 00:00:00.000000000 Z
11
+ date: 2018-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.13.1
33
+ version: 0.15.2
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.13.1
40
+ version: 0.15.2
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: faraday_middleware
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -58,56 +58,56 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '1.6'
61
+ version: '1.16'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '1.6'
68
+ version: '1.16'
69
69
  - !ruby/object:Gem::Dependency
70
- name: coveralls
70
+ name: codecov
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 0.8.21
75
+ version: 0.1.10
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 0.8.21
82
+ version: 0.1.10
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: multi_json
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '1.12'
89
+ version: '1.13'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '1.12'
96
+ version: '1.13'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: rake
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '12.0'
103
+ version: '12.3'
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: '12.0'
110
+ version: '12.3'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: redcarpet
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -142,70 +142,70 @@ dependencies:
142
142
  requirements:
143
143
  - - "~>"
144
144
  - !ruby/object:Gem::Version
145
- version: 0.51.0
145
+ version: 0.57.2
146
146
  type: :development
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - "~>"
151
151
  - !ruby/object:Gem::Version
152
- version: 0.51.0
152
+ version: 0.57.2
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: simplecov
155
155
  requirement: !ruby/object:Gem::Requirement
156
156
  requirements:
157
157
  - - "~>"
158
158
  - !ruby/object:Gem::Version
159
- version: '0.14'
159
+ version: '0.16'
160
160
  type: :development
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
164
  - - "~>"
165
165
  - !ruby/object:Gem::Version
166
- version: '0.14'
166
+ version: '0.16'
167
167
  - !ruby/object:Gem::Dependency
168
168
  name: vcr
169
169
  requirement: !ruby/object:Gem::Requirement
170
170
  requirements:
171
171
  - - "~>"
172
172
  - !ruby/object:Gem::Version
173
- version: '3.0'
173
+ version: '4.0'
174
174
  type: :development
175
175
  prerelease: false
176
176
  version_requirements: !ruby/object:Gem::Requirement
177
177
  requirements:
178
178
  - - "~>"
179
179
  - !ruby/object:Gem::Version
180
- version: '3.0'
180
+ version: '4.0'
181
181
  - !ruby/object:Gem::Dependency
182
182
  name: webmock
183
183
  requirement: !ruby/object:Gem::Requirement
184
184
  requirements:
185
185
  - - "~>"
186
186
  - !ruby/object:Gem::Version
187
- version: '3.1'
187
+ version: '3.4'
188
188
  type: :development
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
192
  - - "~>"
193
193
  - !ruby/object:Gem::Version
194
- version: '3.1'
194
+ version: '3.4'
195
195
  - !ruby/object:Gem::Dependency
196
196
  name: yard
197
197
  requirement: !ruby/object:Gem::Requirement
198
198
  requirements:
199
199
  - - "~>"
200
200
  - !ruby/object:Gem::Version
201
- version: 0.9.9
201
+ version: 0.9.14
202
202
  type: :development
203
203
  prerelease: false
204
204
  version_requirements: !ruby/object:Gem::Requirement
205
205
  requirements:
206
206
  - - "~>"
207
207
  - !ruby/object:Gem::Version
208
- version: 0.9.9
208
+ version: 0.9.14
209
209
  description: Client library for the Nulab's Backlog API version 2 written in Ruby.
210
210
  email:
211
211
  - emsk1987@gmail.com
@@ -213,17 +213,18 @@ executables: []
213
213
  extensions: []
214
214
  extra_rdoc_files: []
215
215
  files:
216
- - ".coveralls.yml"
217
216
  - ".gitignore"
218
217
  - ".rspec"
219
218
  - ".rubocop.yml"
220
219
  - ".rubocop_todo.yml"
221
220
  - ".travis.yml"
222
221
  - ".yardopts"
222
+ - CHANGELOG.md
223
223
  - Gemfile
224
224
  - LICENSE
225
225
  - README.md
226
226
  - Rakefile
227
+ - appveyor.yml
227
228
  - backlog_kit.gemspec
228
229
  - bin/console
229
230
  - bin/setup
@@ -272,7 +273,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
272
273
  version: '0'
273
274
  requirements: []
274
275
  rubyforge_project:
275
- rubygems_version: 2.6.10
276
+ rubygems_version: 2.7.6
276
277
  signing_key:
277
278
  specification_version: 4
278
279
  summary: Wrapper for the Backlog API v2.
@@ -1 +0,0 @@
1
- service_name: travis-ci