ruby-you 0.1.2 → 0.1.3

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: 623faf8a430200c901df463f9c1ac21682b9d1634874aa8855a9b8439b3ccf8d
4
- data.tar.gz: 7cb712c25e5f8ad54197c27ddde1dfb0a08e726f3a563c4c0feef9c56ad69d6f
3
+ metadata.gz: 50287ed02f925b0ff3df28a4fad0a48eadd82bc9318c272be5ba951d0ee5ee19
4
+ data.tar.gz: e1d5c5f935e2a306bfeaef5623bdc1a7740fe6f98bd1b2c8a293d211436dc0b5
5
5
  SHA512:
6
- metadata.gz: 9c66db2526520587c193cfa1d6def2cb624f180c9c4ec9982d2ce94cf72c0bb0e9e73fa9c755addc1bacc01cdf6ed68df202c37849912ad35433c134d6496873
7
- data.tar.gz: 5379a00ad4e40b2db4b44380020c079a87c7274e8b6672fc196122157c279494f8ade28300a32b46ee28ae0896f0bb5d0d08f3c82237dba3df1ac8165bb60fa6
6
+ metadata.gz: 31f543d0e5e30721b8f5b47f3685a5df2e880c76a79185d72112d8724e97fd6343700f0c30e7b1d6bb02117546e5916fef4c938b50f7aa760543d64025f43bbb
7
+ data.tar.gz: 9901f3d12603172e6b148e5fef031457cd0027541a8ef01beaf2dcabbbcda229ebd1cff0ff4349977965ec86f1c3782ab651a0b9a0ed0d2defb0d8cc4112e6f2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby-you (0.1.2)
4
+ ruby-you (0.1.3)
5
5
  faraday (~> 2.0)
6
6
  faraday-retry (~> 2)
7
7
 
data/lib/ruby/you.rb ADDED
@@ -0,0 +1,2 @@
1
+ require_relative "../you"
2
+ require_relative "../you/compatibility"
@@ -0,0 +1,18 @@
1
+ module Ruby
2
+ module You
3
+ VERSION = ::You::VERSION
4
+
5
+ Error = ::You::Error
6
+ Configuration = ::You::Configuration
7
+ BadRequestError = ::You::BadRequestError
8
+ UnauthorizedError = ::You::UnauthorizedError
9
+ ForbiddenError = ::You::ForbiddenError
10
+ NotFoundError = ::You::NotFoundError
11
+ UnprocessableEntityError = ::You::UnprocessableEntityError
12
+ RateLimitError = ::You::RateLimitError
13
+ InternalServerError = ::You::InternalServerError
14
+ BadGatewayError = ::You::BadGatewayError
15
+ ServiceUnavailableError = ::You::ServiceUnavailableError
16
+ GatewayTimeoutError = ::You::GatewayTimeoutError
17
+ end
18
+ end
data/lib/you/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module You
2
- VERSION = "0.1.2".freeze
2
+ VERSION = "0.1.3".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-you
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Mochetti
@@ -57,8 +57,10 @@ files:
57
57
  - LICENSE.txt
58
58
  - README.md
59
59
  - Rakefile
60
+ - lib/ruby/you.rb
60
61
  - lib/you.rb
61
62
  - lib/you/client.rb
63
+ - lib/you/compatibility.rb
62
64
  - lib/you/configuration.rb
63
65
  - lib/you/error.rb
64
66
  - lib/you/version.rb