clubhouse_ruby 0.8.0 → 0.10.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
  SHA256:
3
- metadata.gz: 13cb0f9caf06ac43539370c7dfdd923f529957f5103fc302703bb62539f34cce
4
- data.tar.gz: 98ae28e3b8901eb8e04c097f0d4594a1a9f76311cd15f5d0c068e768bed659da
3
+ metadata.gz: 45522d24c367a84e7e275c02608bebb005817a4d72273378be276a829e821450
4
+ data.tar.gz: 25d17170885a8b17586b5a65a66b13367a1cdd16801f32d268b6b7ce5358e85a
5
5
  SHA512:
6
- metadata.gz: c2c5adc1c0e876d8b06c1bbc6e4c0cb5eb04fe237a4eebc61e30a41406f5ff65fede491eb378e44284197c8e23c86d7165d5e31492920ef733b35456f9b536e1
7
- data.tar.gz: 41246481a44cdd266054da35c31bd455a8746ef9e8b1aa819843ef2ce5e576e18eab42e9c15bd3420b38d77cf617c83deaa0f1de04268f959939b6bc2308349a
6
+ metadata.gz: 3e975109f0422f5cc0360706d3fc7dad7dcb6b4bb27a55153b38bac8f167d5e3f0f84cc0dd191aae21f8c64f791cccfd5828bad9cf3b37a5fa96911ea3a835e3
7
+ data.tar.gz: 59c2e807d9e41a6b7a5bd05c9f7fa1afc76fc4ec56851ee8885ceafd9010a035bf76989379dc433de691d715bb83f882164ece6960cd90f354de11baeb198133
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2017 Philip Castiglione
3
+ Copyright (c) 2021 Jake Sorce
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
@@ -42,7 +42,7 @@ operates as an effective turing machine when lubricated with oil.
42
42
 
43
43
  This gem is a lightweight API wrapper. That means you'll need to refer to the
44
44
  [API documentation](https://clubhouse.io/api/rest/v3/) to figure out what resources
45
- and actions exist.
45
+ and actions exist.
46
46
 
47
47
  On the plus side, once you know what you want to do, using this gem should be
48
48
  simple.
@@ -196,7 +196,7 @@ accessing nested resources) followed by a final action that matches the methods
196
196
  in the Clubhouse API documentation.
197
197
 
198
198
  These resources and methods are enumerated in the source code
199
- [here](https://github.com/PhilipCastiglione/clubhouse_ruby/blob/master/lib/clubhouse_ruby/constants.rb)
199
+ [here](https://github.com/jakesorce/clubhouse_ruby/blob/master/lib/clubhouse_ruby/constants.rb)
200
200
  but generally you should find the url you are interested in from the docs.
201
201
 
202
202
  ## Errors
@@ -261,8 +261,8 @@ the API, version 3.
261
261
 
262
262
  If you want something that definitely works with:
263
263
 
264
- * v1, use version 0.2.0 of clubhouse_ruby
265
- * v2, use version 0.3.0 of clubhouse_ruby
264
+ - v1, use version 0.2.0 of clubhouse_ruby
265
+ - v2, use version 0.3.0 of clubhouse_ruby
266
266
 
267
267
  ## Development
268
268
 
@@ -288,7 +288,7 @@ will be in publically visible from the code in this repo.**
288
288
  ## Contributing
289
289
 
290
290
  Bug reports and pull requests are entirely welcome on GitHub at
291
- https://github.com/philipcastiglione/clubhouse_ruby.
291
+ https://github.com/jakesorce/clubhouse_ruby.
292
292
 
293
293
  ## License
294
294
 
@@ -1,16 +1,15 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
1
+ lib = File.expand_path("../lib", __FILE__)
3
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'clubhouse_ruby/version'
3
+ require "clubhouse_ruby/version"
5
4
 
6
5
  Gem::Specification.new do |spec|
7
6
  spec.name = "clubhouse_ruby"
8
7
  spec.version = ClubhouseRuby::VERSION
9
- spec.authors = ["Philip Castiglione"]
10
- spec.email = ["philipcastiglione@gmail.com"]
8
+ spec.authors = ["Jake Sorce"]
9
+ spec.email = ["jakesorce@gmail.com"]
11
10
 
12
- spec.summary = %q{A lightweight Ruby wrapper for the Clubhouse REST API.}
13
- spec.homepage = "https://github.com/PhilipCastiglione/clubhouse_ruby"
11
+ spec.summary = "A lightweight Ruby wrapper for the Clubhouse REST API."
12
+ spec.homepage = "https://github.com/jakesorce/clubhouse_ruby"
14
13
  spec.license = "MIT"
15
14
 
16
15
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
@@ -19,9 +18,9 @@ Gem::Specification.new do |spec|
19
18
  spec.require_paths = ["lib"]
20
19
 
21
20
  spec.add_development_dependency "bundler", "~> 2.1"
21
+ spec.add_development_dependency "dotenv", "~> 2.1"
22
22
  spec.add_development_dependency "rake", "~> 13.0"
23
23
  spec.add_development_dependency "rspec", "~> 3.0"
24
- spec.add_development_dependency "dotenv", "~> 2.1"
25
- spec.add_development_dependency "webmock", "~> 3.7"
26
24
  spec.add_development_dependency "vcr", "~> 6.0"
25
+ spec.add_development_dependency "webmock", "~> 3.7"
27
26
  end
@@ -34,6 +34,7 @@ module ClubhouseRuby
34
34
  :iterations,
35
35
  :labels,
36
36
  :linked_files,
37
+ :member,
37
38
  :members,
38
39
  :milestones,
39
40
  :projects,
@@ -43,7 +44,8 @@ module ClubhouseRuby
43
44
  :teams,
44
45
  :workflows,
45
46
  :tasks,
46
- :comments
47
+ :comments,
48
+ :groups
47
49
  ].freeze
48
50
 
49
51
  # These are the annoying edge cases in the clubhouse api that are don't fit
@@ -1,3 +1,3 @@
1
1
  module ClubhouseRuby
2
- VERSION = "0.8.0"
2
+ VERSION = "0.10.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clubhouse_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
- - Philip Castiglione
7
+ - Jake Sorce
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-11-29 00:00:00.000000000 Z
11
+ date: 2021-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -25,78 +25,78 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: '2.1'
27
27
  - !ruby/object:Gem::Dependency
28
- name: rake
28
+ name: dotenv
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '13.0'
33
+ version: '2.1'
34
34
  type: :development
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: '13.0'
40
+ version: '2.1'
41
41
  - !ruby/object:Gem::Dependency
42
- name: rspec
42
+ name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '3.0'
47
+ version: '13.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '3.0'
54
+ version: '13.0'
55
55
  - !ruby/object:Gem::Dependency
56
- name: dotenv
56
+ name: rspec
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '2.1'
61
+ version: '3.0'
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: '2.1'
68
+ version: '3.0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: webmock
70
+ name: vcr
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '3.7'
75
+ version: '6.0'
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: '3.7'
82
+ version: '6.0'
83
83
  - !ruby/object:Gem::Dependency
84
- name: vcr
84
+ name: webmock
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '6.0'
89
+ version: '3.7'
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: '6.0'
96
+ version: '3.7'
97
97
  description:
98
98
  email:
99
- - philipcastiglione@gmail.com
99
+ - jakesorce@gmail.com
100
100
  executables: []
101
101
  extensions: []
102
102
  extra_rdoc_files: []
@@ -116,7 +116,7 @@ files:
116
116
  - lib/clubhouse_ruby/path_builder.rb
117
117
  - lib/clubhouse_ruby/request.rb
118
118
  - lib/clubhouse_ruby/version.rb
119
- homepage: https://github.com/PhilipCastiglione/clubhouse_ruby
119
+ homepage: https://github.com/jakesorce/clubhouse_ruby
120
120
  licenses:
121
121
  - MIT
122
122
  metadata: {}
@@ -135,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
135
  - !ruby/object:Gem::Version
136
136
  version: '0'
137
137
  requirements: []
138
- rubygems_version: 3.0.3
138
+ rubygems_version: 3.1.4
139
139
  signing_key:
140
140
  specification_version: 4
141
141
  summary: A lightweight Ruby wrapper for the Clubhouse REST API.