schema_based_api 2.1.17 → 2.1.19

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: df4ff1283f15f443043bf344a44b33e5604e270fa839a90ad5bd33539745e706
4
- data.tar.gz: 64287210b74b507c711d9910cd9945ffaee340bca368223f2433e1835907f466
3
+ metadata.gz: 443fa61e860c02f25ab46b46c4fb64501ac5803ceeae7f91f9b54cbca6ed1f20
4
+ data.tar.gz: 9037027fbab63c106389c05a684ecac299911ff453e949e96c2690057d5ee6e2
5
5
  SHA512:
6
- metadata.gz: 6ecc49928f52313500e8d8ffc7812d2aaab408e7ce2b815d00a1b1ee11dcdb9608cfaaad7844b65191c994d8424216b35c338359c66118c9428655f298769e08
7
- data.tar.gz: 68f548b78ff0ca0347c833d38691d770964cd85333d9c7e521278cea4fab8a544e202a44153c155bf1a5c90948a71ced4d3119e46784cb9a69bb2c8ee0a2ab67
6
+ metadata.gz: ad0ab1afa00e88936c4d4550c8c177181911a8f4bfc7dbee239ad94efbae3fc415f7fb29bece5497354d86f1fa3480e3e0f3e5ed5cd0a4b0919565ce5749df98
7
+ data.tar.gz: 20d11e423d1bba773013b31b0a3f12a442a79e28a20e619b1d3f3c94b23b86cb8e47f38ea7ac57781e19fad3abd99ead2612827616d43a20a47489c9dd26cf29
data/README.md CHANGED
@@ -16,9 +16,8 @@ So it all began again, making a better thecore_api gem into this schema_based_ap
16
16
 
17
17
  * [JWT](https://github.com/jwt/ruby-jwt) for authentication.
18
18
  * [CanCanCan](https://github.com/CanCanCommunity/cancancan) for authorization.
19
- * [Active Hash Relation](https://github.com/kollegorna/active_hash_relation) for DSL.
20
19
  * [Ransack](https://github.com/activerecord-hackery/ransack) query engine for complex searches going beyond CRUD's listing scope.
21
- * Catch all routing rule to add basic crud operations to any AR model in the app.
20
+ * Catch all routing rule to automatically add basic crud operations to any AR model in the app.
22
21
 
23
22
  ## Usage
24
23
  How to use my plugin.
@@ -1,3 +1,3 @@
1
1
  module SchemaBasedApi
2
- VERSION = '2.1.17'
2
+ VERSION = '2.1.19'
3
3
  end
metadata CHANGED
@@ -1,35 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: schema_based_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.17
4
+ version: 2.1.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-20 00:00:00.000000000 Z
11
+ date: 2020-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: rails
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: 6.0.2
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: 6.0.2.1
23
- type: :runtime
24
- prerelease: false
25
- version_requirements: !ruby/object:Gem::Requirement
26
- requirements:
27
- - - "~>"
28
- - !ruby/object:Gem::Version
29
- version: 6.0.2
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- version: 6.0.2.1
33
13
  - !ruby/object:Gem::Dependency
34
14
  name: thecore_auth_commons
35
15
  requirement: !ruby/object:Gem::Requirement
@@ -142,20 +122,6 @@ dependencies:
142
122
  - - "~>"
143
123
  - !ruby/object:Gem::Version
144
124
  version: '1.2'
145
- - !ruby/object:Gem::Dependency
146
- name: sqlite3
147
- requirement: !ruby/object:Gem::Requirement
148
- requirements:
149
- - - ">="
150
- - !ruby/object:Gem::Version
151
- version: '0'
152
- type: :development
153
- prerelease: false
154
- version_requirements: !ruby/object:Gem::Requirement
155
- requirements:
156
- - - ">="
157
- - !ruby/object:Gem::Version
158
- version: '0'
159
125
  description: Ruby on Rails REST APIs built by convention using the DB schema as the
160
126
  foundation.
161
127
  email:
@@ -206,7 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
206
172
  - !ruby/object:Gem::Version
207
173
  version: '0'
208
174
  requirements: []
209
- rubygems_version: 3.0.6
175
+ rubygems_version: 3.0.3
210
176
  signing_key:
211
177
  specification_version: 4
212
178
  summary: Convention based RoR engine which uses DB schema introspection to create