ctws 0.1.5.alpha → 0.1.6.alpha

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: 0a79d5e21625b0567f9a3cca15eaee2828f01a34
4
- data.tar.gz: 4ca11d4f89b12d6b0c353cbc0541efb9a7b2d07c
3
+ metadata.gz: 58e4e4ba82f810cec1e53fec7fbee1fecc43ff19
4
+ data.tar.gz: 34da4ce18c185822781b2cef8fde9aba35b5e46f
5
5
  SHA512:
6
- metadata.gz: b7d96fa180bc72676e003910f0ef4cf6aec988db26625dbbd39d67a0e5b9a96675df1969ea574b74275761766fe0068d70eaa1f50ecfb552d0afffe5879626ae
7
- data.tar.gz: 22a334939b4b7f159d62fa9d01f6db7cec8dae94e4f7232852aac0113ebfec742b09eb3971652574994e0211a44e3d7d9dd827f90e2ad4a26f493f53986371b3
6
+ metadata.gz: ff5db565d6bc6eae63d4c455749c9b86d1133c2e75b6feca1202154c3a8144ffde10f7862801a40e7245dc9c66028bb2515d8465ea369cda549fd62454ee9729
7
+ data.tar.gz: 3ccccba0d7315d2eead3c86f912e66ffa68c3e340f90f173526a647610b9f11214ec5623f4d417b94ac9893b892ff5a911d0efbf5eb0eef6ae60c4151aa0bc8a
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # ctws
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/ctws.png)](https://badge.fury.io/rb/ctws)
4
+
3
5
  Rails gem to be used as Webservice RESTful JSON API with Rails 5.
4
6
 
5
7
  With `MinAppVersion` and `User` resources, with token based authentication [JSON Web Tokens](https://jwt.io/).
data/lib/ctws/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Ctws
2
- VERSION = '0.1.5.alpha'
2
+ VERSION = '0.1.6.alpha'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ctws
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5.alpha
4
+ version: 0.1.6.alpha
5
5
  platform: ruby
6
6
  authors:
7
7
  - Agustí B.R.
@@ -164,8 +164,6 @@ files:
164
164
  - app/auth/ctws/authorize_api_request.rb
165
165
  - app/controllers/concerns/ctws/exception_handler.rb
166
166
  - app/controllers/concerns/ctws/response.rb
167
- - app/controllers/concerns/ctws/v1/exception_handler.rb
168
- - app/controllers/concerns/ctws/v1/response.rb
169
167
  - app/controllers/ctws/application_controller.rb
170
168
  - app/controllers/ctws/authentication_controller.rb
171
169
  - app/controllers/ctws/ctws_controller.rb
@@ -1,6 +0,0 @@
1
- module Ctws
2
- module V1
3
- class ExceptionHandler < Ctws::ExceptionHandler
4
- end
5
- end
6
- end
@@ -1,6 +0,0 @@
1
- module Ctws
2
- module V1
3
- module Response < Ctws::Response
4
- end
5
- end
6
- end