ctws 0.1.14.beta → 0.2.0.beta

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
  SHA1:
3
- metadata.gz: 42cf1778d44f1e0fc1b9c0be34387d7746070979
4
- data.tar.gz: d5948630771004880418c9164559198bfc0a937a
3
+ metadata.gz: a6c25ba08ef913a24e861aba68d2db65fa8d565d
4
+ data.tar.gz: b52120e6a18aacd9a858f85af3192aab2f2e4dd9
5
5
  SHA512:
6
- metadata.gz: '08c94533c262016260efd779fae227de4a2eb5adf1a3d8cc8cca412106d31a768eb9bb152d2a6655da7aa995328a603221c6bd2d63d7ff491af38cd42eef4eb7'
7
- data.tar.gz: 05d48c75a9ea212fb9bb583ded70685bda1e87c00ecac427bfccf34ddb811414725e97a2af43db67e42bba55b0ef8b417c32cf9555325c958097c212766b1ebd
6
+ metadata.gz: e25816a5b51a541350ae19078fa34529a89283ce87c9640a048d55d1775d086f87a47d385982fa5536e770a5a43ccb43941ba83086ebba14ebc0aec17e3e0460
7
+ data.tar.gz: 39505555c5fa0ee29712ac8f20e28ab49c67583dd6190d0cf856bcc1a41b2029b65f2b96395dd3509a7e536f047ad94b7af266b2928decddd49d7083aa0805ec
@@ -0,0 +1,6 @@
1
+ module Ctws
2
+ module V2
3
+ class AuthenticationController < Ctws::AuthenticationController
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module Ctws
2
+ module V2
3
+ class UsersController < Ctws::UsersController
4
+ end
5
+ end
6
+ end
@@ -28,15 +28,15 @@ module Ctws
28
28
  I18n.t('ctws.resource_created', resource: resource)
29
29
  end
30
30
 
31
- def self.resource_updated(resource: resource)
31
+ def self.resource_updated(resource)
32
32
  I18n.t('ctws.resource_updated', resource: resource)
33
33
  end
34
34
 
35
- def self.resource_not_created(resource: resource)
35
+ def self.resource_not_created(resource)
36
36
  I18n.t('ctws.resource_not_created', resource: resource)
37
37
  end
38
38
 
39
- def self.resource_doesnt_exist(resource: resource)
39
+ def self.resource_doesnt_exist(resource)
40
40
  I18n.t('ctws.resource_doesnt_exist', resource: resource)
41
41
  end
42
42
 
data/lib/ctws/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Ctws
2
- VERSION = '0.1.14.beta'
2
+ VERSION = '0.2.0.beta'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ctws
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.14.beta
4
+ version: 0.2.0.beta
5
5
  platform: ruby
6
6
  authors:
7
7
  - Agustí B.R.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-19 00:00:00.000000000 Z
11
+ date: 2018-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -193,8 +193,10 @@ files:
193
193
  - app/controllers/ctws/v1/ctws_controller.rb
194
194
  - app/controllers/ctws/v1/min_app_versions_controller.rb
195
195
  - app/controllers/ctws/v1/users_controller.rb
196
+ - app/controllers/ctws/v2/authentication_controller.rb
196
197
  - app/controllers/ctws/v2/ctws_controller.rb
197
198
  - app/controllers/ctws/v2/min_app_versions_controller.rb
199
+ - app/controllers/ctws/v2/users_controller.rb
198
200
  - app/jobs/ctws/application_job.rb
199
201
  - app/lib/ctws/json_web_token.rb
200
202
  - app/lib/ctws/message.rb