rest_framework 0.9.15 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/app/views/layouts/rest_framework.html.erb +1 -2
- data/app/views/rest_framework/_head.html.erb +3 -2
- data/app/views/rest_framework/_heading.html.erb +1 -1
- data/app/views/rest_framework/routes_and_forms/_html_form.html.erb +3 -3
- data/app/views/rest_framework/routes_and_forms/_raw_form.html.erb +1 -1
- data/lib/rest_framework/filters/base_filter.rb +1 -1
- data/lib/rest_framework/filters/{model_ordering_filter.rb → ordering_filter.rb} +6 -3
- data/lib/rest_framework/filters/{model_query_filter.rb → query_filter.rb} +10 -7
- data/lib/rest_framework/filters/ransack_filter.rb +1 -1
- data/lib/rest_framework/filters/{model_search_filter.rb → search_filter.rb} +6 -4
- data/lib/rest_framework/filters.rb +3 -3
- data/lib/rest_framework/mixins/base_controller_mixin.rb +42 -62
- data/lib/rest_framework/mixins/bulk_model_controller_mixin.rb +1 -1
- data/lib/rest_framework/mixins/model_controller_mixin.rb +117 -90
- data/lib/rest_framework/serializers/native_serializer.rb +16 -5
- data/lib/rest_framework/utils.rb +38 -18
- data/lib/rest_framework.rb +16 -16
- data/vendor/assets/javascripts/rest_framework/external.min.js +618 -575
- data/vendor/assets/stylesheets/rest_framework/external.min.css +12 -19
- metadata +8 -8
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rest_framework
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gregory N. Schmit
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -58,10 +58,10 @@ files:
|
|
58
58
|
- lib/rest_framework/errors/unknown_model_error.rb
|
59
59
|
- lib/rest_framework/filters.rb
|
60
60
|
- lib/rest_framework/filters/base_filter.rb
|
61
|
-
- lib/rest_framework/filters/
|
62
|
-
- lib/rest_framework/filters/
|
63
|
-
- lib/rest_framework/filters/model_search_filter.rb
|
61
|
+
- lib/rest_framework/filters/ordering_filter.rb
|
62
|
+
- lib/rest_framework/filters/query_filter.rb
|
64
63
|
- lib/rest_framework/filters/ransack_filter.rb
|
64
|
+
- lib/rest_framework/filters/search_filter.rb
|
65
65
|
- lib/rest_framework/generators.rb
|
66
66
|
- lib/rest_framework/generators/controller_generator.rb
|
67
67
|
- lib/rest_framework/mixins.rb
|
@@ -88,7 +88,7 @@ licenses:
|
|
88
88
|
metadata:
|
89
89
|
homepage_uri: https://rails-rest-framework.com
|
90
90
|
source_code_uri: https://github.com/gregschmit/rails-rest-framework
|
91
|
-
post_install_message:
|
91
|
+
post_install_message:
|
92
92
|
rdoc_options: []
|
93
93
|
require_paths:
|
94
94
|
- lib
|
@@ -104,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
104
|
version: '0'
|
105
105
|
requirements: []
|
106
106
|
rubygems_version: 3.4.10
|
107
|
-
signing_key:
|
107
|
+
signing_key:
|
108
108
|
specification_version: 4
|
109
109
|
summary: A framework for DRY RESTful APIs in Ruby on Rails.
|
110
110
|
test_files: []
|