apicasso 0.6.7 → 0.6.8

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
  SHA256:
3
- metadata.gz: 13242e2ac1896a4ae9d05c041ee23b8bc954aaf90732b7ca20d1896841f9f7bb
4
- data.tar.gz: 24b133086210106ae44cbc466005b3751824917af2539a66abc849c2e885cf9b
3
+ metadata.gz: 69d43286be1cde7eba9d8d8b6ad752ecc49ae4b188c3e339034525040e3e0283
4
+ data.tar.gz: 77f165c01cb5430cc350a401961e5def82881ef4ef639638dccda7615a7fc197
5
5
  SHA512:
6
- metadata.gz: 3cbf859e001818cfad717b2e1331d946a52f8bcbcebd710a1edf04f2a00ef3defbd9d01977e8ae096dd7ed95829005920bd8481c56f6ee3115d059caa01f3fcc
7
- data.tar.gz: a603985b883293f34cbfff86960b7101ac29b3bb686d34e2e851125ef58c83accbec278a2b51dcf19126616a354828b5e356e21a1848ab1dda016ab5ad9b98cd
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! unless Rails.configuration.cache_classes
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 = [
@@ -3,5 +3,5 @@
3
3
  # A Module to rule them all...
4
4
  module Apicasso
5
5
  # Current gem version
6
- VERSION = '0.6.7'.freeze
6
+ VERSION = '0.6.8'.freeze
7
7
  end
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.7
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: 2018-12-21 00:00:00.000000000 Z
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: 'JSON API development can get boring and time consuming. If you think
224
- it through, every time you make one you use almost the same route structure pointing
225
- the same controller actions, with the same features: ordering, filtering and pagination.
226
- APIcasso is intended to be used as a full-fledged CRUD JSON API or as a base controller.
227
- It makes development and easier job by abstracting route-based resource operations
228
- into API key scoping. This makes it possible to make CRUD-only applications just
229
- by creating functional Rails'' models. The magic is done by a `.scope` JSON object
230
- which exists in every API key. It uses permission scopes as keys to restrict and
231
- extend APIcasso access to your application''s resources.'
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: []