rest_rails 1.1.5 → 1.1.6

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
  SHA256:
3
- metadata.gz: 37bef45a003d48ac892e1108b2c60943013d79deb1cac771f5f3be33969aa37f
4
- data.tar.gz: 3aa3996113d78bc65fdc167b44ec5b1287b3626a7a3eafc9c9c3707fc6d57c9f
3
+ metadata.gz: f34a3f063c923fe7ed51083edea1a342f91ba07db8ac6d5051bd4a4bc5668107
4
+ data.tar.gz: 62a9a39f8dcf5df212e4f47c91f5ddb7c8dbe9cc5268c3b60206aa49ec40ae49
5
5
  SHA512:
6
- metadata.gz: a950feac58f26f179c37f370887529491d7ddf8153211d5a17f20ebfca691695ba955bf2621ee2fcca4401e3248437687d40a0c8ea2bccf5e7aa697e917bb870
7
- data.tar.gz: 1132938c2b68cce52130c22cc7ec0370ba46e0def6ae29e08d2886253e1f6464ba8393599d333f945570aa412ff4fbda1253dd1a3b4a5b3c61503fa7d5ac0193
6
+ metadata.gz: 2bba16fa4d46018a0f80e1bff7623590969370c82255c8514ec96ce00f02578d0b3d1a1166d876d04bf3afb2e50763ad09bb354d217dd4175ab996db7f6de6a3
7
+ data.tar.gz: 2d900e87b15c70444004aa41aa48fc968ceb99eff88fa3ccb686c23c2c2013b1135aa950d3d7d0e998191bd908f6cc804ecedb9152e6cb25493d1b0aa32ad1ff
data/config/routes.rb CHANGED
@@ -4,6 +4,7 @@ RestRails::Engine.routes.draw do
4
4
 
5
5
  get '/:table_name/:id' => 'data#show', as: 'data_show'
6
6
  patch '/:table_name/:id' => 'data#update'
7
+ put '/:table_name/:id' => 'data#update'
7
8
  delete '/:table_name/:id' => 'data#destroy', as: 'data_destroy'
8
9
 
9
10
  post '/:table_name/:id/attach/:attachment_name' => 'data#attach'
@@ -1,3 +1,3 @@
1
1
  module RestRails
2
- VERSION = '1.1.5'
2
+ VERSION = '1.1.6'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rest_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.5
4
+ version: 1.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergio Rivas
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-30 00:00:00.000000000 Z
11
+ date: 2020-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails