apicasso 0.6.7 → 0.6.8
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 +4 -4
- data/app/controllers/apicasso/apidocs_controller.rb +1 -1
- data/lib/apicasso/version.rb +1 -1
- metadata +15 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 69d43286be1cde7eba9d8d8b6ad752ecc49ae4b188c3e339034525040e3e0283
|
|
4
|
+
data.tar.gz: 77f165c01cb5430cc350a401961e5def82881ef4ef639638dccda7615a7fc197
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83836eb307050848264fe3a61969a73168f856c43be6cc04f177734d8bfc8247f8edf935f5c13f3df1210e43fbca8d97c8632ad6bff0f09c9bc33ed320df8f9f
|
|
7
|
+
data.tar.gz: 0b8bbaa3886b2bf2250bdc6aaa290b0607d69464f4ab8628ace3df3cacaa96acc0083aaa5443a0a3aef815dda87cd6582ad856f5f751ce5564da498d26be3658
|
|
@@ -58,7 +58,7 @@ module Apicasso
|
|
|
58
58
|
end
|
|
59
59
|
|
|
60
60
|
# Eager load application to be able to list all models
|
|
61
|
-
Rails.application.eager_load!
|
|
61
|
+
Rails.application.eager_load!
|
|
62
62
|
# A list of all classes that have swagger_* declarations, which gets
|
|
63
63
|
# injected by this gem in all `ActiveRecord::Base` classes
|
|
64
64
|
SWAGGERED_CLASSES = [
|
data/lib/apicasso/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: apicasso
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fernando Bellincanta
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-01-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -220,15 +220,19 @@ dependencies:
|
|
|
220
220
|
- - "~>"
|
|
221
221
|
- !ruby/object:Gem::Version
|
|
222
222
|
version: 3.1.0
|
|
223
|
-
description:
|
|
224
|
-
|
|
225
|
-
the
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
223
|
+
description: Create APIs in a fast and dynamic way, without the need to develop everything
|
|
224
|
+
from scratch. You just need to create your models and let APIcasso do the rest for
|
|
225
|
+
you. It is the perfect candidate to make your project development go faster or for
|
|
226
|
+
legacy Rails projects that do not have an API. If you think it through, JSON API
|
|
227
|
+
development can get boring and time consuming. Every time you use almost the same
|
|
228
|
+
route structure, pointing to the same controller actions, with the same ordering,
|
|
229
|
+
filtering and pagination features. APIcasso is intended to be used to speed-up development,
|
|
230
|
+
acting as a full-fledged CRUD JSON API into all your models. It is a route-based
|
|
231
|
+
abstraction that lets you create, read, list, update or delete any ActiveRecord
|
|
232
|
+
object in your application. This makes it possible to make CRUD-only applications
|
|
233
|
+
just by creating functional Rails' models. Access to your application's resources
|
|
234
|
+
is managed by a .scope JSON object per API key. It uses that permission scope to
|
|
235
|
+
restrict and extend access.
|
|
232
236
|
email:
|
|
233
237
|
- ervalhous@hotmail.com
|
|
234
238
|
executables: []
|