calendlyr 0.3.6 → 0.4.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: e53e19c9a9bcc92787f9fe776a53e64668eb13939ff7cddb8ebc42220a2346f2
4
- data.tar.gz: 3a36e15c5c436c852edbf69d177e147b3bf7615a0a5bec93e7a257947df39f5a
3
+ metadata.gz: 8c61eeba097d722afae96ec580cd3c846b81ddf3086be6af4937ec4988a54a3d
4
+ data.tar.gz: e36f1d86bcfdded9881de1f5da03cf68bcaac08f83599be9398224f6484412be
5
5
  SHA512:
6
- metadata.gz: c86a6982263871804c661e3f2b554d3d49d253835f4faebac93c6acdcc4538078ba7dd77d837e8e5f8533cf9ae22da05b813c445ea8e90e903e1269a6e138cc5
7
- data.tar.gz: af2ab8a21873283cdd588267a7c39ba2699e949bb829c15a6a66f61672ad496e69b776ed93849a667cf34e73ab62b1b7eaa7e005165710eca87e9bb5721348b4
6
+ metadata.gz: fc9d65be6a30c2319e386afed5301d9e6a45131fb846a5b3701b5d4f8d14afe292344bbf05e57bb3bdf78e68038eb962a2226fac75255d24269ee95da3cb2591
7
+ data.tar.gz: aab622e3c919bb2bbad49fb026e6f17bfd460f81b3929c3d4c854d2d230f1cd4712b1bb62711223b93477dbe347b6d87be9405698aaa1fbbce8313d193c1e1d7
data/CHANGELOG.md CHANGED
@@ -2,39 +2,7 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [0.3.6]
6
- * User caching
5
+ ## [0.4.0]
6
+ * First real usable release :tada:
7
7
 
8
- ## [0.3.4]
9
- * Renaming variables and directories Calendly to Calendlyr
10
-
11
- ## [0.3.3]
12
- * Fix - Error when trying to send an invitation through the organization
13
- * More testing = More coverage
14
-
15
- ## [0.3.2]
16
- * Minor fixes
17
-
18
- ## [0.3.0]
19
- * No runtime dependencies
20
- * Minor fixes
21
-
22
- ## [0.2.0]
23
- * Support for ruby 3.0
24
- * Minor fixes
25
-
26
- ## [0.1.1]
27
- * Changed required ruby version from `>= 2.3.0` to `>= 2.4.0`
28
- * Minitest
29
- * Minor fixes
30
-
31
- ## 0.1.0
32
- * Birthday!
33
-
34
- [0.3.6]: https://github.com/araluce/calendlyr/compare/v0.3.4...v0.3.6
35
- [0.3.4]: https://github.com/araluce/calendlyr/compare/v0.3.3...v0.3.4
36
- [0.3.3]: https://github.com/araluce/calendlyr/compare/v0.3.2...v0.3.3
37
- [0.3.2]: https://github.com/araluce/calendlyr/compare/v0.3.0...v0.3.2
38
- [0.3.0]: https://github.com/araluce/calendlyr/compare/v0.2.0...v0.3.0
39
- [0.2.0]: https://github.com/araluce/calendlyr/compare/v0.1.1...v0.2.0
40
- [0.1.1]: https://github.com/araluce/calendlyr/compare/v0.1.0...v0.1.1
8
+ [0.4.0]: https://github.com/araluce/calendlyr/compare/v0.1.0...v0.4.0
data/README.md CHANGED
@@ -171,6 +171,6 @@ When adding resources, add to the list of resources in lib/calendlyr. Additional
171
171
 
172
172
  ## Thanks
173
173
 
174
- Many thanks [@markets](https://github.com/markets) for all comments, details and tips for this rubygem project and for made me grow professionally in my day by day :raised_hands:
174
+ Many thanks [@markets](https://github.com/markets) (our contributor in the shadows) for all comments, details and tips for this rubygem project and for made me grow professionally in my day by day :raised_hands:
175
175
 
176
176
  Thanks [@excid3](https://github.com/excid3) and his [Vultr.rb](https://github.com/excid3/vultr.rb) rubygem project.
@@ -1,3 +1,6 @@
1
+ require "uri"
2
+ require "cgi"
3
+
1
4
  module Calendlyr
2
5
  class Collection
3
6
  attr_reader :data, :count, :next_page, :next_page_token, :client
@@ -1,3 +1,8 @@
1
+ require "net/http"
2
+ require "json"
3
+ require "openssl"
4
+ require "uri"
5
+
1
6
  module Calendlyr
2
7
  class Resource
3
8
  attr_reader :client
@@ -1,3 +1,3 @@
1
1
  module Calendlyr
2
- VERSION = "0.3.6"
2
+ VERSION = "0.4.0"
3
3
  end
data/lib/calendlyr.rb CHANGED
@@ -1,8 +1,3 @@
1
- require "net/http"
2
- require "uri"
3
- require "json"
4
- require "openssl"
5
- require "cgi"
6
1
  require "calendlyr/version"
7
2
 
8
3
  module Calendlyr
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calendlyr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - araluce