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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a6c25ba08ef913a24e861aba68d2db65fa8d565d
|
|
4
|
+
data.tar.gz: b52120e6a18aacd9a858f85af3192aab2f2e4dd9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e25816a5b51a541350ae19078fa34529a89283ce87c9640a048d55d1775d086f87a47d385982fa5536e770a5a43ccb43941ba83086ebba14ebc0aec17e3e0460
|
|
7
|
+
data.tar.gz: 39505555c5fa0ee29712ac8f20e28ab49c67583dd6190d0cf856bcc1a41b2029b65f2b96395dd3509a7e536f047ad94b7af266b2928decddd49d7083aa0805ec
|
data/app/lib/ctws/message.rb
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
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.
|
|
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-
|
|
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
|