dm3-api 0.0.1 → 0.0.2

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
2
  SHA1:
3
- metadata.gz: ecae70151a267b8d65b07b5cf3a220a915e0dc17
4
- data.tar.gz: a9dd8c797dc70bedd8d2942efa2383aa57cde1a2
3
+ metadata.gz: bc97d08fcdbc6017da2f5233450af05146da7d56
4
+ data.tar.gz: 5b2377c7bb3482e78c59c56f63ca72acdece6eda
5
5
  SHA512:
6
- metadata.gz: 7a519dd767e77c404eb8b973f950cb898401f1f3775ecf4e5d2778975d14cf8aee3e2adfb76897904b56b0938b395ed919192293aae35d8dd4c2db831ad816e1
7
- data.tar.gz: 17240bb99c07e9c9519b1a93a5b56661d4a75b1ae8152520436741224771d7f458593ab1e9d70924c9b8e816a1d85a5a2c4387f4097a3bb1a889eb34f246502e
6
+ metadata.gz: 933448c7af0b29b58fdd437479fe34d61a81a738bc1d1efc38bf06550afcfd02133973b3ea6ef2c8303d776c87ca8fab2e494c709e8ec5646559a10dedb87ca0
7
+ data.tar.gz: 6e8bf76444d2c75dbc210f97b1907057c24066b7594cb417658a7ff25ab6fea343601d2884d02e27c3ff5890b7834e5f1a5a2354b02c905a5098e1240880123e
@@ -0,0 +1,7 @@
1
+ class Dm3::Api::Requests::ShowStatus < Dm3::Api::Requests::Get
2
+ private
3
+
4
+ def path
5
+ "/api/v1/customer/status"
6
+ end
7
+ end
@@ -0,0 +1,2 @@
1
+ class Dm3::Api::Responses::ShowStatus < Dm3::Api::Responses::Base
2
+ end
@@ -1,5 +1,5 @@
1
1
  module Dm3
2
2
  module Api
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dm3-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - stevo
@@ -29,6 +29,7 @@ files:
29
29
  - lib/dm3/api/requests/get.rb
30
30
  - lib/dm3/api/requests/post.rb
31
31
  - lib/dm3/api/requests/put.rb
32
+ - lib/dm3/api/requests/show_status.rb
32
33
  - lib/dm3/api/requests/update_booking.rb
33
34
  - lib/dm3/api/responses.rb
34
35
  - lib/dm3/api/responses/base.rb
@@ -36,6 +37,7 @@ files:
36
37
  - lib/dm3/api/responses/bookings.rb
37
38
  - lib/dm3/api/responses/create_booking.rb
38
39
  - lib/dm3/api/responses/destroy_booking.rb
40
+ - lib/dm3/api/responses/show_status.rb
39
41
  - lib/dm3/api/responses/update_booking.rb
40
42
  - lib/dm3/api/version.rb
41
43
  homepage: https://github.com/Selleo/dm3-api